Created
March 10, 2020 12:28
-
-
Save MalloZup/a9919702d8a35bbe6282eb2a78862afb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sample config for Prometheus. | |
global: | |
scrape_interval: 5s | |
scrape_timeout: 5s | |
evaluation_interval: 5s | |
scrape_configs: | |
- job_name: hana-cluster | |
# The HANA scrapping follows a different scrapping time to reduce the execution load into the database | |
# This time was based on users feedback, but should be set accordingly with your environment needs. | |
scrape_interval: 30s | |
scrape_timeout: 30s | |
static_configs: | |
- targets: | |
- "{{ ip }}:9100" # node_exporte | |
- "{{ ip }}:9664" # ha_cluster_exporter | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sample config for Prometheus. | |
global: | |
scrape_interval: 5s | |
scrape_timeout: 5s | |
evaluation_interval: 5s | |
scrape_configs: | |
- job_name: hana-cluster | |
# The HANA scrapping follows a different scrapping time to reduce the execution load into the database | |
# This time was based on users feedback, but should be set accordingly with your environment needs. | |
scrape_interval: 30s | |
scrape_timeout: 30s | |
static_configs: | |
- targets: | |
- "{{ ip }}:9100" # node_exporte | |
- "{{ ip }}:9664" # ha_cluster_exporter | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment