Arquivos
rocm-systems/projects/rdc/python_binding/rdc_prometheus_example.yml
T
Bill(Shuzhou) Liu 1602a481cf Integrate RDC with Grafana
A new Grafana dashboard file rdc_grafana_dashboard_example.json
has been added to the folder python_binding. User can import
this dashboard to monitor multiple compute nodes.

To display the host name only in the dashboard, the
rdc_prometheus_example.yml is also changed to create a new label
short_instance which will not have the port number.

Change-Id: I9ab91838006d59c8dcb5fea01decb8c799484e1d


[ROCm/rdc commit: aeba7b0f91]
2020-10-15 14:12:15 -04:00

24 linhas
807 B
YAML

# global config
global:
scrape_interval: 10s # Set the scrape interval to every 10 seconds. Default is every 1 minute.
evaluation_interval: 10s # Evaluate rules every 10 seconds. The default is every 1 minute.
# scrape_timeout is set to the global default (10s).
# A scrape configuration where the endpoints to scrape will be defined at prometheus_targets.json:
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
- job_name: 'rdc'
# metrics_path defaults to '/metrics'
# scheme defaults to 'http'.
# Remove the port for display
relabel_configs:
- source_labels: [__address__]
regex: '([^:]+):\d+'
target_label: short_instance
file_sd_configs:
- files:
- 'prometheus_targets.json'