ricoberger / script_exporter

Prometheus exporter to execute scripts and collect metrics from the output or the exit status.
MIT License
354 stars 82 forks source link

:warning: Parse Output when Script Fails #76

Closed ricoberger closed 1 year ago

ricoberger commented 1 year ago

Until now, we just ignored the output of the script when the script failed. Now we are also parsing the output when the script failed. To get the old bahaviour the "ignoreOutputOnFail" property in the script settings can be set to "true".

Closes #67 Closes #63