Go to file
Octavian Cerna 9e10465744 Add a new metric smartctl_device_status for the SMART health status. 2020-07-26 22:31:04 +03:00
.circleci store_artifacts 2019-08-16 13:53:03 +03:00
gentoo/app-metrics/smartctl_exporter gentoo ebuild keywords 2019-08-17 19:35:23 +03:00
systemd systemd service 2019-08-15 00:04:32 +03:00
.gitignore gentoo ebuild keywords 2019-08-17 19:35:23 +03:00
EXAMPLE.md right example 2019-08-17 13:26:31 +03:00
LICENSE Initial commit 2019-08-14 23:28:21 +03:00
Makefile Adjust the Makefile for the conversion to a Go module. 2020-07-26 21:10:56 +03:00
README.md Update README.md 2019-08-26 11:27:28 +03:00
gjsonext.go First commit 2019-08-14 23:34:49 +03:00
go.mod Convert to Go module. 2020-07-26 21:08:03 +03:00
go.sum Convert to Go module. 2020-07-26 21:08:03 +03:00
logging.go First commit 2019-08-14 23:34:49 +03:00
main.go option for set minimum time period between run smartctl; smartctl info metric 2019-08-16 00:01:16 +03:00
metrics.go Add a new metric smartctl_device_status for the SMART health status. 2020-07-26 22:31:04 +03:00
options.go option for set minimum time period between run smartctl; smartctl info metric 2019-08-16 00:01:16 +03:00
readjson.go option for set minimum time period between run smartctl; smartctl info metric 2019-08-16 00:01:16 +03:00
smartctl.go Add a new metric smartctl_device_status for the SMART health status. 2020-07-26 22:31:04 +03:00
smartctl_exporter.yaml option for set minimum time period between run smartctl; smartctl info metric 2019-08-16 00:01:16 +03:00
smartctlinfo.go option for set minimum time period between run smartctl; smartctl info metric 2019-08-16 00:01:16 +03:00

README.md

CircleCI

smartctl_exporter

Export smartctl statistics to prometheus

Example output you can show in EXAMPLE.md

Need more?

If you need additional metrics - contact me :) Create a feature request, describe the metric that you would like to have and attach exported from smartctl json file

Requirements

smartmontools >= 7.0, because export to json released in 7.0

Configuration

Command line options

  • --config=/path/to/file.yaml: Path to configuration file, defaulr /etc/smartctl_exporter.yaml
  • --verbose: verbosed log, default no
  • --debug: Debug logging, default no
  • --version: Show version and exit

Configuration file

Example content:

smartctl_exporter:
  bind_to: "[::1]:9633"
  url_path: "/metrics"
  fake_json: no
  smartctl_location: /usr/sbin/smartctl
  collect_not_more_than_period: 120s
  devices:
  - /dev/sda
  - /dev/sdb
  - /dev/sdc
  - /dev/sdd
  - /dev/sde
  - /dev/sdf

fake_json used for debugging.