diff --git a/Content/Guides/syslog-ng-guide-admin/json-parser-options.htm b/Content/Guides/syslog-ng-guide-admin/json-parser-options.htm index bb515a3b4..461df19ad 100644 --- a/Content/Guides/syslog-ng-guide-admin/json-parser-options.htm +++ b/Content/Guides/syslog-ng-guide-admin/json-parser-options.htm @@ -47,6 +47,30 @@
Example: Convert logstash eventlog format v0 to v1
}; +
+
key-delimiter()
+ + + + + + + + + + + + + + + +
Type:character
Default:.
+

Description: The key-delimiter() option defines the used character when parsing flattened keys. Only single characters are supported.

+

Using the json-parser() without the key-delimiter() option results in the dot(.) character being used:

+

foo.key="value"

+

Using the json-parser() with the key-delimiter("~") option results in the defined character being used:

+

foo~key="value"

+
marker