Skip to content

Commit

Permalink
Fix a mistake in prometheus.yaml (#1415)
Browse files Browse the repository at this point in the history
* Fix a mistake in prometheus.yaml

Normally there should be multiple node-exporter and one nebula-stats-exporter.

* Update 2.deploy-dashboard.md

forgot to change the comma when moving the host
  • Loading branch information
xiajingchun authored Feb 16, 2022
1 parent 9ad0665 commit 4ff37ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs-2.0/nebula-dashboard/2.deploy-dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,13 @@ $ nohup ./node-exporter --web.listen-address=":9100" &
- job_name: 'nebula-exporter'
static_configs:
- targets: [
'192.168.xx.100:9200', # nebula-stats-exporter 服务的 IP 地址和端口。
'192.168.xx.101:9200'
'192.168.xx.100:9200' # nebula-stats-exporter 服务的 IP 地址和端口。
]
- job_name: 'node-exporter'
static_configs:
- targets: [
'192.168.xx.101:9100' # node-exporter 服务的 IP 地址和端口。
'192.168.xx.100:9100', # node-exporter 服务的 IP 地址和端口。
'192.168.xx.101:9100'
]
```

Expand Down

0 comments on commit 4ff37ec

Please sign in to comment.