Skip to content

Releases: ricoberger/script_exporter

Version 2.8.0 / 2022-12-20

20 Dec 15:25
9791ccf
Compare
Choose a tag to compare
  • Improve Logging (#65 by @fgouteroux): The logging behavior can now be configured via the -log.format and -log.level command-line flags. Possible values for the log format are logfmt and json. Possible values for the log level are debug, info, warn or error.
  • Add Environment Variables (#65 by @fgouteroux): All environment variables are now added automatically to all scripts. Custom environment variables for a script can be defined via the new env property in the configuration file for each script.
  • Update dependencies (#66)

Version 2.7.0 / 2022-11-24

24 Nov 09:09
Compare
Choose a tag to compare
  • Update Dependencies (#60)
  • Add Helm Chart (#61)

Version 2.6.0 / 2022-09-08

08 Sep 05:56
292c5e0
Compare
Choose a tag to compare
  • Add command and args option for script configuration by @Nick-Triller (#56)
  • Update Dependencies (#58)

Version 2.5.2 / 2022-04-30

30 Apr 11:49
c4cc5d8
Compare
Choose a tag to compare
  • Update Go version and base image for Docker (#50)

Version 2.5.1 / 2021-12-12

12 Dec 20:46
Compare
Choose a tag to compare
  • Add bash to Docker image (#46)

Version 2.5.0 / 2021-11-23

23 Nov 17:50
Compare
Choose a tag to compare

Version 2.4.0 / 2021-09-15

15 Sep 14:25
5eb48ef
Compare
Choose a tag to compare
  • Allow to use the script_exporter as Windows service by @skpenpen (#32)
  • Add preview builds for PRs (#35)
  • Add new script_exporter_exit_code, which contains the exit code of a script (#36)

Version 2.3.1 / 2021-09-07

07 Sep 05:34
304d8e6
Compare
Choose a tag to compare

Version 2.3.0 / 2021-08-11

11 Aug 04:43
Compare
Choose a tag to compare

Version 2.2.0 / 2020-05-08

08 May 06:02
b698e33
Compare
Choose a tag to compare

The provided script name is now available via script label for the script_success and script_duration_seconds metric:

# HELP script_success Script exit status (0 = error, 1 = success).
# TYPE script_success gauge
script_success{script="test"} 1
# HELP script_duration_seconds Script execution time, in seconds.
# TYPE script_duration_seconds gauge
script_duration_seconds{script="test"} 0.003628

Therefor the script name must be a valid value for a Prometheus label.