Skip to content

Commit

Permalink
fix: docs of the eventIdMetadataKey config field
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Chodur <[email protected]>
  • Loading branch information
FUSAKLA committed Aug 31, 2021
1 parent dfc9acb commit f0d6b2a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/modules/envoy_access_log_server.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,6 @@ Please note that some of the keys may not be present |
address: ":18090"
# gracefulShutdownTimeout for the GRPC server. Please note also the existence of 'maximumGracefulShutdownDuration' global config option which is effectively an upper boundary of here-specified timeout value.
gracefulShutdownTimeout: "5s"
# eventIdMetadataKey it's value will be used as a unique id for the generated event if present.
# eventIdMetadataKey its value will be used as a unique id for the generated event if present (hint: use a trace ID if possible).
eventIdMetadataKey: <string>
```
2 changes: 1 addition & 1 deletion docs/modules/kafka_ingester.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ retentionTime: <duration>
# fallbackStartOffset determines from whence the consumer group should begin consuming when it finds a partition without a committed offset.
# Default: FirstOffset
fallbackStartOffset: <LastOffset|FirstOffset>
# eventIdMetadataKey it's value will be used as a unique id for the generated event if present.
# eventIdMetadataKey its value will be used as a unique id for the generated event if present (hint: use a trace ID if possible).
eventIdMetadataKey: <string>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/tailer.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ positionPersistenceInterval: "2s"
loglineParseRegexp: '^(?P<ip>[A-Fa-f0-9.:]{4,50}) \S+ \S+ \[(?P<time>.*?)\] "(?P<request>.*?)" (?P<statusCode>\d+) \d+ "(?P<referer>.*?)" uag="(?P<userAgent>[^"]+)" "[^"]+" ua="[^"]+" rt="(?P<requestDuration>\d+(\.\d+)??)".+ignore-slo="(?P<ignoreSloHeader>[^"]*)" slo-domain="(?P<sloDomain>[^"]*)" slo-app="(?P<sloApp>[^"]*)" slo-class="(?P<sloClass>[^"]*)" slo-endpoint="(?P<sloEndpoint>[^"]*)" slo-result="(?P<sloResult>[^"]*)"' # emptyGroupRE defines RE used to decide whether some of the RE match groups specified in loglineParseRegexp is empty and this its assigned variable should be kept unitialized
# Value, that will be treated as empty value.
emptyGroupRE: '^-$'
# eventIdMetadataKey it's value will be used as a unique id for the generated event if present.
# eventIdMetadataKey its value will be used as a unique id for the generated event if present (hint: use a trace ID if possible).
eventIdMetadataKey: <string>
```

0 comments on commit f0d6b2a

Please sign in to comment.