[ 
https://issues.apache.org/jira/browse/NIFI-274?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14977428#comment-14977428
 ] 

Tony Kurc commented on NIFI-274:
--------------------------------

[~bende] - it looks like these are used for both PutSyslog and ListenSyslog - 
can these be reworded to use a directionless verb (i.e. not "receiving")?

{code:java}
    public static final PropertyDescriptor PROTOCOL = new PropertyDescriptor
            .Builder().name("Protocol")
            .description("The protocol for receiving Syslog messages, either 
TCP or UDP.")
            .required(true)
            .allowableValues(TCP_VALUE, UDP_VALUE)
            .defaultValue(UDP_VALUE.getValue())
            .build();
    public static final PropertyDescriptor PORT = new PropertyDescriptor
            .Builder().name("Port")
            .description("The port to listen on for receiving Syslog messages.")
            .required(true)
            .addValidator(StandardValidators.PORT_VALIDATOR)
            .build();
{code}

> Syslog processors
> -----------------
>
>                 Key: NIFI-274
>                 URL: https://issues.apache.org/jira/browse/NIFI-274
>             Project: Apache NiFi
>          Issue Type: New Feature
>          Components: Extensions
>    Affects Versions: 0.1.0
>         Environment: any
>            Reporter: Corey Flowers
>            Assignee: Tony Kurc
>            Priority: Minor
>              Labels: features, syslog
>             Fix For: 0.4.0
>
>         Attachments: NIFI-274-2.patch, NIFI-274-3.patch, NIFI-274-4.patch, 
> NIFI-274.patch, SyslogProcessorTesting.xml
>
>
> request to add syslog processors for direct interaction with syslog to 
> include pulls and pushes of log info.  



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to