mirror of
https://github.com/prometheus-community/smartctl_exporter.git
synced 2024-11-16 01:33:07 +01:00
Collecting fake json script
This commit is contained in:
parent
7fa7a15525
commit
09cfdec25a
2 changed files with 7 additions and 1 deletions
6
collect_fake_json.sh
Executable file
6
collect_fake_json.sh
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
for device in $(smartctl --scan | awk '{ print $1}')
|
||||||
|
do
|
||||||
|
smartctl --json --xall $device | jq > $(basename $device).json
|
||||||
|
done
|
|
@ -1,7 +1,7 @@
|
||||||
smartctl_exporter:
|
smartctl_exporter:
|
||||||
bind_to: "[::1]:9633"
|
bind_to: "[::1]:9633"
|
||||||
url_path: "/metrics"
|
url_path: "/metrics"
|
||||||
fake_json: no
|
fake_json: yes
|
||||||
smartctl_location: /usr/sbin/smartctl
|
smartctl_location: /usr/sbin/smartctl
|
||||||
collect_not_more_than_period: 20s
|
collect_not_more_than_period: 20s
|
||||||
devices:
|
devices:
|
||||||
|
|
Loading…
Reference in a new issue