...
Panel | ||
---|---|---|
| ||
systemctl enable node_exporter systemctl start node_exporter |
SCS node exporter configuration
Starting Swarm 15.3 SCS requires the node_exporter service to monitor partition capacity information which is exposed at the end of the Swarm Node View dashboard.
Use the same systemd script provided by the gateway , but here you must use the default listen port of 9100, SCS 1.5.1 has been modified to add a firewall rule for port 9100 on the swarm storage network,
Make sure to put the node_exporter golang binary in the /usr/local/bin directory.
enable and configure the service
...
bgColor | #DEEBFF |
---|
systemctl enable node_exporter
...
You will have to add a job definition for it in the prometheus master configuration file,
example:
Code Block |
---|
- job_name: 'gateway-node-exporter'
scrape_interval: 30s
static_configs:
- targets: ['10.10.10.20:9095']
relabel_configs:
- source_labels: [__address__]
regex: "([^:]+):\\d+"
target_label: instance |
SCS node exporter configuration
Starting Swarm 15.3 SCS requires the node_exporter service to monitor partition capacity information which is exposed at the end of the Swarm Node View dashboard.
Use the same systemd script provided by the gateway , but here you must use the default listen port of 9100, SCS 1.5.1 has been modified to add a firewall rule for port 9100 on the swarm storage network,
Make sure to put the node_exporter golang binary in the /usr/local/bin directory.
enable and configure the service
Panel | ||
---|---|---|
| ||
systemctl enable node_exporter systemctl start node_exporter |
You will have to add a job definition for it in the prometheus master configuration file,
example:
Code Block |
---|
- job_name: 'scs-node-exporter'
scrape_interval: 30s
static_configs:
- targets: ['10.10.10.2:9100']
relabel_configs:
- source_labels: [__address__]
regex: "([^:]+):\\d+"
target_label: instance |
Elasticsearch exporter configuration
...