Skip to content
Snippets Groups Projects
Commit f1b8aa65 authored by Guillermo Facundo Colunga's avatar Guillermo Facundo Colunga
Browse files

[MONIT-4106] values/metrics/fluentbit: add default luaScripts value

In commit c6c3db28 we added support for lua scripts provided via user
values.

This commit adds a default value and documents this in the values file.

Reported-at: https://its.cern.ch/jira/browse/MONIT-4106


Signed-off-by: default avatarGuillermo Facundo Colunga <guillermo.facundo.colunga@gmail.com>
Signed-off-by: Guillermo Facundo Colunga's avatarGuillermo Facundo Colunga <guillermo.facundo.colunga@cern.ch>
parent ca3e7bc3
No related branches found
No related tags found
No related merge requests found
...@@ -382,3 +382,14 @@ logs: ...@@ -382,3 +382,14 @@ logs:
extraVolumes: [] extraVolumes: []
## -- extra volumes to mount in the fluentbits, can be used to scrape metrics from pvcs ## -- extra volumes to mount in the fluentbits, can be used to scrape metrics from pvcs
extraVolumeMounts: [] extraVolumeMounts: []
# These scripts are available in the fluentbit /fluent-bit/etc/scripts path.
# Include your lua scripts in the following format:
# luaScripts:
# my_lua_script.lua: |
# function my_function(tag, timestamp, record)
# // Do something...
# return 2, timestamp, record
# end
# my_other_lua_script.lua: ...
luaScripts: {}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment