We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can someone provide own Prometheus config file? I want to scrape metrics from two mikrotik. Here is my non-working prom config:
job_name: 'mikrotik1' scrape_interval: 10s static_configs:
job_name: 'mikrotik2' scrape_interval: 10s static_configs:
The text was updated successfully, but these errors were encountered:
This is my config that works:
- job_name: 'mikrotik-exporter' scrape_interval: 30s static_configs: - targets: - 10.11.1.1 # your Mikrotik router IP you wish to monitor metrics_path: /metrics params: module: [my_router] relabel_configs: - source_labels: [__address__] target_label: __param_target - source_labels: [__param_target] target_label: instance - target_label: __address__ replacement: mikrotik-exporter:9436
Sorry, something went wrong.
No branches or pull requests
Can someone provide own Prometheus config file?
I want to scrape metrics from two mikrotik.
Here is my non-working prom config:
job_name: 'mikrotik1'
scrape_interval: 10s
static_configs:
metrics_path: /metrics
params:
module: [my_router]
job_name: 'mikrotik2'
scrape_interval: 10s
static_configs:
metrics_path: /metrics
params:
module: [my_router]
The text was updated successfully, but these errors were encountered: