Skip to content

Commit ee078ee

Browse files
authored
Merge pull request #47711 from libander/RHDEVDOCS-3549-2
RHDEVDOCS-3549-2
2 parents c939fa6 + d69508b commit ee078ee

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

modules/cluster-logging-collector-log-forward-fluentd.adoc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,18 @@ spec:
8181
----
8282
$ oc create -f <file-name>.yaml
8383
----
84+
85+
[id="cluster-logging-collector-log-forward-nano-precision"]
86+
== Enabling nanosecond precision for Logstash to ingest data from fluentd
87+
For Logstash to ingest log data from fluentd, you must enable nanosecond precision in the Logstash configuration file.
88+
89+
.Procedure
90+
* In the Logstash configuration file, set `nanosecond_precision` to `true`.
91+
92+
.Example Logstash configuration file
93+
[source,terminal]
94+
....
95+
input { tcp { codec => fluent { nanosecond_precision => true } port => 24114 } }
96+
filter { }
97+
output { stdout { codec => rubydebug } }
98+
....

0 commit comments

Comments
 (0)