lordgamez commented on code in PR #1370:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1370#discussion_r948126207
##########
PROCESSORS.md:
##########
@@ -1303,11 +1305,26 @@ Listens for incoming TCP connections and reads data
from each connection using a
In the list below, the names of required properties appear in bold. Any other
properties (not in bold) are considered optional. The table also indicates any
default values, and whether a property supports the NiFi Expression Language.
-| Name | Default Value | Allowable Values |
Description
|
-|-------------------------------|---------------|------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| **Listening Port** | | | The port
to listen on for communication.
|
-| **Max Batch Size** | 500 | | The
maximum number of messages to process at a time.
|
-| **Max Size of Message Queue** | 10000 | | Maximum
number of messages allowed to be buffered before processing them when the
processor is triggered. If the buffer is full, the message is ignored. If set
to zero the buffer is unlimited. |
+| Name | Default Value | Allowable Values |
Description
|
+|-------------------------------|---------------|----------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| **Listening Port** | | |
The port to listen on for communication.
|
+| **Max Batch Size** | 500 | |
The maximum number of messages to process at a time.
|
+| **Max Size of Message Queue** | 10000 | |
Maximum number of messages allowed to be buffered before processing them when
the processor is triggered. If the buffer is full, the message is ignored. If
set to zero the buffer is unlimited. |
+| SSL Context Service | | |
The Controller Service to use in order to obtain an SSL Context. If this
property is set, messages will be received over a secure connection.
|
+| Client Auth | NONE | NONE<br/>WANT<br/>REQUIRED |
The client authentication policy to use for the SSL Context. Only used if an
SSL Context Service is provided.
|
+
+### Relationships
+
+| Name | Description
|
+|---------|--------------------------------------------------------------------|
+| success | Messages received successfully will be sent out this relationship.
|
+
+### Output Attributes
+
+| Attribute | Description
| Requirements |
+|--------------------------|--------------------------------------------------------------------|------------------------|
+| _tcp.port_ | The sending host of the messages.
| - |
+| _tcp.sender_ | The sending port the messages were received.
| - |
Review Comment:
Good catch, updated in f3fb107052af05c62635ba3d4a9c1906c714d6fe
##########
PROCESSORS.md:
##########
@@ -1254,13 +1254,15 @@ With parsing disabled all message will be routed to the
success relationship, bu
In the list below, the names of required properties appear in bold. Any other
properties (not in bold) are considered optional. The table also indicates any
default values, and whether a property supports the NiFi Expression Language.
-| Name | Default Value | Allowable Values | Description
|
-|---------------------------|---------------|------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| Listening Port | 514 | | The port for
Syslog communication. (Well-known ports (0-1023) require root access)
|
-| Protocol | UDP | UDP<br>TCP<br> | The protocol
for Syslog communication.
|
-| Parse Messages | false | false<br>true | Indicates if
the processor should parse the Syslog messages. If set to false, each outgoing
FlowFile will only contain the sender, protocol, and port, and no additional
attributes. |
-| Max Batch Size | 500 | | The maximum
number of Syslog events to process at a time.
|
-| Max Size of Message Queue | 10000 | | Maximum
number of Syslog messages allowed to be buffered before processing them when
the processor is triggered. If the buffer is full, the message is ignored. If
set to zero the buffer is unlimited. |
+| Name | Default Value | Allowable Values |
Description
|
+|---------------------------|---------------|----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Listening Port | 514 | | The
port for Syslog communication. (Well-known ports (0-1023) require root access)
|
+| Protocol | UDP | UDP<br>TCP<br> | The
protocol for Syslog communication.
|
+| Parse Messages | false | false<br>true |
Indicates if the processor should parse the Syslog messages. If set to false,
each outgoing FlowFile will only contain the sender, protocol, and port, and no
additional attributes. |
+| Max Batch Size | 500 | | The
maximum number of Syslog events to process at a time.
|
+| Max Size of Message Queue | 10000 | |
Maximum number of Syslog messages allowed to be buffered before processing them
when the processor is triggered. If the buffer is full, the message is ignored.
If set to zero the buffer is unlimited. |
+| SSL Context Service | | | The
Controller Service to use in order to obtain an SSL Context. If this property
is set, messages will be received over a secure connection.
|
Review Comment:
Added in f3fb107052af05c62635ba3d4a9c1906c714d6fe
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]