You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@streams.apache.org by steveblackmon <gi...@git.apache.org> on 2015/02/13 16:40:13 UTC

[GitHub] incubator-streams pull request: Streams 283

GitHub user steveblackmon opened a pull request:

    https://github.com/apache/incubator-streams/pull/183

    Streams 283

    

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/steveblackmon/incubator-streams STREAMS-283

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/incubator-streams/pull/183.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #183
    
----
commit b65e198dba3a97535b91afe1c9898af23426911b
Author: sblackmon <sb...@w2odigital.com>
Date:   2015-02-12T00:07:03Z

    create BroadcastMessagePersister when BroadcastURI is provided.

commit 5667a7e6a59038060d38c37a15d4c8a30eb11fab
Author: sblackmon <sb...@apache.org>
Date:   2015-02-12T20:47:13Z

    added working UDP log stash persister

commit db6400b517f80acf4b904d824b619e05f0d5fae3
Author: sblackmon <sb...@apache.org>
Date:   2015-02-13T15:37:41Z

    added test for UdpMessagePersister

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-streams pull request: Streams 283

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/incubator-streams/pull/183


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-streams pull request: Streams 283

Posted by robdouglas <gi...@git.apache.org>.
Github user robdouglas commented on a diff in the pull request:

    https://github.com/apache/incubator-streams/pull/183#discussion_r24832457
  
    --- Diff: streams-monitoring/src/main/java/org/apache/streams/monitoring/persist/impl/LogstashUdpMessagePersister.java ---
    @@ -0,0 +1,104 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one
    + * or more contributor license agreements.  See the NOTICE file
    + * distributed with this work for additional information
    + * regarding copyright ownership.  The ASF licenses this file
    + * to you under the Apache License, Version 2.0 (the
    + * "License"); you may not use this file except in compliance
    + *
    + *   http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing,
    + * software distributed under the License is distributed on an
    + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    + * KIND, either express or implied.  See the License for the
    + * specific language governing permissions and limitations
    + * under the License.
    + */
    +package org.apache.streams.monitoring.persist.impl;
    +
    +import org.apache.streams.monitoring.persist.MessagePersister;
    +import org.slf4j.Logger;
    +import org.slf4j.LoggerFactory;
    +
    +import java.net.DatagramPacket;
    +import java.net.DatagramSocket;
    +import java.net.InetAddress;
    +import java.net.InetSocketAddress;
    +import java.net.SocketAddress;
    +import java.net.SocketException;
    +import java.net.URI;
    +import java.net.URISyntaxException;
    +import java.nio.ByteBuffer;
    +import java.util.List;
    +import java.util.concurrent.Executors;
    +
    +public class LogstashUdpMessagePersister implements MessagePersister {
    +
    +    private final static Logger LOGGER = LoggerFactory.getLogger(LogstashUdpMessagePersister.class);
    +    private String broadcastURI;
    +    URI uri;
    +
    +    public LogstashUdpMessagePersister(String broadcastURI) {
    +        this.broadcastURI = broadcastURI;
    +        setup();
    +    }
    +
    +    public void setup() {
    +
    +        try {
    +            uri = new URI(broadcastURI);
    +        } catch (URISyntaxException e) {
    +            e.printStackTrace();
    --- End diff --
    
    Can we log this entire exception, instead of printing the stack trace?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-streams pull request: Streams 283

Posted by steveblackmon <gi...@git.apache.org>.
Github user steveblackmon commented on a diff in the pull request:

    https://github.com/apache/incubator-streams/pull/183#discussion_r24839715
  
    --- Diff: streams-monitoring/src/main/java/org/apache/streams/monitoring/persist/impl/LogstashUdpMessagePersister.java ---
    @@ -0,0 +1,104 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one
    + * or more contributor license agreements.  See the NOTICE file
    + * distributed with this work for additional information
    + * regarding copyright ownership.  The ASF licenses this file
    + * to you under the Apache License, Version 2.0 (the
    + * "License"); you may not use this file except in compliance
    + *
    + *   http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing,
    + * software distributed under the License is distributed on an
    + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    + * KIND, either express or implied.  See the License for the
    + * specific language governing permissions and limitations
    + * under the License.
    + */
    +package org.apache.streams.monitoring.persist.impl;
    +
    +import org.apache.streams.monitoring.persist.MessagePersister;
    +import org.slf4j.Logger;
    +import org.slf4j.LoggerFactory;
    +
    +import java.net.DatagramPacket;
    +import java.net.DatagramSocket;
    +import java.net.InetAddress;
    +import java.net.InetSocketAddress;
    +import java.net.SocketAddress;
    +import java.net.SocketException;
    +import java.net.URI;
    +import java.net.URISyntaxException;
    +import java.nio.ByteBuffer;
    +import java.util.List;
    +import java.util.concurrent.Executors;
    +
    +public class LogstashUdpMessagePersister implements MessagePersister {
    +
    +    private final static Logger LOGGER = LoggerFactory.getLogger(LogstashUdpMessagePersister.class);
    +    private String broadcastURI;
    +    URI uri;
    +
    +    public LogstashUdpMessagePersister(String broadcastURI) {
    +        this.broadcastURI = broadcastURI;
    +        setup();
    +    }
    +
    +    public void setup() {
    +
    +        try {
    +            uri = new URI(broadcastURI);
    +        } catch (URISyntaxException e) {
    +            e.printStackTrace();
    --- End diff --
    
    good catch, fixed


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---