| 1 | plugin_name: go.d.plugin |
| 2 | modules: |
| 3 | - &module |
| 4 | meta: &meta |
| 5 | id: collector-go.d.plugin-prometheus-generic |
| 6 | module_name: prometheus |
| 7 | plugin_name: go.d.plugin |
| 8 | monitored_instance: |
| 9 | name: Prometheus endpoint |
| 10 | link: https://prometheus.io/ |
| 11 | icon_filename: prometheus.svg |
| 12 | categories: |
| 13 | - data-collection.applications |
| 14 | keywords: |
| 15 | - prometheus |
| 16 | - openmetrics |
| 17 | related_resources: |
| 18 | integrations: |
| 19 | list: [ ] |
| 20 | info_provided_to_referring_integrations: |
| 21 | description: "" |
| 22 | overview: &overview |
| 23 | data_collection: |
| 24 | metrics_description: | |
| 25 | This generic Prometheus collector gathers metrics from any [`Prometheus`](https://prometheus.io/) endpoints. |
| 26 | method_description: | |
| 27 | It collects metrics by periodically sending HTTP requests to the target instance. |
| 28 | supported_platforms: |
| 29 | include: [ ] |
| 30 | exclude: [ ] |
| 31 | multi_instance: true |
| 32 | additional_permissions: |
| 33 | description: "" |
| 34 | default_behavior: |
| 35 | auto_detection: |
| 36 | description: | |
| 37 | By default, it detects instances running on the local host by trying to connect to known ports that are [allocated to exporters](https://github.com/prometheus/prometheus/wiki/Default-port-allocations). |
| 38 | limits: |
| 39 | description: "" |
| 40 | performance_impact: |
| 41 | description: "" |
| 42 | setup: &setup |
| 43 | prerequisites: |
| 44 | list: [ ] |
| 45 | configuration: |
| 46 | file: |
| 47 | name: go.d/prometheus.conf |
| 48 | options: |
| 49 | description: | |
| 50 | The following options can be defined globally: update_every, autodetection_retry. |
| 51 | folding: |
| 52 | title: Config options |
| 53 | enabled: true |
| 54 | list: |
| 55 | - name: update_every |
| 56 | description: Data collection interval (seconds). |
| 57 | default_value: 10 |
| 58 | required: false |
| 59 | group: Collection |
| 60 | - name: autodetection_retry |
| 61 | description: Autodetection retry interval (seconds). Set 0 to disable. |
| 62 | default_value: 0 |
| 63 | required: false |
| 64 | group: Collection |
| 65 | |
| 66 | - name: url |
| 67 | description: Target endpoint URL. |
| 68 | default_value: "" |
| 69 | required: true |
| 70 | group: Target |
| 71 | - name: timeout |
| 72 | description: HTTP request timeout (seconds). |
| 73 | default_value: 10 |
| 74 | required: false |
| 75 | group: Target |
| 76 | |
| 77 | - name: selector |
| 78 | description: Time series selector (filter). |
| 79 | default_value: "" |
| 80 | required: false |
| 81 | group: Filters |
| 82 | detailed_description: | |
| 83 | This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected. |
| 84 | |
| 85 | - Logic: (pattern1 OR pattern2) AND !(pattern3 or pattern4) |
| 86 | - Pattern syntax: [selector](/src/go/pkg/prometheus/selector/README.md). |
| 87 | - Option syntax: |
| 88 | |
| 89 | ```yaml |
| 90 | selector: |
| 91 | allow: |
| 92 | - pattern1 |
| 93 | - pattern2 |
| 94 | deny: |
| 95 | - pattern3 |
| 96 | - pattern4 |
| 97 | ``` |
| 98 | |
| 99 | - name: max_time_series |
| 100 | description: Global time series limit. If an endpoint returns more time series than this, the data is not processed. |
| 101 | default_value: 2000 |
| 102 | required: false |
| 103 | group: Limits |
| 104 | |
| 105 | - name: max_time_series_per_metric |
| 106 | description: Per-metric time series limit. Metrics with more time series than this are skipped. |
| 107 | default_value: 200 |
| 108 | required: false |
| 109 | group: Limits |
| 110 | |
| 111 | - name: fallback_type |
| 112 | description: Fallback type rules for untyped metrics. |
| 113 | default_value: "" |
| 114 | required: false |
| 115 | group: Customization |
| 116 | detailed_description: | |
| 117 | This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them. |
| 118 | |
| 119 | - Metric name pattern syntax: [shell file name pattern](https://golang.org/pkg/path/filepath/#Match). |
| 120 | - Option syntax: |
| 121 | |
| 122 | ```yaml |
| 123 | fallback_type: |
| 124 | counter: |
| 125 | - metric_name_pattern1 |
| 126 | - metric_name_pattern2 |
| 127 | gauge: |
| 128 | - metric_name_pattern3 |
| 129 | - metric_name_pattern4 |
| 130 | ``` |
| 131 | |
| 132 | - name: label_prefix |
| 133 | description: "Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`." |
| 134 | default_value: "" |
| 135 | required: false |
| 136 | group: Customization |
| 137 | |
| 138 | - name: username |
| 139 | description: Username for Basic HTTP authentication. |
| 140 | default_value: "" |
| 141 | required: false |
| 142 | group: HTTP Auth |
| 143 | - name: password |
| 144 | description: Password for Basic HTTP authentication. |
| 145 | default_value: "" |
| 146 | required: false |
| 147 | group: HTTP Auth |
| 148 | - name: bearer_token_file |
| 149 | description: "Path to a file containing a bearer token (used for `Authorization: Bearer`)." |
| 150 | default_value: "" |
| 151 | required: false |
| 152 | group: HTTP Auth |
| 153 | |
| 154 | - name: tls_skip_verify |
| 155 | description: Skip TLS certificate and hostname verification (insecure). |
| 156 | default_value: no |
| 157 | required: false |
| 158 | group: TLS |
| 159 | - name: tls_ca |
| 160 | description: Path to CA bundle used to validate the server certificate. |
| 161 | default_value: "" |
| 162 | required: false |
| 163 | group: TLS |
| 164 | - name: tls_cert |
| 165 | description: Path to client TLS certificate (for mTLS). |
| 166 | default_value: "" |
| 167 | required: false |
| 168 | group: TLS |
| 169 | - name: tls_key |
| 170 | description: Path to client TLS private key (for mTLS). |
| 171 | default_value: "" |
| 172 | required: false |
| 173 | group: TLS |
| 174 | |
| 175 | - name: proxy_url |
| 176 | description: HTTP proxy URL. |
| 177 | default_value: "" |
| 178 | required: false |
| 179 | group: Proxy |
| 180 | - name: proxy_username |
| 181 | description: Username for proxy Basic HTTP authentication. |
| 182 | default_value: "" |
| 183 | required: false |
| 184 | group: Proxy |
| 185 | - name: proxy_password |
| 186 | description: Password for proxy Basic HTTP authentication. |
| 187 | default_value: "" |
| 188 | required: false |
| 189 | group: Proxy |
| 190 | |
| 191 | - name: method |
| 192 | description: HTTP method to use. |
| 193 | default_value: "GET" |
| 194 | required: false |
| 195 | group: Request |
| 196 | - name: body |
| 197 | description: Request body (e.g., for POST/PUT). |
| 198 | default_value: "" |
| 199 | required: false |
| 200 | group: Request |
| 201 | - name: headers |
| 202 | description: "Additional HTTP headers (one per line as key: value)." |
| 203 | default_value: "" |
| 204 | required: false |
| 205 | group: Request |
| 206 | - name: not_follow_redirects |
| 207 | description: Do not follow HTTP redirects. |
| 208 | default_value: no |
| 209 | required: false |
| 210 | group: Request |
| 211 | - name: force_http2 |
| 212 | description: Force HTTP/2 (including h2c over TCP). |
| 213 | default_value: no |
| 214 | required: false |
| 215 | group: Request |
| 216 | |
| 217 | - name: vnode |
| 218 | description: Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). |
| 219 | default_value: "" |
| 220 | required: false |
| 221 | group: Virtual Node |
| 222 | examples: |
| 223 | folding: |
| 224 | title: Config |
| 225 | enabled: true |
| 226 | list: |
| 227 | - name: Basic |
| 228 | folding: |
| 229 | enabled: false |
| 230 | description: | |
| 231 | > **Note**: Change the port of the monitored application on which it provides metrics. |
| 232 | |
| 233 | A basic example configuration. |
| 234 | config: | |
| 235 | jobs: |
| 236 | - name: local |
| 237 | url: http://127.0.0.1:9090/metrics |
| 238 | - name: Read metrics from a file |
| 239 | description: An example configuration to read metrics from a file. |
| 240 | config: | |
| 241 | # use "file://" scheme |
| 242 | jobs: |
| 243 | - name: myapp |
| 244 | url: file:///opt/metrics/myapp/metrics.txt |
| 245 | - name: HTTP authentication |
| 246 | description: | |
| 247 | > **Note**: Change the port of the monitored application on which it provides metrics. |
| 248 | |
| 249 | Basic HTTP authentication. |
| 250 | config: | |
| 251 | jobs: |
| 252 | - name: local |
| 253 | url: http://127.0.0.1:9090/metrics |
| 254 | username: username |
| 255 | password: password |
| 256 | - name: HTTPS with self-signed certificate |
| 257 | description: | |
| 258 | > **Note**: Change the port of the monitored application on which it provides metrics. |
| 259 | |
| 260 | Do not validate server certificate chain and hostname. |
| 261 | config: | |
| 262 | jobs: |
| 263 | - name: local |
| 264 | url: https://127.0.0.1:9090/metrics |
| 265 | tls_skip_verify: yes |
| 266 | - name: Multi-instance |
| 267 | description: | |
| 268 | > **Note**: When you define multiple jobs, their names must be unique. |
| 269 | > **Note**: Change the port of the monitored application on which it provides metrics. |
| 270 | |
| 271 | Collecting metrics from local and remote instances. |
| 272 | config: | |
| 273 | jobs: |
| 274 | - name: local |
| 275 | url: http://127.0.0.1:9090/metrics |
| 276 | |
| 277 | - name: remote |
| 278 | url: http://192.0.2.1:9090/metrics |
| 279 | troubleshooting: |
| 280 | problems: |
| 281 | list: |
| 282 | - name: "Disappearing or sparse metrics not clearing alerts" |
| 283 | description: | |
| 284 | When a metric disappears from the Prometheus endpoint response (for example, a gauge that is only exposed when its value is greater than 0), Netdata does not require any special value to stop tracking it. The Prometheus collector automatically detects metrics that are no longer present in the scrape response. After 10 consecutive collection cycles where the metric is absent, the associated chart is automatically removed and any alerts on that chart will clear. You do not need to send a special value (such as 0, NaN, or StaleNaN) — simply omitting the metric from the response is sufficient. Note that during the 10-cycle grace period, the last known value remains and alerts may not clear immediately. |
| 285 | alerts: [ ] |
| 286 | metrics: |
| 287 | folding: |
| 288 | title: Metrics |
| 289 | enabled: false |
| 290 | description: | |
| 291 | This collector has built-in grouping logic based on the [type of metrics](https://prometheus.io/docs/concepts/metric_types/). |
| 292 | |
| 293 | | Metric | Chart | Dimension(s) | Algorithm | |
| 294 | |---------------------------|-------------------------------------------|----------------------|-------------| |
| 295 | | Gauge | for each label set | one, the metric name | absolute | |
| 296 | | Counter | for each label set | one, the metric name | incremental | |
| 297 | | Summary (quantiles) | for each label set (excluding 'quantile') | for each quantile | absolute | |
| 298 | | Summary (sum and count) | for each label set | the metric name | incremental | |
| 299 | | Histogram (buckets) | for each label set (excluding 'le') | for each bucket | incremental | |
| 300 | | Histogram (sum and count) | for each label set | the metric name | incremental | |
| 301 | |
| 302 | Untyped metrics (have no '# TYPE') processing: |
| 303 | |
| 304 | - As Counter or Gauge depending on pattern match when 'fallback_type' is used. |
| 305 | - As Counter if it has suffix '_total'. |
| 306 | - As Summary if it has 'quantile' label. |
| 307 | - As Histogram if it has 'le' label. |
| 308 | |
| 309 | **The rest are ignored**. |
| 310 | availability: [ ] |
| 311 | scopes: [ ] |
| 312 | - <<: *module |
| 313 | meta: |
| 314 | <<: *meta |
| 315 | id: collector-go.d.plugin-prometheus-aws_ec2 |
| 316 | community: true |
| 317 | monitored_instance: |
| 318 | name: AWS EC2 Compute instances |
| 319 | link: https://github.com/O1ahmad/aws_ec2_exporter |
| 320 | icon_filename: aws-ec2.png |
| 321 | categories: |
| 322 | - data-collection.cloud-and-devops |
| 323 | keywords: |
| 324 | - cloud services |
| 325 | - cloud computing |
| 326 | - aws services |
| 327 | overview: |
| 328 | <<: *overview |
| 329 | data_collection: |
| 330 | metrics_description: | |
| 331 | Track AWS EC2 instances key metrics for optimized performance and cost management. |
| 332 | method_description: | |
| 333 | Metrics are gathered by periodically sending HTTP requests to [AWS EC2 Exporter](https://github.com/O1ahmad/aws_ec2_exporter). |
| 334 | setup: |
| 335 | <<: *setup |
| 336 | prerequisites: |
| 337 | list: |
| 338 | - title: Install Exporter |
| 339 | description: | |
| 340 | Install [AWS EC2 Exporter](https://github.com/O1ahmad/aws_ec2_exporter) by following the instructions mentioned in the exporter README. |
| 341 | - <<: *module |
| 342 | meta: |
| 343 | <<: *meta |
| 344 | id: collector-go.d.plugin-prometheus-blackbox |
| 345 | community: true |
| 346 | monitored_instance: |
| 347 | name: Blackbox |
| 348 | link: https://github.com/prometheus/blackbox_exporter |
| 349 | icon_filename: prometheus.svg |
| 350 | categories: |
| 351 | - data-collection.synthetic-testing |
| 352 | keywords: |
| 353 | - blackbox |
| 354 | overview: |
| 355 | <<: *overview |
| 356 | data_collection: |
| 357 | metrics_description: | |
| 358 | Track external service availability and response times with Blackbox monitoring. |
| 359 | method_description: | |
| 360 | Metrics are gathered by periodically sending HTTP requests to [Blackbox exporter](https://github.com/prometheus/blackbox_exporter). |
| 361 | setup: |
| 362 | <<: *setup |
| 363 | prerequisites: |
| 364 | list: |
| 365 | - title: Install Exporter |
| 366 | description: | |
| 367 | Install [Blackbox exporter](https://github.com/prometheus/blackbox_exporter) by following the instructions mentioned in the exporter README. |
| 368 | - <<: *module |
| 369 | meta: |
| 370 | <<: *meta |
| 371 | id: collector-go.d.plugin-prometheus-cilium_agent |
| 372 | community: true |
| 373 | monitored_instance: |
| 374 | name: Cilium Agent |
| 375 | link: https://github.com/cilium/cilium |
| 376 | icon_filename: cilium.png |
| 377 | categories: |
| 378 | - data-collection.containers-and-vms |
| 379 | keywords: [ ] |
| 380 | overview: |
| 381 | <<: *overview |
| 382 | data_collection: |
| 383 | metrics_description: | |
| 384 | Keep an eye on Cilium Agent metrics for optimized network security and connectivity. |
| 385 | method_description: | |
| 386 | Metrics are gathered by periodically sending HTTP requests to [Cilium Agent](https://github.com/cilium/cilium). |
| 387 | setup: |
| 388 | <<: *setup |
| 389 | prerequisites: |
| 390 | list: |
| 391 | - title: Install Exporter |
| 392 | description: | |
| 393 | Install [Cilium Agent](https://github.com/cilium/cilium) by following the instructions mentioned in the exporter README. |
| 394 | - <<: *module |
| 395 | meta: |
| 396 | <<: *meta |
| 397 | id: collector-go.d.plugin-prometheus-cilium_operator |
| 398 | community: true |
| 399 | monitored_instance: |
| 400 | name: Cilium Operator |
| 401 | link: https://github.com/cilium/cilium |
| 402 | icon_filename: cilium.png |
| 403 | categories: |
| 404 | - data-collection.containers-and-vms |
| 405 | keywords: [ ] |
| 406 | overview: |
| 407 | <<: *overview |
| 408 | data_collection: |
| 409 | metrics_description: | |
| 410 | Monitor Cilium Operator metrics for efficient Kubernetes network security management. |
| 411 | method_description: | |
| 412 | Metrics are gathered by periodically sending HTTP requests to [Cilium Operator](https://github.com/cilium/cilium). |
| 413 | setup: |
| 414 | <<: *setup |
| 415 | prerequisites: |
| 416 | list: |
| 417 | - title: Install Exporter |
| 418 | description: | |
| 419 | Install [Cilium Operator](https://github.com/cilium/cilium) by following the instructions mentioned in the exporter README. |
| 420 | - <<: *module |
| 421 | meta: |
| 422 | <<: *meta |
| 423 | id: collector-go.d.plugin-prometheus-cilium_proxy |
| 424 | community: true |
| 425 | monitored_instance: |
| 426 | name: Cilium Proxy |
| 427 | link: https://github.com/cilium/proxy |
| 428 | icon_filename: cilium.png |
| 429 | categories: |
| 430 | - data-collection.containers-and-vms |
| 431 | keywords: [ ] |
| 432 | overview: |
| 433 | <<: *overview |
| 434 | data_collection: |
| 435 | metrics_description: | |
| 436 | Track Cilium Proxy metrics for enhanced network security and performance. |
| 437 | method_description: | |
| 438 | Metrics are gathered by periodically sending HTTP requests to [Cilium Proxy](https://github.com/cilium/proxy). |
| 439 | setup: |
| 440 | <<: *setup |
| 441 | prerequisites: |
| 442 | list: |
| 443 | - title: Install Exporter |
| 444 | description: | |
| 445 | Install [Cilium Proxy](https://github.com/cilium/proxy) by following the instructions mentioned in the exporter README. |
| 446 | - <<: *module |
| 447 | meta: |
| 448 | id: collector-go.d.plugin-prometheus-aws_cloudwatch |
| 449 | <<: *meta |
| 450 | community: true |
| 451 | monitored_instance: |
| 452 | name: CloudWatch |
| 453 | link: https://github.com/prometheus/cloudwatch_exporter |
| 454 | icon_filename: aws-cloudwatch.png |
| 455 | categories: |
| 456 | - data-collection.cloud-and-devops |
| 457 | keywords: |
| 458 | - cloud services |
| 459 | - cloud computing |
| 460 | - scalability |
| 461 | overview: |
| 462 | <<: *overview |
| 463 | data_collection: |
| 464 | metrics_description: | |
| 465 | Monitor AWS CloudWatch metrics for comprehensive AWS resource management and performance optimization. |
| 466 | method_description: | |
| 467 | Metrics are gathered by periodically sending HTTP requests to [CloudWatch exporter](https://github.com/prometheus/cloudwatch_exporter). |
| 468 | setup: |
| 469 | <<: *setup |
| 470 | prerequisites: |
| 471 | list: |
| 472 | - title: Install Exporter |
| 473 | description: | |
| 474 | Install [CloudWatch exporter](https://github.com/prometheus/cloudwatch_exporter) by following the instructions mentioned in the exporter README. |
| 475 | - <<: *module |
| 476 | meta: |
| 477 | <<: *meta |
| 478 | id: collector-go.d.plugin-prometheus-concourse |
| 479 | community: true |
| 480 | monitored_instance: |
| 481 | name: Concourse |
| 482 | link: https://concourse-ci.org |
| 483 | icon_filename: concourse.png |
| 484 | categories: |
| 485 | - data-collection.cloud-and-devops |
| 486 | keywords: [ ] |
| 487 | overview: |
| 488 | <<: *overview |
| 489 | data_collection: |
| 490 | metrics_description: | |
| 491 | Monitor Concourse CI/CD pipeline metrics for optimized workflow management and deployment. |
| 492 | method_description: | |
| 493 | Metrics are gathered by periodically sending HTTP requests to the Concourse built-in Prometheus exporter. |
| 494 | setup: |
| 495 | <<: *setup |
| 496 | prerequisites: |
| 497 | list: |
| 498 | - title: Configure built-in Prometheus exporter |
| 499 | description: | |
| 500 | To configure the built-in Prometheus exporter, follow the [official documentation](https://concourse-ci.org/metrics.html#configuring-metrics). |
| 501 | - <<: *module |
| 502 | meta: |
| 503 | <<: *meta |
| 504 | id: collector-go.d.plugin-prometheus-scylladb |
| 505 | community: true |
| 506 | monitored_instance: |
| 507 | name: ScyllaDB |
| 508 | link: https://www.scylladb.com/ |
| 509 | icon_filename: scylladb.svg |
| 510 | categories: |
| 511 | - data-collection.databases |
| 512 | keywords: [ ] |
| 513 | overview: |
| 514 | <<: *overview |
| 515 | data_collection: |
| 516 | metrics_description: | |
| 517 | Track ScyllaDB NoSQL database metrics for efficient database management and performance with Netdata's Prometheus integration. |
| 518 | method_description: | |
| 519 | Metrics are gathered by periodically sending HTTP requests to the ScyllaDB built-in Prometheus exporter. |
| 520 | - <<: *module |
| 521 | meta: |
| 522 | <<: *meta |
| 523 | id: collector-go.d.plugin-prometheus-crowdsec |
| 524 | community: true |
| 525 | monitored_instance: |
| 526 | name: Crowdsec |
| 527 | link: https://docs.crowdsec.net/docs/observability/prometheus |
| 528 | icon_filename: crowdsec.png |
| 529 | categories: |
| 530 | - data-collection.applications |
| 531 | keywords: [ ] |
| 532 | overview: |
| 533 | <<: *overview |
| 534 | data_collection: |
| 535 | metrics_description: | |
| 536 | Monitor Crowdsec security metrics for efficient threat detection and response. |
| 537 | method_description: | |
| 538 | Metrics are gathered by periodically sending HTTP requests to the Crowdsec build-in Prometheus exporter. |
| 539 | setup: |
| 540 | <<: *setup |
| 541 | prerequisites: |
| 542 | list: |
| 543 | - title: Configure built-in Prometheus exporter |
| 544 | description: | |
| 545 | To configure the built-in Prometheus exporter, follow the [official documentation](https://docs.crowdsec.net/docs/observability/prometheus/). |
| 546 | - <<: *module |
| 547 | meta: |
| 548 | <<: *meta |
| 549 | id: collector-go.d.plugin-prometheus-discourse |
| 550 | community: true |
| 551 | monitored_instance: |
| 552 | name: Discourse |
| 553 | link: https://github.com/discourse/discourse-prometheus |
| 554 | icon_filename: discourse.svg |
| 555 | categories: |
| 556 | - data-collection.applications |
| 557 | keywords: [ ] |
| 558 | overview: |
| 559 | <<: *overview |
| 560 | data_collection: |
| 561 | metrics_description: | |
| 562 | Monitor Discourse forum metrics for efficient community management and engagement. |
| 563 | method_description: | |
| 564 | Metrics are gathered by periodically sending HTTP requests to [Discourse Exporter](https://github.com/discourse/discourse-prometheus). |
| 565 | setup: |
| 566 | <<: *setup |
| 567 | prerequisites: |
| 568 | list: |
| 569 | - title: Install Exporter |
| 570 | description: | |
| 571 | Install [Discourse Exporter](https://github.com/discourse/discourse-prometheus) by following the instructions mentioned in the exporter README. |
| 572 | - <<: *module |
| 573 | meta: |
| 574 | <<: *meta |
| 575 | id: collector-go.d.plugin-prometheus-dynatrace |
| 576 | community: true |
| 577 | monitored_instance: |
| 578 | name: Dynatrace |
| 579 | link: https://github.com/Apside-TOP/dynatrace_exporter |
| 580 | icon_filename: dynatrace.svg |
| 581 | categories: |
| 582 | - data-collection.cloud-and-devops |
| 583 | keywords: [ ] |
| 584 | overview: |
| 585 | <<: *overview |
| 586 | data_collection: |
| 587 | metrics_description: | |
| 588 | Monitor Dynatrace APM metrics for comprehensive application performance management. |
| 589 | method_description: | |
| 590 | Metrics are gathered by periodically sending HTTP requests to [Dynatrace Exporter](https://github.com/Apside-TOP/dynatrace_exporter). |
| 591 | setup: |
| 592 | <<: *setup |
| 593 | prerequisites: |
| 594 | list: |
| 595 | - title: Install Exporter |
| 596 | description: | |
| 597 | Install [Dynatrace Exporter](https://github.com/Apside-TOP/dynatrace_exporter) by following the instructions mentioned in the exporter README. |
| 598 | - <<: *module |
| 599 | meta: |
| 600 | <<: *meta |
| 601 | id: collector-go.d.plugin-prometheus-eos_web |
| 602 | community: true |
| 603 | monitored_instance: |
| 604 | name: EOS |
| 605 | link: https://eos-web.web.cern.ch/eos-web/ |
| 606 | icon_filename: eos.png |
| 607 | categories: |
| 608 | - data-collection.storage |
| 609 | keywords: [ ] |
| 610 | overview: |
| 611 | <<: *overview |
| 612 | data_collection: |
| 613 | metrics_description: | |
| 614 | Monitor CERN EOS metrics for efficient storage management. |
| 615 | method_description: | |
| 616 | Metrics are gathered by periodically sending HTTP requests to [EOS exporter](https://github.com/cern-eos/eos_exporter). |
| 617 | setup: |
| 618 | <<: *setup |
| 619 | prerequisites: |
| 620 | list: |
| 621 | - title: Install Exporter |
| 622 | description: | |
| 623 | Install [EOS exporter](https://github.com/cern-eos/eos_exporter) by following the instructions mentioned in the exporter README. |
| 624 | - <<: *module |
| 625 | meta: |
| 626 | <<: *meta |
| 627 | id: collector-go.d.plugin-prometheus-etcd |
| 628 | community: true |
| 629 | monitored_instance: |
| 630 | name: etcd |
| 631 | link: https://etcd.io/ |
| 632 | icon_filename: etcd.svg |
| 633 | categories: |
| 634 | - data-collection.applications |
| 635 | keywords: [ ] |
| 636 | overview: |
| 637 | <<: *overview |
| 638 | data_collection: |
| 639 | metrics_description: | |
| 640 | Track etcd database metrics for optimized distributed key-value store management and performance. |
| 641 | method_description: | |
| 642 | Metrics are gathered by periodically sending HTTP requests to etcd built-in Prometheus exporter. |
| 643 | - <<: *module |
| 644 | meta: |
| 645 | <<: *meta |
| 646 | id: collector-go.d.plugin-prometheus-freebsd_nfs |
| 647 | community: true |
| 648 | monitored_instance: |
| 649 | name: FreeBSD NFS |
| 650 | link: https://github.com/Axcient/freebsd-nfs-exporter |
| 651 | icon_filename: freebsd.svg |
| 652 | categories: |
| 653 | - data-collection.storage |
| 654 | keywords: [ ] |
| 655 | overview: |
| 656 | <<: *overview |
| 657 | data_collection: |
| 658 | metrics_description: | |
| 659 | Monitor FreeBSD Network File System metrics for efficient file sharing management and performance. |
| 660 | method_description: | |
| 661 | Metrics are gathered by periodically sending HTTP requests to [FreeBSD NFS Exporter](https://github.com/Axcient/freebsd-nfs-exporter). |
| 662 | setup: |
| 663 | <<: *setup |
| 664 | prerequisites: |
| 665 | list: |
| 666 | - title: Install Exporter |
| 667 | description: | |
| 668 | Install [FreeBSD NFS Exporter](https://github.com/Axcient/freebsd-nfs-exporter) by following the instructions mentioned in the exporter README. |
| 669 | - <<: *module |
| 670 | meta: |
| 671 | <<: *meta |
| 672 | id: collector-go.d.plugin-prometheus-freebsd_rctl |
| 673 | community: true |
| 674 | monitored_instance: |
| 675 | name: FreeBSD RCTL-RACCT |
| 676 | link: https://github.com/yo000/rctl_exporter |
| 677 | icon_filename: freebsd.svg |
| 678 | categories: |
| 679 | - data-collection.operating-systems |
| 680 | keywords: [ ] |
| 681 | overview: |
| 682 | <<: *overview |
| 683 | data_collection: |
| 684 | metrics_description: | |
| 685 | Keep an eye on FreeBSD Resource Container metrics for optimized resource management and performance. |
| 686 | method_description: | |
| 687 | Metrics are gathered by periodically sending HTTP requests to [FreeBSD RCTL Exporter](https://github.com/yo000/rctl_exporter). |
| 688 | setup: |
| 689 | <<: *setup |
| 690 | prerequisites: |
| 691 | list: |
| 692 | - title: Install Exporter |
| 693 | description: | |
| 694 | Install [FreeBSD RCTL Exporter](https://github.com/yo000/rctl_exporter) by following the instructions mentioned in the exporter README. |
| 695 | - <<: *module |
| 696 | meta: |
| 697 | <<: *meta |
| 698 | id: collector-go.d.plugin-prometheus-gcp_gce |
| 699 | community: true |
| 700 | monitored_instance: |
| 701 | name: GCP GCE |
| 702 | link: https://github.com/O1ahmad/gcp-gce-exporter |
| 703 | icon_filename: gcp-gce.svg |
| 704 | categories: |
| 705 | - data-collection.cloud-and-devops |
| 706 | keywords: [ ] |
| 707 | overview: |
| 708 | <<: *overview |
| 709 | data_collection: |
| 710 | metrics_description: | |
| 711 | Keep an eye on Google Cloud Platform Compute Engine metrics for efficient cloud resource management and performance. |
| 712 | method_description: | |
| 713 | Metrics are gathered by periodically sending HTTP requests to [GCP GCE Exporter](https://github.com/O1ahmad/gcp-gce-exporter). |
| 714 | setup: |
| 715 | <<: *setup |
| 716 | prerequisites: |
| 717 | list: |
| 718 | - title: Install Exporter |
| 719 | description: | |
| 720 | Install [GCP GCE Exporter](https://github.com/O1ahmad/gcp-gce-exporter) by following the instructions mentioned in the exporter README. |
| 721 | - <<: *module |
| 722 | meta: |
| 723 | <<: *meta |
| 724 | id: collector-go.d.plugin-prometheus-github_repo |
| 725 | community: true |
| 726 | monitored_instance: |
| 727 | name: GitHub repository |
| 728 | link: https://github.com/githubexporter/github-exporter |
| 729 | icon_filename: github.svg |
| 730 | categories: |
| 731 | - data-collection.applications |
| 732 | keywords: [ ] |
| 733 | overview: |
| 734 | <<: *overview |
| 735 | data_collection: |
| 736 | metrics_description: | |
| 737 | Track GitHub repository metrics for optimized project and user analytics monitoring. |
| 738 | method_description: | |
| 739 | Metrics are gathered by periodically sending HTTP requests to [GitHub Exporter](https://github.com/githubexporter/github-exporter). |
| 740 | setup: |
| 741 | <<: *setup |
| 742 | prerequisites: |
| 743 | list: |
| 744 | - title: Install Exporter |
| 745 | description: | |
| 746 | Install [GitHub Exporter](https://github.com/githubexporter/github-exporter) by following the instructions mentioned in the exporter README. |
| 747 | - <<: *module |
| 748 | meta: |
| 749 | <<: *meta |
| 750 | id: collector-go.d.plugin-prometheus-gitlab_runner |
| 751 | community: true |
| 752 | monitored_instance: |
| 753 | name: GitLab Runner |
| 754 | link: https://gitlab.com/gitlab-org/gitlab-runner |
| 755 | icon_filename: gitlab.png |
| 756 | categories: |
| 757 | - data-collection.cloud-and-devops |
| 758 | keywords: [ ] |
| 759 | overview: |
| 760 | <<: *overview |
| 761 | data_collection: |
| 762 | metrics_description: | |
| 763 | Keep an eye on GitLab CI/CD job metrics for efficient development and deployment management. |
| 764 | method_description: | |
| 765 | Metrics are gathered by periodically sending HTTP requests to GitLab built-in Prometheus exporter. |
| 766 | setup: |
| 767 | <<: *setup |
| 768 | prerequisites: |
| 769 | list: |
| 770 | - title: Configure built-in Prometheus exporter |
| 771 | description: | |
| 772 | To configure the built-in Prometheus exporter, follow the [official documentation](https://docs.gitlab.com/runner/monitoring/#configuration-of-the-metrics-http-server). |
| 773 | - <<: *module |
| 774 | meta: |
| 775 | <<: *meta |
| 776 | id: collector-go.d.plugin-prometheus-gobetween |
| 777 | community: true |
| 778 | monitored_instance: |
| 779 | name: Gobetween |
| 780 | link: https://github.com/yyyar/gobetween |
| 781 | icon_filename: gobetween.svg |
| 782 | categories: |
| 783 | - data-collection.web-servers-and-proxies |
| 784 | keywords: [ ] |
| 785 | overview: |
| 786 | <<: *overview |
| 787 | data_collection: |
| 788 | metrics_description: | |
| 789 | Track Gobetween load balancer metrics for optimized network traffic management and performance. |
| 790 | method_description: | |
| 791 | Metrics are gathered by periodically sending HTTP requests to Gobetween built-in Prometheus exporter. |
| 792 | - <<: *module |
| 793 | meta: |
| 794 | <<: *meta |
| 795 | id: collector-go.d.plugin-prometheus-gcp |
| 796 | community: true |
| 797 | monitored_instance: |
| 798 | name: Google Cloud Platform |
| 799 | link: https://github.com/DazWilkin/gcp-exporter |
| 800 | icon_filename: gcp.png |
| 801 | categories: |
| 802 | - data-collection.cloud-and-devops |
| 803 | keywords: |
| 804 | - cloud services |
| 805 | - cloud computing |
| 806 | - scalability |
| 807 | overview: |
| 808 | <<: *overview |
| 809 | data_collection: |
| 810 | metrics_description: | |
| 811 | Monitor Google Cloud Platform metrics for comprehensive cloud resource management and performance optimization. |
| 812 | method_description: | |
| 813 | Metrics are gathered by periodically sending HTTP requests to [Google Cloud Platform Exporter](https://github.com/DazWilkin/gcp-exporter). |
| 814 | setup: |
| 815 | <<: *setup |
| 816 | prerequisites: |
| 817 | list: |
| 818 | - title: Install Exporter |
| 819 | description: | |
| 820 | Install [Google Cloud Platform Exporter](https://github.com/DazWilkin/gcp-exporter) by following the instructions mentioned in the exporter README. |
| 821 | - <<: *module |
| 822 | meta: |
| 823 | <<: *meta |
| 824 | id: collector-go.d.plugin-prometheus-gcp_stackdriver |
| 825 | community: true |
| 826 | monitored_instance: |
| 827 | name: Google Stackdriver |
| 828 | link: https://github.com/prometheus-community/stackdriver_exporter |
| 829 | icon_filename: gcp-stackdriver.svg |
| 830 | categories: |
| 831 | - data-collection.cloud-and-devops |
| 832 | keywords: |
| 833 | - cloud services |
| 834 | - cloud computing |
| 835 | - google cloud services |
| 836 | overview: |
| 837 | <<: *overview |
| 838 | data_collection: |
| 839 | metrics_description: | |
| 840 | Track Google Stackdriver monitoring metrics for optimized cloud performance and diagnostics. |
| 841 | method_description: | |
| 842 | Metrics are gathered by periodically sending HTTP requests to [Google Stackdriver exporter](https://github.com/prometheus-community/stackdriver_exporter). |
| 843 | setup: |
| 844 | <<: *setup |
| 845 | prerequisites: |
| 846 | list: |
| 847 | - title: Install Exporter |
| 848 | description: | |
| 849 | Install [Google Stackdriver exporter](https://github.com/prometheus-community/stackdriver_exporter) by following the instructions mentioned in the exporter README. |
| 850 | - <<: *module |
| 851 | meta: |
| 852 | <<: *meta |
| 853 | id: collector-go.d.plugin-prometheus-grafana |
| 854 | community: true |
| 855 | monitored_instance: |
| 856 | name: Grafana |
| 857 | link: https://grafana.com/ |
| 858 | icon_filename: grafana.png |
| 859 | categories: |
| 860 | - data-collection.applications |
| 861 | keywords: [ ] |
| 862 | overview: |
| 863 | <<: *overview |
| 864 | data_collection: |
| 865 | metrics_description: | |
| 866 | Keep tabs on Grafana dashboard and visualization metrics for optimized monitoring and data analysis. |
| 867 | method_description: | |
| 868 | Metrics are gathered by periodically sending HTTP requests to Grafana built-in Prometheus exporter. |
| 869 | - <<: *module |
| 870 | meta: |
| 871 | <<: *meta |
| 872 | id: collector-go.d.plugin-prometheus-graylog |
| 873 | community: true |
| 874 | monitored_instance: |
| 875 | name: Graylog Server |
| 876 | link: https://github.com/Graylog2/graylog2-server/ |
| 877 | icon_filename: graylog.svg |
| 878 | categories: |
| 879 | - data-collection.applications |
| 880 | keywords: [ ] |
| 881 | overview: |
| 882 | <<: *overview |
| 883 | data_collection: |
| 884 | metrics_description: | |
| 885 | Monitor Graylog server metrics for efficient log management and analysis. |
| 886 | method_description: | |
| 887 | Metrics are gathered by periodically sending HTTP requests to Graylog built-in Prometheus exporter. |
| 888 | setup: |
| 889 | <<: *setup |
| 890 | prerequisites: |
| 891 | list: |
| 892 | - title: Configure built-in Prometheus exporter |
| 893 | description: | |
| 894 | To configure the built-in Prometheus exporter, follow the [official documentation](https://go2docs.graylog.org/5-0/interacting_with_your_log_data/metrics.html#PrometheusMetricExporting). |
| 895 | |
| 896 | - <<: *module |
| 897 | meta: |
| 898 | <<: *meta |
| 899 | id: collector-go.d.plugin-prometheus-hana |
| 900 | community: true |
| 901 | monitored_instance: |
| 902 | name: HANA |
| 903 | link: https://github.com/jenningsloy318/hana_exporter |
| 904 | icon_filename: sap.svg |
| 905 | categories: |
| 906 | - data-collection.databases |
| 907 | keywords: [ ] |
| 908 | overview: |
| 909 | <<: *overview |
| 910 | data_collection: |
| 911 | metrics_description: | |
| 912 | Track SAP HANA database metrics for efficient data storage and query performance. |
| 913 | method_description: | |
| 914 | Metrics are gathered by periodically sending HTTP requests to [HANA Exporter](https://github.com/jenningsloy318/hana_exporter). |
| 915 | setup: |
| 916 | <<: *setup |
| 917 | prerequisites: |
| 918 | list: |
| 919 | - title: Install Exporter |
| 920 | description: | |
| 921 | Install [HANA Exporter](https://github.com/jenningsloy318/hana_exporter) by following the instructions mentioned in the exporter README. |
| 922 | - <<: *module |
| 923 | meta: |
| 924 | <<: *meta |
| 925 | id: collector-go.d.plugin-prometheus-honeypot |
| 926 | community: true |
| 927 | monitored_instance: |
| 928 | name: Honeypot |
| 929 | link: https://github.com/Intrinsec/honeypot_exporter |
| 930 | icon_filename: intrinsec.svg |
| 931 | categories: |
| 932 | - data-collection.applications |
| 933 | keywords: [ ] |
| 934 | overview: |
| 935 | <<: *overview |
| 936 | data_collection: |
| 937 | metrics_description: | |
| 938 | Monitor honeypot metrics for efficient threat detection and management. |
| 939 | method_description: | |
| 940 | Metrics are gathered by periodically sending HTTP requests to [Intrinsec honeypot_exporter](https://github.com/Intrinsec/honeypot_exporter). |
| 941 | setup: |
| 942 | <<: *setup |
| 943 | prerequisites: |
| 944 | list: |
| 945 | - title: Install Exporter |
| 946 | description: | |
| 947 | Install [Intrinsec honeypot_exporter](https://github.com/Intrinsec/honeypot_exporter) by following the instructions mentioned in the exporter README. |
| 948 | - <<: *module |
| 949 | meta: |
| 950 | <<: *meta |
| 951 | id: collector-go.d.plugin-prometheus-hubble |
| 952 | community: true |
| 953 | monitored_instance: |
| 954 | name: Hubble |
| 955 | link: https://github.com/cilium/hubble |
| 956 | icon_filename: hubble.png |
| 957 | categories: |
| 958 | - data-collection.cloud-and-devops |
| 959 | keywords: [ ] |
| 960 | overview: |
| 961 | <<: *overview |
| 962 | data_collection: |
| 963 | metrics_description: | |
| 964 | Monitor Hubble network observability metrics for efficient network visibility and management. |
| 965 | method_description: | |
| 966 | Metrics are gathered by periodically sending HTTP requests to Hubble built-in Prometheus exporter. |
| 967 | setup: |
| 968 | <<: *setup |
| 969 | prerequisites: |
| 970 | list: |
| 971 | - title: Configure built-in Prometheus exporter |
| 972 | description: | |
| 973 | To configure the built-in Prometheus exporter, follow the [official documentation](https://docs.cilium.io/en/stable/observability/metrics/#hubble-metrics). |
| 974 | - <<: *module |
| 975 | meta: |
| 976 | <<: *meta |
| 977 | id: collector-go.d.plugin-prometheus-ibm_spectrum |
| 978 | community: true |
| 979 | monitored_instance: |
| 980 | name: IBM Spectrum |
| 981 | link: https://github.com/topine/ibm-spectrum-exporter |
| 982 | icon_filename: ibm.svg |
| 983 | categories: |
| 984 | - data-collection.storage |
| 985 | keywords: [ ] |
| 986 | overview: |
| 987 | <<: *overview |
| 988 | data_collection: |
| 989 | metrics_description: | |
| 990 | Monitor IBM Spectrum storage metrics for efficient data management and performance. |
| 991 | method_description: | |
| 992 | Metrics are gathered by periodically sending HTTP requests to [IBM Spectrum Exporter](https://github.com/topine/ibm-spectrum-exporter). |
| 993 | setup: |
| 994 | <<: *setup |
| 995 | prerequisites: |
| 996 | list: |
| 997 | - title: Install Exporter |
| 998 | description: | |
| 999 | Install [IBM Spectrum Exporter](https://github.com/topine/ibm-spectrum-exporter) by following the instructions mentioned in the exporter README. |
| 1000 | - <<: *module |
| 1001 | meta: |
| 1002 | <<: *meta |
| 1003 | id: collector-go.d.plugin-prometheus-influxdb |
| 1004 | community: true |
| 1005 | monitored_instance: |
| 1006 | name: InfluxDB |
| 1007 | link: https://github.com/prometheus/influxdb_exporter |
| 1008 | icon_filename: influxdb.svg |
| 1009 | categories: |
| 1010 | - data-collection.databases |
| 1011 | keywords: |
| 1012 | - database |
| 1013 | - dbms |
| 1014 | - data storage |
| 1015 | overview: |
| 1016 | <<: *overview |
| 1017 | data_collection: |
| 1018 | metrics_description: | |
| 1019 | Monitor InfluxDB time-series database metrics for efficient data storage and query performance. |
| 1020 | method_description: | |
| 1021 | Metrics are gathered by periodically sending HTTP requests to [InfluxDB exporter](https://github.com/prometheus/influxdb_exporter). |
| 1022 | setup: |
| 1023 | <<: *setup |
| 1024 | prerequisites: |
| 1025 | list: |
| 1026 | - title: Install Exporter |
| 1027 | description: | |
| 1028 | Install [InfluxDB exporter](https://github.com/prometheus/influxdb_exporter) by following the instructions mentioned in the exporter README. |
| 1029 | - <<: *module |
| 1030 | meta: |
| 1031 | <<: *meta |
| 1032 | id: collector-go.d.plugin-prometheus-jenkins |
| 1033 | community: true |
| 1034 | monitored_instance: |
| 1035 | name: Jenkins |
| 1036 | link: https://www.jenkins.io/ |
| 1037 | icon_filename: jenkins.svg |
| 1038 | categories: |
| 1039 | - data-collection.cloud-and-devops |
| 1040 | keywords: [ ] |
| 1041 | overview: |
| 1042 | <<: *overview |
| 1043 | data_collection: |
| 1044 | metrics_description: | |
| 1045 | Track Jenkins continuous integration server metrics for efficient development and build management. |
| 1046 | method_description: | |
| 1047 | Metrics are gathered by periodically sending HTTP requests to [Jenkins exporter](https://github.com/simplesurance/jenkins-exporter). |
| 1048 | setup: |
| 1049 | <<: *setup |
| 1050 | prerequisites: |
| 1051 | list: |
| 1052 | - title: Install Exporter |
| 1053 | description: | |
| 1054 | Install [Jenkins exporter](https://github.com/simplesurance/jenkins-exporter) by following the instructions mentioned in the exporter README. |
| 1055 | - <<: *module |
| 1056 | meta: |
| 1057 | <<: *meta |
| 1058 | id: collector-go.d.plugin-prometheus-jmx |
| 1059 | community: true |
| 1060 | monitored_instance: |
| 1061 | name: JMX |
| 1062 | link: https://github.com/prometheus/jmx_exporter |
| 1063 | icon_filename: java.svg |
| 1064 | categories: |
| 1065 | - data-collection.applications |
| 1066 | keywords: [ ] |
| 1067 | overview: |
| 1068 | <<: *overview |
| 1069 | data_collection: |
| 1070 | metrics_description: | |
| 1071 | Track Java Management Extensions (JMX) metrics for efficient Java application management and performance. |
| 1072 | method_description: | |
| 1073 | Metrics are gathered by periodically sending HTTP requests to [JMX Exporter](https://github.com/prometheus/jmx_exporter). |
| 1074 | setup: |
| 1075 | <<: *setup |
| 1076 | prerequisites: |
| 1077 | list: |
| 1078 | - title: Install Exporter |
| 1079 | description: | |
| 1080 | Install [JMX Exporter](https://github.com/prometheus/jmx_exporter) by following the instructions mentioned in the exporter README. |
| 1081 | - <<: *module |
| 1082 | meta: |
| 1083 | <<: *meta |
| 1084 | id: collector-go.d.plugin-prometheus-kafka_consumer_lag |
| 1085 | community: true |
| 1086 | monitored_instance: |
| 1087 | name: Kafka Consumer Lag |
| 1088 | link: https://github.com/omarsmak/kafka-consumer-lag-monitoring |
| 1089 | icon_filename: kafka.svg |
| 1090 | categories: |
| 1091 | - data-collection.databases |
| 1092 | keywords: |
| 1093 | - big data |
| 1094 | - stream processing |
| 1095 | - message broker |
| 1096 | overview: |
| 1097 | <<: *overview |
| 1098 | data_collection: |
| 1099 | metrics_description: | |
| 1100 | Monitor Kafka consumer lag metrics for efficient message queue management and performance. |
| 1101 | method_description: | |
| 1102 | Metrics are gathered by periodically sending HTTP requests to [Kafka Consumer Lag Monitoring](https://github.com/omarsmak/kafka-consumer-lag-monitoring). |
| 1103 | setup: |
| 1104 | <<: *setup |
| 1105 | prerequisites: |
| 1106 | list: |
| 1107 | - title: Install Exporter |
| 1108 | description: | |
| 1109 | Install [Kafka Consumer Lag Monitoring](https://github.com/omarsmak/kafka-consumer-lag-monitoring) by following the instructions mentioned in the exporter README. |
| 1110 | - <<: *module |
| 1111 | meta: |
| 1112 | <<: *meta |
| 1113 | id: collector-go.d.plugin-prometheus-kafka |
| 1114 | community: true |
| 1115 | monitored_instance: |
| 1116 | name: Kafka |
| 1117 | link: https://github.com/danielqsj/kafka_exporter/ |
| 1118 | icon_filename: kafka.svg |
| 1119 | categories: |
| 1120 | - data-collection.databases |
| 1121 | keywords: |
| 1122 | - big data |
| 1123 | - stream processing |
| 1124 | - message broker |
| 1125 | overview: |
| 1126 | <<: *overview |
| 1127 | data_collection: |
| 1128 | metrics_description: | |
| 1129 | Keep an eye on Kafka message queue metrics for optimized data streaming and performance. |
| 1130 | method_description: | |
| 1131 | Metrics are gathered by periodically sending HTTP requests to [Kafka Exporter](https://github.com/danielqsj/kafka_exporter/). |
| 1132 | setup: |
| 1133 | <<: *setup |
| 1134 | prerequisites: |
| 1135 | list: |
| 1136 | - title: Install Exporter |
| 1137 | description: | |
| 1138 | Install [Kafka Exporter](https://github.com/danielqsj/kafka_exporter/) by following the instructions mentioned in the exporter README. |
| 1139 | - <<: *module |
| 1140 | meta: |
| 1141 | <<: *meta |
| 1142 | id: collector-go.d.plugin-prometheus-kafka_zookeeper |
| 1143 | community: true |
| 1144 | monitored_instance: |
| 1145 | name: Kafka ZooKeeper |
| 1146 | link: https://github.com/cloudflare/kafka_zookeeper_exporter |
| 1147 | icon_filename: kafka.svg |
| 1148 | categories: |
| 1149 | - data-collection.databases |
| 1150 | keywords: |
| 1151 | - big data |
| 1152 | - stream processing |
| 1153 | - message broker |
| 1154 | overview: |
| 1155 | <<: *overview |
| 1156 | data_collection: |
| 1157 | metrics_description: | |
| 1158 | Monitor Kafka ZooKeeper metrics for optimized distributed coordination and management. |
| 1159 | method_description: | |
| 1160 | Metrics are gathered by periodically sending HTTP requests to [Kafka ZooKeeper Exporter](https://github.com/cloudflare/kafka_zookeeper_exporter). |
| 1161 | setup: |
| 1162 | <<: *setup |
| 1163 | prerequisites: |
| 1164 | list: |
| 1165 | - title: Install Exporter |
| 1166 | description: | |
| 1167 | Install [Kafka ZooKeeper Exporter](https://github.com/cloudflare/kafka_zookeeper_exporter) by following the instructions mentioned in the exporter README. |
| 1168 | - <<: *module |
| 1169 | meta: |
| 1170 | <<: *meta |
| 1171 | id: collector-go.d.plugin-prometheus-linode |
| 1172 | community: true |
| 1173 | monitored_instance: |
| 1174 | name: Linode |
| 1175 | link: https://github.com/DazWilkin/linode-exporter |
| 1176 | icon_filename: linode.svg |
| 1177 | categories: |
| 1178 | - data-collection.cloud-and-devops |
| 1179 | keywords: [ ] |
| 1180 | overview: |
| 1181 | <<: *overview |
| 1182 | data_collection: |
| 1183 | metrics_description: | |
| 1184 | Monitor Linode cloud hosting metrics for efficient virtual server management and performance. |
| 1185 | method_description: | |
| 1186 | Metrics are gathered by periodically sending HTTP requests to [Linode Exporter](https://github.com/DazWilkin/linode-exporter). |
| 1187 | setup: |
| 1188 | <<: *setup |
| 1189 | prerequisites: |
| 1190 | list: |
| 1191 | - title: Install Exporter |
| 1192 | description: | |
| 1193 | Install [Linode Exporter](https://github.com/DazWilkin/linode-exporter) by following the instructions mentioned in the exporter README. |
| 1194 | - <<: *module |
| 1195 | meta: |
| 1196 | <<: *meta |
| 1197 | id: collector-go.d.plugin-prometheus-loki |
| 1198 | community: true |
| 1199 | monitored_instance: |
| 1200 | name: loki |
| 1201 | link: https://github.com/grafana/loki |
| 1202 | icon_filename: loki.png |
| 1203 | categories: |
| 1204 | - data-collection.applications |
| 1205 | keywords: [ ] |
| 1206 | overview: |
| 1207 | <<: *overview |
| 1208 | data_collection: |
| 1209 | metrics_description: | |
| 1210 | Track Loki metrics. |
| 1211 | method_description: | |
| 1212 | Metrics are gathered by periodically sending HTTP requests to [loki](https://github.com/grafana/loki). |
| 1213 | setup: |
| 1214 | <<: *setup |
| 1215 | prerequisites: |
| 1216 | list: |
| 1217 | - title: Install Loki |
| 1218 | description: | |
| 1219 | Install [loki](https://github.com/grafana/loki) according to its documentation. |
| 1220 | - <<: *module |
| 1221 | meta: |
| 1222 | <<: *meta |
| 1223 | id: collector-go.d.plugin-prometheus-minecraft |
| 1224 | community: true |
| 1225 | monitored_instance: |
| 1226 | name: Minecraft |
| 1227 | link: https://github.com/sladkoff/minecraft-prometheus-exporter |
| 1228 | icon_filename: minecraft.png |
| 1229 | categories: |
| 1230 | - data-collection.applications |
| 1231 | keywords: [ ] |
| 1232 | overview: |
| 1233 | <<: *overview |
| 1234 | data_collection: |
| 1235 | metrics_description: | |
| 1236 | Track Minecraft server metrics for efficient game server management and performance. |
| 1237 | method_description: | |
| 1238 | Metrics are gathered by periodically sending HTTP requests to [Minecraft Exporter](https://github.com/sladkoff/minecraft-prometheus-exporter). |
| 1239 | setup: |
| 1240 | <<: *setup |
| 1241 | prerequisites: |
| 1242 | list: |
| 1243 | - title: Install Exporter |
| 1244 | description: | |
| 1245 | Install [Minecraft Exporter](https://github.com/sladkoff/minecraft-prometheus-exporter) by following the instructions mentioned in the exporter README. |
| 1246 | - <<: *module |
| 1247 | meta: |
| 1248 | <<: *meta |
| 1249 | id: collector-go.d.plugin-prometheus-mosquitto |
| 1250 | community: true |
| 1251 | monitored_instance: |
| 1252 | name: mosquitto |
| 1253 | link: https://github.com/sapcc/mosquitto-exporter |
| 1254 | icon_filename: mosquitto.svg |
| 1255 | categories: |
| 1256 | - data-collection.databases |
| 1257 | keywords: [ ] |
| 1258 | overview: |
| 1259 | <<: *overview |
| 1260 | data_collection: |
| 1261 | metrics_description: | |
| 1262 | Keep an eye on Mosquitto MQTT broker metrics for efficient IoT message transport and performance. |
| 1263 | method_description: | |
| 1264 | Metrics are gathered by periodically sending HTTP requests to [mosquitto exporter](https://github.com/sapcc/mosquitto-exporter). |
| 1265 | setup: |
| 1266 | <<: *setup |
| 1267 | prerequisites: |
| 1268 | list: |
| 1269 | - title: Install Exporter |
| 1270 | description: | |
| 1271 | Install [mosquitto exporter](https://github.com/sapcc/mosquitto-exporter) by following the instructions mentioned in the exporter README. |
| 1272 | - <<: *module |
| 1273 | meta: |
| 1274 | <<: *meta |
| 1275 | id: collector-go.d.plugin-prometheus-ibm_mq |
| 1276 | community: true |
| 1277 | monitored_instance: |
| 1278 | name: IBM MQ |
| 1279 | link: https://github.com/agebhar1/mq_exporter |
| 1280 | icon_filename: ibm.svg |
| 1281 | categories: |
| 1282 | - data-collection.databases |
| 1283 | keywords: [ ] |
| 1284 | overview: |
| 1285 | <<: *overview |
| 1286 | data_collection: |
| 1287 | metrics_description: | |
| 1288 | Keep tabs on IBM MQ message queue metrics for efficient message transport and performance. |
| 1289 | method_description: | |
| 1290 | Metrics are gathered by periodically sending HTTP requests to [MQ Exporter](https://github.com/agebhar1/mq_exporter). |
| 1291 | setup: |
| 1292 | <<: *setup |
| 1293 | prerequisites: |
| 1294 | list: |
| 1295 | - title: Install Exporter |
| 1296 | description: | |
| 1297 | Install [MQ Exporter](https://github.com/agebhar1/mq_exporter) by following the instructions mentioned in the exporter README. |
| 1298 | - <<: *module |
| 1299 | meta: |
| 1300 | <<: *meta |
| 1301 | id: collector-go.d.plugin-prometheus-mqtt_blackbox |
| 1302 | community: true |
| 1303 | monitored_instance: |
| 1304 | name: MQTT Blackbox |
| 1305 | link: https://github.com/inovex/mqtt_blackbox_exporter |
| 1306 | icon_filename: mqtt.svg |
| 1307 | categories: |
| 1308 | - data-collection.synthetic-testing |
| 1309 | keywords: [ ] |
| 1310 | overview: |
| 1311 | <<: *overview |
| 1312 | data_collection: |
| 1313 | metrics_description: | |
| 1314 | Track MQTT message transport performance using blackbox testing methods. |
| 1315 | method_description: | |
| 1316 | Metrics are gathered by periodically sending HTTP requests to [MQTT Blackbox Exporter](https://github.com/inovex/mqtt_blackbox_exporter). |
| 1317 | setup: |
| 1318 | <<: *setup |
| 1319 | prerequisites: |
| 1320 | list: |
| 1321 | - title: Install Exporter |
| 1322 | description: | |
| 1323 | Install [MQTT Blackbox Exporter](https://github.com/inovex/mqtt_blackbox_exporter) by following the instructions mentioned in the exporter README. |
| 1324 | - <<: *module |
| 1325 | meta: |
| 1326 | <<: *meta |
| 1327 | id: collector-go.d.plugin-prometheus-netapp_ontap |
| 1328 | community: true |
| 1329 | monitored_instance: |
| 1330 | name: Netapp ONTAP API |
| 1331 | link: https://github.com/sapcc/netapp-api-exporter |
| 1332 | icon_filename: netapp.svg |
| 1333 | categories: |
| 1334 | - data-collection.storage |
| 1335 | keywords: |
| 1336 | - network monitoring |
| 1337 | - network performance |
| 1338 | - traffic analysis |
| 1339 | overview: |
| 1340 | <<: *overview |
| 1341 | data_collection: |
| 1342 | metrics_description: | |
| 1343 | Keep tabs on NetApp ONTAP storage system metrics for efficient data storage management and performance. |
| 1344 | method_description: | |
| 1345 | Metrics are gathered by periodically sending HTTP requests to [Netapp ONTAP API Exporter](https://github.com/sapcc/netapp-api-exporter). |
| 1346 | setup: |
| 1347 | <<: *setup |
| 1348 | prerequisites: |
| 1349 | list: |
| 1350 | - title: Install Exporter |
| 1351 | description: | |
| 1352 | Install [Netapp ONTAP API Exporter](https://github.com/sapcc/netapp-api-exporter) by following the instructions mentioned in the exporter README. |
| 1353 | - <<: *module |
| 1354 | meta: |
| 1355 | <<: *meta |
| 1356 | id: collector-go.d.plugin-prometheus-netapp_solidfire |
| 1357 | community: true |
| 1358 | monitored_instance: |
| 1359 | name: NetApp Solidfire |
| 1360 | link: https://github.com/mjavier2k/solidfire-exporter |
| 1361 | icon_filename: netapp.svg |
| 1362 | categories: |
| 1363 | - data-collection.storage |
| 1364 | keywords: |
| 1365 | - network monitoring |
| 1366 | - network performance |
| 1367 | - traffic analysis |
| 1368 | overview: |
| 1369 | <<: *overview |
| 1370 | data_collection: |
| 1371 | metrics_description: | |
| 1372 | Track NetApp Solidfire storage system metrics for efficient data storage management and performance. |
| 1373 | method_description: | |
| 1374 | Metrics are gathered by periodically sending HTTP requests to [NetApp Solidfire Exporter](https://github.com/mjavier2k/solidfire-exporter). |
| 1375 | setup: |
| 1376 | <<: *setup |
| 1377 | prerequisites: |
| 1378 | list: |
| 1379 | - title: Install Exporter |
| 1380 | description: | |
| 1381 | Install [NetApp Solidfire Exporter](https://github.com/mjavier2k/solidfire-exporter) by following the instructions mentioned in the exporter README. |
| 1382 | - <<: *module |
| 1383 | meta: |
| 1384 | <<: *meta |
| 1385 | id: collector-go.d.plugin-prometheus-openvswitch |
| 1386 | community: true |
| 1387 | monitored_instance: |
| 1388 | name: Open vSwitch |
| 1389 | link: https://github.com/digitalocean/openvswitch_exporter |
| 1390 | icon_filename: ovs.png |
| 1391 | categories: |
| 1392 | - data-collection.networking |
| 1393 | keywords: [ ] |
| 1394 | overview: |
| 1395 | <<: *overview |
| 1396 | data_collection: |
| 1397 | metrics_description: | |
| 1398 | Keep an eye on Open vSwitch software-defined networking metrics for efficient network virtualization and performance. |
| 1399 | method_description: | |
| 1400 | Metrics are gathered by periodically sending HTTP requests to [Open vSwitch Exporter](https://github.com/digitalocean/openvswitch_exporter). |
| 1401 | setup: |
| 1402 | <<: *setup |
| 1403 | prerequisites: |
| 1404 | list: |
| 1405 | - title: Install Exporter |
| 1406 | description: | |
| 1407 | Install [Open vSwitch Exporter](https://github.com/digitalocean/openvswitch_exporter) by following the instructions mentioned in the exporter README. |
| 1408 | - <<: *module |
| 1409 | meta: |
| 1410 | <<: *meta |
| 1411 | id: collector-go.d.plugin-prometheus-google_pagespeed |
| 1412 | community: true |
| 1413 | monitored_instance: |
| 1414 | name: Google Pagespeed |
| 1415 | link: https://github.com/foomo/pagespeed_exporter |
| 1416 | icon_filename: google.svg |
| 1417 | categories: |
| 1418 | - data-collection.applications |
| 1419 | keywords: |
| 1420 | - cloud services |
| 1421 | - cloud computing |
| 1422 | - google cloud services |
| 1423 | overview: |
| 1424 | <<: *overview |
| 1425 | data_collection: |
| 1426 | metrics_description: | |
| 1427 | Keep an eye on Google PageSpeed Insights performance metrics for efficient web page optimization and performance. |
| 1428 | method_description: | |
| 1429 | Metrics are gathered by periodically sending HTTP requests to [Pagespeed exporter](https://github.com/foomo/pagespeed_exporter). |
| 1430 | setup: |
| 1431 | <<: *setup |
| 1432 | prerequisites: |
| 1433 | list: |
| 1434 | - title: Install Exporter |
| 1435 | description: | |
| 1436 | Install [Pagespeed exporter](https://github.com/foomo/pagespeed_exporter) by following the instructions mentioned in the exporter README. |
| 1437 | - <<: *module |
| 1438 | meta: |
| 1439 | id: collector-go.d.plugin-prometheus-philips_hue |
| 1440 | <<: *meta |
| 1441 | community: true |
| 1442 | monitored_instance: |
| 1443 | name: Philips Hue |
| 1444 | link: https://github.com/aexel90/hue_exporter |
| 1445 | icon_filename: hue.svg |
| 1446 | categories: |
| 1447 | - data-collection.hardware-and-sensors |
| 1448 | keywords: [ ] |
| 1449 | overview: |
| 1450 | <<: *overview |
| 1451 | data_collection: |
| 1452 | metrics_description: | |
| 1453 | Keep an eye on Philips Hue smart lighting metrics for efficient home automation and energy management. |
| 1454 | method_description: | |
| 1455 | Metrics are gathered by periodically sending HTTP requests to [Philips Hue Exporter](https://github.com/aexel90/hue_exporter). |
| 1456 | setup: |
| 1457 | <<: *setup |
| 1458 | prerequisites: |
| 1459 | list: |
| 1460 | - title: Install Exporter |
| 1461 | description: | |
| 1462 | Install [Philips Hue Exporter](https://github.com/aexel90/hue_exporter) by following the instructions mentioned in the exporter README. |
| 1463 | - <<: *module |
| 1464 | meta: |
| 1465 | <<: *meta |
| 1466 | id: collector-go.d.plugin-prometheus-podman |
| 1467 | community: true |
| 1468 | monitored_instance: |
| 1469 | name: Podman |
| 1470 | link: https://github.com/containers/prometheus-podman-exporter |
| 1471 | icon_filename: podman.png |
| 1472 | categories: |
| 1473 | - data-collection.containers-and-vms |
| 1474 | keywords: [ ] |
| 1475 | overview: |
| 1476 | <<: *overview |
| 1477 | data_collection: |
| 1478 | metrics_description: | |
| 1479 | Keep tabs on Podman container runtime metrics for efficient container management and performance. |
| 1480 | method_description: | |
| 1481 | Metrics are gathered by periodically sending HTTP requests to [PODMAN exporter](https://github.com/containers/prometheus-podman-exporter). |
| 1482 | setup: |
| 1483 | <<: *setup |
| 1484 | prerequisites: |
| 1485 | list: |
| 1486 | - title: Install Exporter |
| 1487 | description: | |
| 1488 | Install [PODMAN exporter](https://github.com/containers/prometheus-podman-exporter) by following the instructions mentioned in the exporter README. |
| 1489 | - <<: *module |
| 1490 | meta: |
| 1491 | <<: *meta |
| 1492 | id: collector-go.d.plugin-prometheus-proxmox |
| 1493 | community: true |
| 1494 | monitored_instance: |
| 1495 | name: Proxmox VE |
| 1496 | link: https://github.com/prometheus-pve/prometheus-pve-exporter |
| 1497 | icon_filename: proxmox.png |
| 1498 | categories: |
| 1499 | - data-collection.containers-and-vms |
| 1500 | keywords: [ ] |
| 1501 | overview: |
| 1502 | <<: *overview |
| 1503 | data_collection: |
| 1504 | metrics_description: | |
| 1505 | Keep tabs on Proxmox Virtual Environment metrics for efficient virtualization and container management. |
| 1506 | method_description: | |
| 1507 | Metrics are gathered by periodically sending HTTP requests to [Proxmox VE Exporter](https://github.com/prometheus-pve/prometheus-pve-exporter). |
| 1508 | setup: |
| 1509 | <<: *setup |
| 1510 | prerequisites: |
| 1511 | list: |
| 1512 | - title: Install Exporter |
| 1513 | description: | |
| 1514 | Install [Proxmox VE Exporter](https://github.com/prometheus-pve/prometheus-pve-exporter) by following the instructions mentioned in the exporter README. |
| 1515 | - <<: *module |
| 1516 | meta: |
| 1517 | <<: *meta |
| 1518 | id: collector-go.d.plugin-prometheus-radius |
| 1519 | community: true |
| 1520 | monitored_instance: |
| 1521 | name: RADIUS |
| 1522 | link: https://github.com/devon-mar/radius-exporter |
| 1523 | icon_filename: radius.png |
| 1524 | categories: |
| 1525 | - data-collection.applications |
| 1526 | keywords: [ ] |
| 1527 | overview: |
| 1528 | <<: *overview |
| 1529 | data_collection: |
| 1530 | metrics_description: | |
| 1531 | Keep tabs on RADIUS (Remote Authentication Dial-In User Service) protocol metrics for efficient authentication and access management. |
| 1532 | method_description: | |
| 1533 | Metrics are gathered by periodically sending HTTP requests to [RADIUS exporter](https://github.com/devon-mar/radius-exporter). |
| 1534 | setup: |
| 1535 | <<: *setup |
| 1536 | prerequisites: |
| 1537 | list: |
| 1538 | - title: Install Exporter |
| 1539 | description: | |
| 1540 | Install [RADIUS exporter](https://github.com/devon-mar/radius-exporter) by following the instructions mentioned in the exporter README. |
| 1541 | - <<: *module |
| 1542 | meta: |
| 1543 | <<: *meta |
| 1544 | id: collector-go.d.plugin-prometheus-aws_rds |
| 1545 | community: true |
| 1546 | monitored_instance: |
| 1547 | name: AWS RDS |
| 1548 | link: https://github.com/percona/rds_exporter |
| 1549 | icon_filename: aws-rds.svg |
| 1550 | categories: |
| 1551 | - data-collection.databases |
| 1552 | keywords: |
| 1553 | - cloud services |
| 1554 | - cloud computing |
| 1555 | - aws services |
| 1556 | overview: |
| 1557 | <<: *overview |
| 1558 | data_collection: |
| 1559 | metrics_description: | |
| 1560 | Monitor Amazon RDS (Relational Database Service) metrics for efficient cloud database management and performance. |
| 1561 | method_description: | |
| 1562 | Metrics are gathered by periodically sending HTTP requests to [rds_exporter](https://github.com/percona/rds_exporter). |
| 1563 | setup: |
| 1564 | <<: *setup |
| 1565 | prerequisites: |
| 1566 | list: |
| 1567 | - title: Install Exporter |
| 1568 | description: | |
| 1569 | Install [rds_exporter](https://github.com/percona/rds_exporter) by following the instructions mentioned in the exporter README. |
| 1570 | - <<: *module |
| 1571 | meta: |
| 1572 | <<: *meta |
| 1573 | id: collector-go.d.plugin-prometheus-ripe_atlas |
| 1574 | community: true |
| 1575 | monitored_instance: |
| 1576 | name: RIPE Atlas |
| 1577 | link: https://github.com/czerwonk/atlas_exporter |
| 1578 | icon_filename: ripe.png |
| 1579 | categories: |
| 1580 | - data-collection.networking |
| 1581 | keywords: [ ] |
| 1582 | overview: |
| 1583 | <<: *overview |
| 1584 | data_collection: |
| 1585 | metrics_description: | |
| 1586 | Keep tabs on RIPE Atlas Internet measurement platform metrics for efficient network monitoring and performance. |
| 1587 | method_description: | |
| 1588 | Metrics are gathered by periodically sending HTTP requests to [RIPE Atlas Exporter](https://github.com/czerwonk/atlas_exporter). |
| 1589 | setup: |
| 1590 | <<: *setup |
| 1591 | prerequisites: |
| 1592 | list: |
| 1593 | - title: Install Exporter |
| 1594 | description: | |
| 1595 | Install [RIPE Atlas Exporter](https://github.com/czerwonk/atlas_exporter) by following the instructions mentioned in the exporter README. |
| 1596 | - <<: *module |
| 1597 | meta: |
| 1598 | <<: *meta |
| 1599 | id: collector-go.d.plugin-prometheus-slurm |
| 1600 | community: true |
| 1601 | monitored_instance: |
| 1602 | name: Slurm |
| 1603 | link: https://github.com/SckyzO/slurm_exporter |
| 1604 | icon_filename: slurm.png |
| 1605 | categories: |
| 1606 | - data-collection.applications |
| 1607 | keywords: [ ] |
| 1608 | overview: |
| 1609 | <<: *overview |
| 1610 | data_collection: |
| 1611 | metrics_description: | |
| 1612 | Track Slurm workload manager metrics for efficient high-performance computing (HPC) and cluster management. |
| 1613 | method_description: | |
| 1614 | Metrics are gathered by periodically sending HTTP requests to [slurm exporter](https://github.com/SckyzO/slurm_exporter). |
| 1615 | setup: |
| 1616 | <<: *setup |
| 1617 | prerequisites: |
| 1618 | list: |
| 1619 | - title: Install Exporter |
| 1620 | description: | |
| 1621 | Install [slurm exporter](https://github.com/SckyzO/slurm_exporter) by following the instructions mentioned in the exporter README. |
| 1622 | - <<: *module |
| 1623 | meta: |
| 1624 | <<: *meta |
| 1625 | id: collector-go.d.plugin-prometheus-spacelift |
| 1626 | community: true |
| 1627 | monitored_instance: |
| 1628 | name: Spacelift |
| 1629 | link: https://github.com/spacelift-io/prometheus-exporter |
| 1630 | icon_filename: spacelift.png |
| 1631 | categories: |
| 1632 | - data-collection.cloud-and-devops |
| 1633 | keywords: [ ] |
| 1634 | overview: |
| 1635 | <<: *overview |
| 1636 | data_collection: |
| 1637 | metrics_description: | |
| 1638 | Track Spacelift infrastructure-as-code (IaC) platform metrics for efficient infrastructure automation and management. |
| 1639 | method_description: | |
| 1640 | Metrics are gathered by periodically sending HTTP requests to [Spacelift Exporter](https://github.com/spacelift-io/prometheus-exporter). |
| 1641 | setup: |
| 1642 | <<: *setup |
| 1643 | prerequisites: |
| 1644 | list: |
| 1645 | - title: Install Exporter |
| 1646 | description: | |
| 1647 | Install [Spacelift Exporter](https://github.com/spacelift-io/prometheus-exporter) by following the instructions mentioned in the exporter README. |
| 1648 | - <<: *module |
| 1649 | meta: |
| 1650 | <<: *meta |
| 1651 | id: collector-go.d.plugin-prometheus-starlink |
| 1652 | community: true |
| 1653 | monitored_instance: |
| 1654 | name: Starlink (SpaceX) |
| 1655 | link: https://github.com/danopstech/starlink_exporter |
| 1656 | icon_filename: starlink.svg |
| 1657 | categories: |
| 1658 | - data-collection.networking |
| 1659 | keywords: [ ] |
| 1660 | overview: |
| 1661 | <<: *overview |
| 1662 | data_collection: |
| 1663 | metrics_description: | |
| 1664 | Monitor SpaceX Starlink satellite internet metrics for efficient internet service management and performance. |
| 1665 | method_description: | |
| 1666 | Metrics are gathered by periodically sending HTTP requests to [Starlink Exporter (SpaceX)](https://github.com/danopstech/starlink_exporter). |
| 1667 | setup: |
| 1668 | <<: *setup |
| 1669 | prerequisites: |
| 1670 | list: |
| 1671 | - title: Install Exporter |
| 1672 | description: | |
| 1673 | Install [Starlink Exporter (SpaceX)](https://github.com/danopstech/starlink_exporter) by following the instructions mentioned in the exporter README. |
| 1674 | - <<: *module |
| 1675 | meta: |
| 1676 | <<: *meta |
| 1677 | id: collector-go.d.plugin-prometheus-statuspage |
| 1678 | community: true |
| 1679 | monitored_instance: |
| 1680 | name: StatusPage |
| 1681 | link: https://github.com/vladvasiliu/statuspage-exporter |
| 1682 | icon_filename: statuspage.png |
| 1683 | categories: |
| 1684 | - data-collection.applications |
| 1685 | keywords: [ ] |
| 1686 | overview: |
| 1687 | <<: *overview |
| 1688 | data_collection: |
| 1689 | metrics_description: | |
| 1690 | Monitor StatusPage.io incident and status metrics for efficient incident management and communication. |
| 1691 | method_description: | |
| 1692 | Metrics are gathered by periodically sending HTTP requests to [StatusPage Exporter](https://github.com/vladvasiliu/statuspage-exporter). |
| 1693 | setup: |
| 1694 | <<: *setup |
| 1695 | prerequisites: |
| 1696 | list: |
| 1697 | - title: Install Exporter |
| 1698 | description: | |
| 1699 | Install [StatusPage Exporter](https://github.com/vladvasiliu/statuspage-exporter) by following the instructions mentioned in the exporter README. |
| 1700 | - <<: *module |
| 1701 | meta: |
| 1702 | <<: *meta |
| 1703 | id: collector-go.d.plugin-prometheus-tacas |
| 1704 | community: true |
| 1705 | monitored_instance: |
| 1706 | name: TACACS |
| 1707 | link: https://github.com/devon-mar/tacacs-exporter |
| 1708 | icon_filename: tacacs.png |
| 1709 | categories: |
| 1710 | - data-collection.applications |
| 1711 | keywords: [ ] |
| 1712 | overview: |
| 1713 | <<: *overview |
| 1714 | data_collection: |
| 1715 | metrics_description: | |
| 1716 | Track Terminal Access Controller Access-Control System (TACACS) protocol metrics for efficient network authentication and authorization management. |
| 1717 | method_description: | |
| 1718 | Metrics are gathered by periodically sending HTTP requests to [TACACS Exporter](https://github.com/devon-mar/tacacs-exporter). |
| 1719 | setup: |
| 1720 | <<: *setup |
| 1721 | prerequisites: |
| 1722 | list: |
| 1723 | - title: Install Exporter |
| 1724 | description: | |
| 1725 | Install [TACACS Exporter](https://github.com/devon-mar/tacacs-exporter) by following the instructions mentioned in the exporter README. |
| 1726 | - <<: *module |
| 1727 | meta: |
| 1728 | <<: *meta |
| 1729 | id: collector-go.d.plugin-prometheus-tesla_vehicle |
| 1730 | community: true |
| 1731 | monitored_instance: |
| 1732 | name: Tesla vehicle |
| 1733 | link: https://github.com/wywywywy/tesla-prometheus-exporter |
| 1734 | icon_filename: tesla.png |
| 1735 | categories: |
| 1736 | - data-collection.hardware-and-sensors |
| 1737 | keywords: [ ] |
| 1738 | overview: |
| 1739 | <<: *overview |
| 1740 | data_collection: |
| 1741 | metrics_description: | |
| 1742 | Track Tesla vehicle metrics for efficient electric vehicle management and monitoring. |
| 1743 | method_description: | |
| 1744 | Metrics are gathered by periodically sending HTTP requests to [Tesla exporter](https://github.com/wywywywy/tesla-prometheus-exporter). |
| 1745 | setup: |
| 1746 | <<: *setup |
| 1747 | prerequisites: |
| 1748 | list: |
| 1749 | - title: Install Exporter |
| 1750 | description: | |
| 1751 | Install [Tesla exporter](https://github.com/wywywywy/tesla-prometheus-exporter) by following the instructions mentioned in the exporter README. |
| 1752 | - <<: *module |
| 1753 | meta: |
| 1754 | <<: *meta |
| 1755 | id: collector-go.d.plugin-prometheus-twitch |
| 1756 | community: true |
| 1757 | monitored_instance: |
| 1758 | name: Twitch |
| 1759 | link: https://github.com/damoun/twitch_exporter |
| 1760 | icon_filename: twitch.svg |
| 1761 | categories: |
| 1762 | - data-collection.applications |
| 1763 | keywords: [ ] |
| 1764 | overview: |
| 1765 | <<: *overview |
| 1766 | data_collection: |
| 1767 | metrics_description: | |
| 1768 | Track Twitch streaming platform metrics for efficient live streaming management and performance. |
| 1769 | method_description: | |
| 1770 | Metrics are gathered by periodically sending HTTP requests to [Twitch exporter](https://github.com/damoun/twitch_exporter). |
| 1771 | setup: |
| 1772 | <<: *setup |
| 1773 | prerequisites: |
| 1774 | list: |
| 1775 | - title: Install Exporter |
| 1776 | description: | |
| 1777 | Install [Twitch exporter](https://github.com/damoun/twitch_exporter) by following the instructions mentioned in the exporter README. |
| 1778 | - <<: *module |
| 1779 | meta: |
| 1780 | <<: *meta |
| 1781 | id: collector-go.d.plugin-prometheus-ubiquity_ufiber |
| 1782 | community: true |
| 1783 | monitored_instance: |
| 1784 | name: Ubiquiti UFiber OLT |
| 1785 | link: https://github.com/swoga/ufiber-exporter |
| 1786 | icon_filename: ubiquiti.png |
| 1787 | categories: |
| 1788 | - data-collection.networking |
| 1789 | keywords: [ ] |
| 1790 | overview: |
| 1791 | <<: *overview |
| 1792 | data_collection: |
| 1793 | metrics_description: | |
| 1794 | Track Ubiquiti UFiber GPON (Gigabit Passive Optical Network) device metrics for efficient fiber-optic network management and performance. |
| 1795 | method_description: | |
| 1796 | Metrics are gathered by periodically sending HTTP requests to [ufiber-exporter](https://github.com/swoga/ufiber-exporter). |
| 1797 | setup: |
| 1798 | <<: *setup |
| 1799 | prerequisites: |
| 1800 | list: |
| 1801 | - title: Install Exporter |
| 1802 | description: | |
| 1803 | Install [ufiber-exporter](https://github.com/swoga/ufiber-exporter) by following the instructions mentioned in the exporter README. |
| 1804 | - <<: *module |
| 1805 | meta: |
| 1806 | <<: *meta |
| 1807 | id: collector-go.d.plugin-prometheus-uptimerobot |
| 1808 | community: true |
| 1809 | monitored_instance: |
| 1810 | name: Uptimerobot |
| 1811 | link: https://github.com/wosc/prometheus-uptimerobot |
| 1812 | icon_filename: uptimerobot.svg |
| 1813 | categories: |
| 1814 | - data-collection.synthetic-testing |
| 1815 | keywords: [ ] |
| 1816 | overview: |
| 1817 | <<: *overview |
| 1818 | data_collection: |
| 1819 | metrics_description: | |
| 1820 | Monitor UptimeRobot website uptime monitoring metrics for efficient website availability tracking and management. |
| 1821 | method_description: | |
| 1822 | Metrics are gathered by periodically sending HTTP requests to [Uptimerobot Exporter](https://github.com/wosc/prometheus-uptimerobot). |
| 1823 | setup: |
| 1824 | <<: *setup |
| 1825 | prerequisites: |
| 1826 | list: |
| 1827 | - title: Install Exporter |
| 1828 | description: | |
| 1829 | Install [Uptimerobot Exporter](https://github.com/wosc/prometheus-uptimerobot) by following the instructions mentioned in the exporter README. |
| 1830 | - <<: *module |
| 1831 | meta: |
| 1832 | <<: *meta |
| 1833 | id: collector-go.d.plugin-prometheus-vault_pki |
| 1834 | community: true |
| 1835 | monitored_instance: |
| 1836 | name: Vault PKI |
| 1837 | link: https://github.com/aarnaud/vault-pki-exporter |
| 1838 | icon_filename: vault.svg |
| 1839 | categories: |
| 1840 | - data-collection.applications |
| 1841 | keywords: [ ] |
| 1842 | overview: |
| 1843 | <<: *overview |
| 1844 | data_collection: |
| 1845 | metrics_description: | |
| 1846 | Monitor HashiCorp Vault Public Key Infrastructure (PKI) metrics for efficient certificate management and security. |
| 1847 | method_description: | |
| 1848 | Metrics are gathered by periodically sending HTTP requests to [Vault PKI Exporter](https://github.com/aarnaud/vault-pki-exporter). |
| 1849 | setup: |
| 1850 | <<: *setup |
| 1851 | prerequisites: |
| 1852 | list: |
| 1853 | - title: Install Exporter |
| 1854 | description: | |
| 1855 | Install [Vault PKI Exporter](https://github.com/aarnaud/vault-pki-exporter) by following the instructions mentioned in the exporter README. |
| 1856 | - <<: *module |
| 1857 | meta: |
| 1858 | <<: *meta |
| 1859 | id: collector-go.d.plugin-prometheus-vertica |
| 1860 | community: true |
| 1861 | monitored_instance: |
| 1862 | name: Vertica |
| 1863 | link: https://github.com/vertica/vertica-prometheus-exporter |
| 1864 | icon_filename: vertica.svg |
| 1865 | categories: |
| 1866 | - data-collection.databases |
| 1867 | keywords: [ ] |
| 1868 | overview: |
| 1869 | <<: *overview |
| 1870 | data_collection: |
| 1871 | metrics_description: | |
| 1872 | Monitor Vertica analytics database platform metrics for efficient database performance and management. |
| 1873 | method_description: | |
| 1874 | Metrics are gathered by periodically sending HTTP requests to [vertica-prometheus-exporter](https://github.com/vertica/vertica-prometheus-exporter). |
| 1875 | setup: |
| 1876 | <<: *setup |
| 1877 | prerequisites: |
| 1878 | list: |
| 1879 | - title: Install Exporter |
| 1880 | description: | |
| 1881 | Install [vertica-prometheus-exporter](https://github.com/vertica/vertica-prometheus-exporter) by following the instructions mentioned in the exporter README. |
| 1882 | - <<: *module |
| 1883 | meta: |
| 1884 | <<: *meta |
| 1885 | id: collector-go.d.plugin-prometheus-vscode |
| 1886 | community: true |
| 1887 | monitored_instance: |
| 1888 | name: VSCode |
| 1889 | link: https://github.com/guicaulada/vscode-exporter |
| 1890 | icon_filename: vscode.svg |
| 1891 | categories: |
| 1892 | - data-collection.applications |
| 1893 | keywords: [ ] |
| 1894 | overview: |
| 1895 | <<: *overview |
| 1896 | data_collection: |
| 1897 | metrics_description: | |
| 1898 | Track Visual Studio Code editor metrics for efficient development environment management and performance. |
| 1899 | method_description: | |
| 1900 | Metrics are gathered by periodically sending HTTP requests to [VSCode Exporter](https://github.com/guicaulada/vscode-exporter). |
| 1901 | setup: |
| 1902 | <<: *setup |
| 1903 | prerequisites: |
| 1904 | list: |
| 1905 | - title: Install Exporter |
| 1906 | description: | |
| 1907 | Install [VSCode Exporter](https://github.com/guicaulada/vscode-exporter) by following the instructions mentioned in the exporter README. |
| 1908 | - <<: *module |
| 1909 | meta: |
| 1910 | <<: *meta |
| 1911 | id: collector-go.d.plugin-prometheus-4d_server |
| 1912 | community: true |
| 1913 | monitored_instance: |
| 1914 | name: 4D Server |
| 1915 | link: https://github.com/ThomasMaul/Prometheus_4D_Exporter |
| 1916 | icon_filename: 4d_server.png |
| 1917 | categories: |
| 1918 | - data-collection.databases |
| 1919 | keywords: [ ] |
| 1920 | overview: |
| 1921 | <<: *overview |
| 1922 | data_collection: |
| 1923 | metrics_description: | |
| 1924 | Monitor 4D Server performance metrics for efficient application management and optimization. |
| 1925 | method_description: | |
| 1926 | Metrics are gathered by periodically sending HTTP requests to [4D Server exporter](https://github.com/ThomasMaul/Prometheus_4D_Exporter). |
| 1927 | setup: |
| 1928 | <<: *setup |
| 1929 | prerequisites: |
| 1930 | list: |
| 1931 | - title: Install Exporter |
| 1932 | description: | |
| 1933 | Install [4D Server exporter](https://github.com/ThomasMaul/Prometheus_4D_Exporter) by following the instructions mentioned in the exporter README. |
| 1934 | - <<: *module |
| 1935 | meta: |
| 1936 | <<: *meta |
| 1937 | id: collector-go.d.plugin-prometheus-8430ft-modem |
| 1938 | community: true |
| 1939 | monitored_instance: |
| 1940 | name: 8430FT modem |
| 1941 | link: https://github.com/dernasherbrezon/8430ft_exporter |
| 1942 | icon_filename: mtc.svg |
| 1943 | categories: |
| 1944 | - data-collection.networking |
| 1945 | keywords: [ ] |
| 1946 | overview: |
| 1947 | <<: *overview |
| 1948 | data_collection: |
| 1949 | metrics_description: | |
| 1950 | Keep track of vital metrics from the MTS 8430FT modem for streamlined network performance and diagnostics. |
| 1951 | method_description: | |
| 1952 | Metrics are gathered by periodically sending HTTP requests to [8430FT Exporter](https://github.com/dernasherbrezon/8430ft_exporter). |
| 1953 | setup: |
| 1954 | <<: *setup |
| 1955 | prerequisites: |
| 1956 | list: |
| 1957 | - title: Install Exporter |
| 1958 | description: | |
| 1959 | Install [8430FT Exporter](https://github.com/dernasherbrezon/8430ft_exporter) by following the instructions mentioned in the exporter README. |
| 1960 | - <<: *module |
| 1961 | meta: |
| 1962 | <<: *meta |
| 1963 | id: collector-go.d.plugin-prometheus-steam_a2s |
| 1964 | community: true |
| 1965 | monitored_instance: |
| 1966 | name: Steam |
| 1967 | link: https://github.com/armsnyder/a2s-exporter |
| 1968 | icon_filename: a2s.png |
| 1969 | categories: |
| 1970 | - data-collection.applications |
| 1971 | keywords: [ ] |
| 1972 | overview: |
| 1973 | <<: *overview |
| 1974 | data_collection: |
| 1975 | metrics_description: | |
| 1976 | Gain insights into Steam A2S-supported game servers for performance and availability through real-time metric monitoring. |
| 1977 | method_description: | |
| 1978 | Metrics are gathered by periodically sending HTTP requests to [A2S Exporter](https://github.com/armsnyder/a2s-exporter). |
| 1979 | setup: |
| 1980 | <<: *setup |
| 1981 | prerequisites: |
| 1982 | list: |
| 1983 | - title: Install Exporter |
| 1984 | description: | |
| 1985 | Install [A2S Exporter](https://github.com/armsnyder/a2s-exporter) by following the instructions mentioned in the exporter README. |
| 1986 | - <<: *module |
| 1987 | meta: |
| 1988 | <<: *meta |
| 1989 | id: collector-go.d.plugin-prometheus-alamos_fe2 |
| 1990 | community: true |
| 1991 | monitored_instance: |
| 1992 | name: Alamos FE2 server |
| 1993 | link: https://github.com/codemonauts/prometheus-fe2-exporter |
| 1994 | icon_filename: alamos_fe2.png |
| 1995 | categories: |
| 1996 | - data-collection.applications |
| 1997 | keywords: [ ] |
| 1998 | overview: |
| 1999 | <<: *overview |
| 2000 | data_collection: |
| 2001 | metrics_description: | |
| 2002 | Keep tabs on Alamos FE2 systems for improved performance and management. |
| 2003 | method_description: | |
| 2004 | Metrics are gathered by periodically sending HTTP requests to [Alamos FE2 Exporter](https://github.com/codemonauts/prometheus-fe2-exporter). |
| 2005 | setup: |
| 2006 | <<: *setup |
| 2007 | prerequisites: |
| 2008 | list: |
| 2009 | - title: Install Exporter |
| 2010 | description: | |
| 2011 | Install [Alamos FE2 Exporter](https://github.com/codemonauts/prometheus-fe2-exporter) by following the instructions mentioned in the exporter README. |
| 2012 | - <<: *module |
| 2013 | meta: |
| 2014 | <<: *meta |
| 2015 | id: collector-go.d.plugin-prometheus-amd_smi |
| 2016 | community: true |
| 2017 | monitored_instance: |
| 2018 | name: AMD CPU & GPU |
| 2019 | link: https://github.com/amd/amd_smi_exporter |
| 2020 | icon_filename: amd.svg |
| 2021 | categories: |
| 2022 | - data-collection.hardware-and-sensors |
| 2023 | keywords: [ ] |
| 2024 | overview: |
| 2025 | <<: *overview |
| 2026 | data_collection: |
| 2027 | metrics_description: | |
| 2028 | Monitor AMD System Management Interface performance for optimized hardware management. |
| 2029 | method_description: | |
| 2030 | Metrics are gathered by periodically sending HTTP requests to [AMD SMI Exporter](https://github.com/amd/amd_smi_exporter). |
| 2031 | setup: |
| 2032 | <<: *setup |
| 2033 | prerequisites: |
| 2034 | list: |
| 2035 | - title: Install Exporter |
| 2036 | description: | |
| 2037 | Install [AMD SMI Exporter](https://github.com/amd/amd_smi_exporter) by following the instructions mentioned in the exporter README. |
| 2038 | - <<: *module |
| 2039 | meta: |
| 2040 | <<: *meta |
| 2041 | id: collector-go.d.plugin-prometheus-apicast |
| 2042 | community: true |
| 2043 | monitored_instance: |
| 2044 | name: APIcast |
| 2045 | link: https://github.com/3scale/apicast |
| 2046 | icon_filename: apicast.png |
| 2047 | categories: |
| 2048 | - data-collection.web-servers-and-proxies |
| 2049 | keywords: [ ] |
| 2050 | overview: |
| 2051 | <<: *overview |
| 2052 | data_collection: |
| 2053 | metrics_description: | |
| 2054 | Monitor APIcast performance metrics to optimize API gateway operations and management. |
| 2055 | method_description: | |
| 2056 | Metrics are gathered by periodically sending HTTP requests to [APIcast](https://github.com/3scale/apicast). |
| 2057 | setup: |
| 2058 | <<: *setup |
| 2059 | prerequisites: |
| 2060 | list: |
| 2061 | - title: Install Exporter |
| 2062 | description: | |
| 2063 | Install [APIcast](https://github.com/3scale/apicast) by following the instructions mentioned in the exporter README. |
| 2064 | - <<: *module |
| 2065 | meta: |
| 2066 | <<: *meta |
| 2067 | id: collector-go.d.plugin-prometheus-authlog |
| 2068 | community: true |
| 2069 | monitored_instance: |
| 2070 | name: AuthLog |
| 2071 | link: https://github.com/woblerr/authlog_exporter |
| 2072 | icon_filename: linux.png |
| 2073 | categories: |
| 2074 | - data-collection.applications |
| 2075 | keywords: [ ] |
| 2076 | overview: |
| 2077 | <<: *overview |
| 2078 | data_collection: |
| 2079 | metrics_description: | |
| 2080 | Monitor authentication logs for security insights and efficient access management. |
| 2081 | method_description: | |
| 2082 | Metrics are gathered by periodically sending HTTP requests to [AuthLog Exporter](https://github.com/woblerr/authlog_exporter). |
| 2083 | setup: |
| 2084 | <<: *setup |
| 2085 | prerequisites: |
| 2086 | list: |
| 2087 | - title: Install Exporter |
| 2088 | description: | |
| 2089 | Install [AuthLog Exporter](https://github.com/woblerr/authlog_exporter) by following the instructions mentioned in the exporter README. |
| 2090 | - <<: *module |
| 2091 | meta: |
| 2092 | <<: *meta |
| 2093 | id: collector-go.d.plugin-prometheus-aws_quota |
| 2094 | community: true |
| 2095 | monitored_instance: |
| 2096 | name: AWS Quota |
| 2097 | link: https://github.com/emylincon/aws_quota_exporter |
| 2098 | icon_filename: aws.svg |
| 2099 | categories: |
| 2100 | - data-collection.cloud-and-devops |
| 2101 | keywords: |
| 2102 | - cloud services |
| 2103 | - cloud computing |
| 2104 | - aws services |
| 2105 | overview: |
| 2106 | <<: *overview |
| 2107 | data_collection: |
| 2108 | metrics_description: | |
| 2109 | Monitor AWS service quotas for effective resource usage and cost management. |
| 2110 | method_description: | |
| 2111 | Metrics are gathered by periodically sending HTTP requests to [aws_quota_exporter](https://github.com/emylincon/aws_quota_exporter). |
| 2112 | setup: |
| 2113 | <<: *setup |
| 2114 | prerequisites: |
| 2115 | list: |
| 2116 | - title: Install Exporter |
| 2117 | description: | |
| 2118 | Install [aws_quota_exporter](https://github.com/emylincon/aws_quota_exporter) by following the instructions mentioned in the exporter README. |
| 2119 | - <<: *module |
| 2120 | meta: |
| 2121 | <<: *meta |
| 2122 | id: collector-go.d.plugin-prometheus-bosh |
| 2123 | community: true |
| 2124 | monitored_instance: |
| 2125 | name: BOSH |
| 2126 | link: https://github.com/bosh-prometheus/bosh_exporter |
| 2127 | icon_filename: bosh.png |
| 2128 | categories: |
| 2129 | - data-collection.cloud-and-devops |
| 2130 | keywords: [ ] |
| 2131 | overview: |
| 2132 | <<: *overview |
| 2133 | data_collection: |
| 2134 | metrics_description: | |
| 2135 | Keep an eye on BOSH deployment metrics for improved cloud orchestration and resource management. |
| 2136 | method_description: | |
| 2137 | Metrics are gathered by periodically sending HTTP requests to [BOSH exporter](https://github.com/bosh-prometheus/bosh_exporter). |
| 2138 | setup: |
| 2139 | <<: *setup |
| 2140 | prerequisites: |
| 2141 | list: |
| 2142 | - title: Install Exporter |
| 2143 | description: | |
| 2144 | Install [BOSH exporter](https://github.com/bosh-prometheus/bosh_exporter) by following the instructions mentioned in the exporter README. |
| 2145 | - <<: *module |
| 2146 | meta: |
| 2147 | <<: *meta |
| 2148 | id: collector-go.d.plugin-prometheus-bungeecord |
| 2149 | community: true |
| 2150 | monitored_instance: |
| 2151 | name: BungeeCord |
| 2152 | link: https://github.com/weihao/bungeecord-prometheus-exporter |
| 2153 | icon_filename: bungee.png |
| 2154 | categories: |
| 2155 | - data-collection.applications |
| 2156 | keywords: [ ] |
| 2157 | overview: |
| 2158 | <<: *overview |
| 2159 | data_collection: |
| 2160 | metrics_description: | |
| 2161 | Track BungeeCord proxy server metrics for efficient load balancing and performance management. |
| 2162 | method_description: | |
| 2163 | Metrics are gathered by periodically sending HTTP requests to [BungeeCord Prometheus Exporter](https://github.com/weihao/bungeecord-prometheus-exporter). |
| 2164 | setup: |
| 2165 | <<: *setup |
| 2166 | prerequisites: |
| 2167 | list: |
| 2168 | - title: Install Exporter |
| 2169 | description: | |
| 2170 | Install [BungeeCord Prometheus Exporter](https://github.com/weihao/bungeecord-prometheus-exporter) by following the instructions mentioned in the exporter README. |
| 2171 | - <<: *module |
| 2172 | meta: |
| 2173 | <<: *meta |
| 2174 | id: collector-go.d.plugin-prometheus-celery |
| 2175 | community: true |
| 2176 | monitored_instance: |
| 2177 | name: Celery |
| 2178 | link: https://github.com/ZeitOnline/celery_redis_prometheus |
| 2179 | icon_filename: celery.png |
| 2180 | categories: |
| 2181 | - data-collection.applications |
| 2182 | keywords: [ ] |
| 2183 | overview: |
| 2184 | <<: *overview |
| 2185 | data_collection: |
| 2186 | metrics_description: | |
| 2187 | Keep an eye on Celery task queue metrics for optimized task processing and resource management. |
| 2188 | method_description: | |
| 2189 | Metrics are gathered by periodically sending HTTP requests to [Celery Exporter](https://github.com/ZeitOnline/celery_redis_prometheus). |
| 2190 | setup: |
| 2191 | <<: *setup |
| 2192 | prerequisites: |
| 2193 | list: |
| 2194 | - title: Install Exporter |
| 2195 | description: | |
| 2196 | Install [Celery Exporter](https://github.com/ZeitOnline/celery_redis_prometheus) by following the instructions mentioned in the exporter README. |
| 2197 | - <<: *module |
| 2198 | meta: |
| 2199 | <<: *meta |
| 2200 | id: collector-go.d.plugin-prometheus-chia |
| 2201 | community: true |
| 2202 | monitored_instance: |
| 2203 | name: Chia |
| 2204 | link: https://github.com/chia-network/chia-exporter |
| 2205 | icon_filename: chia.png |
| 2206 | categories: |
| 2207 | - data-collection.applications |
| 2208 | keywords: [ ] |
| 2209 | overview: |
| 2210 | <<: *overview |
| 2211 | data_collection: |
| 2212 | metrics_description: | |
| 2213 | Track Chia blockchain metrics for optimized farming and resource allocation. |
| 2214 | method_description: | |
| 2215 | Metrics are gathered by periodically sending HTTP requests to [Chia Exporter](https://github.com/chia-network/chia-exporter). |
| 2216 | setup: |
| 2217 | <<: *setup |
| 2218 | prerequisites: |
| 2219 | list: |
| 2220 | - title: Install Exporter |
| 2221 | description: | |
| 2222 | Install [Chia Exporter](https://github.com/chia-network/chia-exporter) by following the instructions mentioned in the exporter README. |
| 2223 | - <<: *module |
| 2224 | meta: |
| 2225 | <<: *meta |
| 2226 | id: collector-go.d.plugin-prometheus-clm5ip |
| 2227 | community: true |
| 2228 | monitored_instance: |
| 2229 | name: Christ Elektronik CLM5IP power panel |
| 2230 | link: https://github.com/christmann/clm5ip_exporter/ |
| 2231 | icon_filename: christelec.png |
| 2232 | categories: |
| 2233 | - data-collection.hardware-and-sensors |
| 2234 | keywords: [ ] |
| 2235 | overview: |
| 2236 | <<: *overview |
| 2237 | data_collection: |
| 2238 | metrics_description: | |
| 2239 | Monitor Christ Elektronik CLM5IP device metrics for efficient performance and diagnostics. |
| 2240 | method_description: | |
| 2241 | Metrics are gathered by periodically sending HTTP requests to [Christ Elektronik CLM5IP Exporter](https://github.com/christmann/clm5ip_exporter/). |
| 2242 | setup: |
| 2243 | <<: *setup |
| 2244 | prerequisites: |
| 2245 | list: |
| 2246 | - title: Install Exporter |
| 2247 | description: | |
| 2248 | Install [Christ Elektronik CLM5IP Exporter](https://github.com/christmann/clm5ip_exporter/) by following the instructions mentioned in the exporter README. |
| 2249 | - <<: *module |
| 2250 | meta: |
| 2251 | <<: *meta |
| 2252 | id: collector-go.d.plugin-prometheus-clamd |
| 2253 | community: true |
| 2254 | monitored_instance: |
| 2255 | name: ClamAV daemon |
| 2256 | link: https://github.com/sergeymakinen/clamav_exporter |
| 2257 | icon_filename: clamav.png |
| 2258 | categories: |
| 2259 | - data-collection.applications |
| 2260 | keywords: [ ] |
| 2261 | overview: |
| 2262 | <<: *overview |
| 2263 | data_collection: |
| 2264 | metrics_description: | |
| 2265 | Track ClamAV antivirus metrics for enhanced threat detection and management. |
| 2266 | method_description: | |
| 2267 | Metrics are gathered by periodically sending HTTP requests to [ClamAV daemon stats exporter](https://github.com/sergeymakinen/clamav_exporter). |
| 2268 | setup: |
| 2269 | <<: *setup |
| 2270 | prerequisites: |
| 2271 | list: |
| 2272 | - title: Install Exporter |
| 2273 | description: | |
| 2274 | Install [ClamAV daemon stats exporter](https://github.com/sergeymakinen/clamav_exporter) by following the instructions mentioned in the exporter README. |
| 2275 | - <<: *module |
| 2276 | meta: |
| 2277 | <<: *meta |
| 2278 | id: collector-go.d.plugin-prometheus-clamscan |
| 2279 | community: true |
| 2280 | monitored_instance: |
| 2281 | name: Clamscan results |
| 2282 | link: https://github.com/FortnoxAB/clamscan-exporter |
| 2283 | icon_filename: clamav.png |
| 2284 | categories: |
| 2285 | - data-collection.applications |
| 2286 | keywords: [ ] |
| 2287 | overview: |
| 2288 | <<: *overview |
| 2289 | data_collection: |
| 2290 | metrics_description: | |
| 2291 | Monitor ClamAV scanning performance metrics for efficient malware detection and analysis. |
| 2292 | method_description: | |
| 2293 | Metrics are gathered by periodically sending HTTP requests to [clamscan-exporter](https://github.com/FortnoxAB/clamscan-exporter). |
| 2294 | setup: |
| 2295 | <<: *setup |
| 2296 | prerequisites: |
| 2297 | list: |
| 2298 | - title: Install Exporter |
| 2299 | description: | |
| 2300 | Install [clamscan-exporter](https://github.com/FortnoxAB/clamscan-exporter) by following the instructions mentioned in the exporter README. |
| 2301 | - <<: *module |
| 2302 | meta: |
| 2303 | <<: *meta |
| 2304 | id: collector-go.d.plugin-prometheus-clash |
| 2305 | community: true |
| 2306 | monitored_instance: |
| 2307 | name: Clash |
| 2308 | link: https://github.com/elonzh/clash_exporter |
| 2309 | icon_filename: clash.png |
| 2310 | categories: |
| 2311 | - data-collection.networking |
| 2312 | keywords: [ ] |
| 2313 | overview: |
| 2314 | <<: *overview |
| 2315 | data_collection: |
| 2316 | metrics_description: | |
| 2317 | Keep an eye on Clash proxy server metrics for optimized network performance and management. |
| 2318 | method_description: | |
| 2319 | Metrics are gathered by periodically sending HTTP requests to [Clash exporter](https://github.com/elonzh/clash_exporter). |
| 2320 | setup: |
| 2321 | <<: *setup |
| 2322 | prerequisites: |
| 2323 | list: |
| 2324 | - title: Install Exporter |
| 2325 | description: | |
| 2326 | Install [Clash exporter](https://github.com/elonzh/clash_exporter) by following the instructions mentioned in the exporter README. |
| 2327 | - <<: *module |
| 2328 | meta: |
| 2329 | <<: *meta |
| 2330 | id: collector-go.d.plugin-prometheus-cloud_foundry |
| 2331 | community: true |
| 2332 | monitored_instance: |
| 2333 | name: Cloud Foundry |
| 2334 | link: https://github.com/bosh-prometheus/cf_exporter |
| 2335 | icon_filename: cloud-foundry.svg |
| 2336 | categories: |
| 2337 | - data-collection.cloud-and-devops |
| 2338 | keywords: |
| 2339 | - cloud services |
| 2340 | - cloud computing |
| 2341 | - scalability |
| 2342 | overview: |
| 2343 | <<: *overview |
| 2344 | data_collection: |
| 2345 | metrics_description: | |
| 2346 | Track Cloud Foundry platform metrics for optimized application deployment and management. |
| 2347 | method_description: | |
| 2348 | Metrics are gathered by periodically sending HTTP requests to [Cloud Foundry exporter](https://github.com/bosh-prometheus/cf_exporter). |
| 2349 | setup: |
| 2350 | <<: *setup |
| 2351 | prerequisites: |
| 2352 | list: |
| 2353 | - title: Install Exporter |
| 2354 | description: | |
| 2355 | Install [Cloud Foundry exporter](https://github.com/bosh-prometheus/cf_exporter) by following the instructions mentioned in the exporter README. |
| 2356 | - <<: *module |
| 2357 | meta: |
| 2358 | <<: *meta |
| 2359 | id: collector-go.d.plugin-prometheus-cloud_foundry_firebase |
| 2360 | community: true |
| 2361 | monitored_instance: |
| 2362 | name: Cloud Foundry Firehose |
| 2363 | link: https://github.com/bosh-prometheus/firehose_exporter |
| 2364 | icon_filename: cloud-foundry.svg |
| 2365 | categories: |
| 2366 | - data-collection.cloud-and-devops |
| 2367 | keywords: |
| 2368 | - cloud services |
| 2369 | - cloud computing |
| 2370 | - scalability |
| 2371 | overview: |
| 2372 | <<: *overview |
| 2373 | data_collection: |
| 2374 | metrics_description: | |
| 2375 | Monitor Cloud Foundry Firehose metrics for comprehensive platform diagnostics and management. |
| 2376 | method_description: | |
| 2377 | Metrics are gathered by periodically sending HTTP requests to [Cloud Foundry Firehose exporter](https://github.com/bosh-prometheus/firehose_exporter). |
| 2378 | setup: |
| 2379 | <<: *setup |
| 2380 | prerequisites: |
| 2381 | list: |
| 2382 | - title: Install Exporter |
| 2383 | description: | |
| 2384 | Install [Cloud Foundry Firehose exporter](https://github.com/bosh-prometheus/firehose_exporter) by following the instructions mentioned in the exporter README. |
| 2385 | - <<: *module |
| 2386 | meta: |
| 2387 | <<: *meta |
| 2388 | id: collector-go.d.plugin-prometheus-lustre |
| 2389 | community: true |
| 2390 | monitored_instance: |
| 2391 | name: Lustre metadata |
| 2392 | link: https://github.com/GSI-HPC/prometheus-cluster-exporter |
| 2393 | icon_filename: lustre.png |
| 2394 | categories: |
| 2395 | - data-collection.storage |
| 2396 | keywords: [ ] |
| 2397 | overview: |
| 2398 | <<: *overview |
| 2399 | data_collection: |
| 2400 | metrics_description: | |
| 2401 | Keep tabs on Lustre clustered file system for efficient management and performance. |
| 2402 | method_description: | |
| 2403 | Metrics are gathered by periodically sending HTTP requests to [Cluster Exporter](https://github.com/GSI-HPC/prometheus-cluster-exporter). |
| 2404 | setup: |
| 2405 | <<: *setup |
| 2406 | prerequisites: |
| 2407 | list: |
| 2408 | - title: Install Exporter |
| 2409 | description: | |
| 2410 | Install [Cluster Exporter](https://github.com/GSI-HPC/prometheus-cluster-exporter) by following the instructions mentioned in the exporter README. |
| 2411 | - <<: *module |
| 2412 | meta: |
| 2413 | <<: *meta |
| 2414 | id: collector-go.d.plugin-prometheus-cmon |
| 2415 | community: true |
| 2416 | monitored_instance: |
| 2417 | name: ClusterControl CMON |
| 2418 | link: https://github.com/severalnines/cmon_exporter |
| 2419 | icon_filename: cluster-control.svg |
| 2420 | categories: |
| 2421 | - data-collection.databases |
| 2422 | keywords: [ ] |
| 2423 | overview: |
| 2424 | <<: *overview |
| 2425 | data_collection: |
| 2426 | metrics_description: | |
| 2427 | Track CMON metrics for Severalnines Cluster Control for efficient monitoring and management of database operations. |
| 2428 | method_description: | |
| 2429 | Metrics are gathered by periodically sending HTTP requests to [CMON Exporter](https://github.com/severalnines/cmon_exporter). |
| 2430 | setup: |
| 2431 | <<: *setup |
| 2432 | prerequisites: |
| 2433 | list: |
| 2434 | - title: Install Exporter |
| 2435 | description: | |
| 2436 | Install [CMON Exporter](https://github.com/severalnines/cmon_exporter) by following the instructions mentioned in the exporter README. |
| 2437 | - <<: *module |
| 2438 | meta: |
| 2439 | <<: *meta |
| 2440 | id: collector-go.d.plugin-prometheus-collectd |
| 2441 | community: true |
| 2442 | monitored_instance: |
| 2443 | name: Collectd |
| 2444 | link: https://github.com/prometheus/collectd_exporter |
| 2445 | icon_filename: collectd.png |
| 2446 | categories: |
| 2447 | - data-collection.applications |
| 2448 | keywords: [ ] |
| 2449 | overview: |
| 2450 | <<: *overview |
| 2451 | data_collection: |
| 2452 | metrics_description: | |
| 2453 | Monitor system and application metrics with Collectd for comprehensive performance analysis. |
| 2454 | method_description: | |
| 2455 | Metrics are gathered by periodically sending HTTP requests to [Collectd exporter](https://github.com/prometheus/collectd_exporter). |
| 2456 | setup: |
| 2457 | <<: *setup |
| 2458 | prerequisites: |
| 2459 | list: |
| 2460 | - title: Install Exporter |
| 2461 | description: | |
| 2462 | Install [Collectd exporter](https://github.com/prometheus/collectd_exporter) by following the instructions mentioned in the exporter README. |
| 2463 | - <<: *module |
| 2464 | meta: |
| 2465 | <<: *meta |
| 2466 | id: collector-go.d.plugin-prometheus-ftbeerpi |
| 2467 | community: true |
| 2468 | monitored_instance: |
| 2469 | name: CraftBeerPi |
| 2470 | link: https://github.com/jo-hannes/craftbeerpi_exporter |
| 2471 | icon_filename: craftbeer.png |
| 2472 | categories: |
| 2473 | - data-collection.hardware-and-sensors |
| 2474 | keywords: [ ] |
| 2475 | overview: |
| 2476 | <<: *overview |
| 2477 | data_collection: |
| 2478 | metrics_description: | |
| 2479 | Keep an eye on CraftBeerPi homebrewing metrics for optimized brewing process management. |
| 2480 | method_description: | |
| 2481 | Metrics are gathered by periodically sending HTTP requests to [CraftBeerPi exporter](https://github.com/jo-hannes/craftbeerpi_exporter). |
| 2482 | setup: |
| 2483 | <<: *setup |
| 2484 | prerequisites: |
| 2485 | list: |
| 2486 | - title: Install Exporter |
| 2487 | description: | |
| 2488 | Install [CraftBeerPi exporter](https://github.com/jo-hannes/craftbeerpi_exporter) by following the instructions mentioned in the exporter README. |
| 2489 | - <<: *module |
| 2490 | meta: |
| 2491 | id: collector-go.d.plugin-prometheus-cryptowatch |
| 2492 | <<: *meta |
| 2493 | community: true |
| 2494 | monitored_instance: |
| 2495 | name: Cryptowatch |
| 2496 | link: https://github.com/nbarrientos/cryptowat_exporter |
| 2497 | icon_filename: cryptowatch.png |
| 2498 | categories: |
| 2499 | - data-collection.applications |
| 2500 | keywords: [ ] |
| 2501 | overview: |
| 2502 | <<: *overview |
| 2503 | data_collection: |
| 2504 | metrics_description: | |
| 2505 | Keep tabs on Cryptowatch market data metrics for comprehensive cryptocurrency market analysis. |
| 2506 | method_description: | |
| 2507 | Metrics are gathered by periodically sending HTTP requests to [Cryptowat Exporter](https://github.com/nbarrientos/cryptowat_exporter). |
| 2508 | setup: |
| 2509 | <<: *setup |
| 2510 | prerequisites: |
| 2511 | list: |
| 2512 | - title: Install Exporter |
| 2513 | description: | |
| 2514 | Install [Cryptowat Exporter](https://github.com/nbarrientos/cryptowat_exporter) by following the instructions mentioned in the exporter README. |
| 2515 | - <<: *module |
| 2516 | meta: |
| 2517 | id: collector-go.d.plugin-prometheus-dmarc |
| 2518 | <<: *meta |
| 2519 | community: true |
| 2520 | monitored_instance: |
| 2521 | name: DMARC |
| 2522 | link: https://github.com/jgosmann/dmarc-metrics-exporter |
| 2523 | icon_filename: dmarc.png |
| 2524 | categories: |
| 2525 | - data-collection.applications |
| 2526 | keywords: |
| 2527 | - email authentication |
| 2528 | - policy |
| 2529 | - reporting |
| 2530 | overview: |
| 2531 | <<: *overview |
| 2532 | data_collection: |
| 2533 | metrics_description: | |
| 2534 | Track DMARC email authentication metrics for improved email security and deliverability. |
| 2535 | method_description: | |
| 2536 | Metrics are gathered by periodically sending HTTP requests to [dmarc-metrics-exporter](https://github.com/jgosmann/dmarc-metrics-exporter). |
| 2537 | setup: |
| 2538 | <<: *setup |
| 2539 | prerequisites: |
| 2540 | list: |
| 2541 | - title: Install Exporter |
| 2542 | description: | |
| 2543 | Install [dmarc-metrics-exporter](https://github.com/jgosmann/dmarc-metrics-exporter) by following the instructions mentioned in the exporter README. |
| 2544 | - <<: *module |
| 2545 | meta: |
| 2546 | id: collector-go.d.plugin-prometheus-dnsbl |
| 2547 | <<: *meta |
| 2548 | community: true |
| 2549 | monitored_instance: |
| 2550 | name: DNSBL |
| 2551 | link: https://github.com/Luzilla/dnsbl_exporter/ |
| 2552 | icon_filename: dnsbl.png |
| 2553 | categories: |
| 2554 | - data-collection.networking |
| 2555 | keywords: [ ] |
| 2556 | overview: |
| 2557 | <<: *overview |
| 2558 | data_collection: |
| 2559 | metrics_description: | |
| 2560 | Monitor DNSBL metrics for efficient domain reputation and security management. |
| 2561 | method_description: | |
| 2562 | Metrics are gathered by periodically sending HTTP requests to [dnsbl-exporter](https://github.com/Luzilla/dnsbl_exporter/). |
| 2563 | setup: |
| 2564 | <<: *setup |
| 2565 | prerequisites: |
| 2566 | list: |
| 2567 | - title: Install Exporter |
| 2568 | description: | |
| 2569 | Install [dnsbl-exporter](https://github.com/Luzilla/dnsbl_exporter/) by following the instructions mentioned in the exporter README. |
| 2570 | |
| 2571 | |
| 2572 | - <<: *module |
| 2573 | meta: |
| 2574 | id: collector-go.d.plugin-prometheus-bird |
| 2575 | <<: *meta |
| 2576 | community: true |
| 2577 | monitored_instance: |
| 2578 | name: Bird Routing Daemon |
| 2579 | link: https://github.com/czerwonk/bird_exporter |
| 2580 | icon_filename: bird.png |
| 2581 | categories: |
| 2582 | - data-collection.networking |
| 2583 | keywords: [ ] |
| 2584 | overview: |
| 2585 | <<: *overview |
| 2586 | data_collection: |
| 2587 | metrics_description: | |
| 2588 | Keep an eye on Bird Routing Daemon metrics for optimized network routing and management. |
| 2589 | method_description: | |
| 2590 | Metrics are gathered by periodically sending HTTP requests to [Bird Routing Daemon Exporter](https://github.com/czerwonk/bird_exporter). |
| 2591 | setup: |
| 2592 | <<: *setup |
| 2593 | prerequisites: |
| 2594 | list: |
| 2595 | - title: Install Exporter |
| 2596 | description: | |
| 2597 | Install [Bird Routing Daemon Exporter](https://github.com/czerwonk/bird_exporter) by following the instructions mentioned in the exporter README. |
| 2598 | - <<: *module |
| 2599 | meta: |
| 2600 | <<: *meta |
| 2601 | id: collector-go.d.plugin-prometheus-elgato_keylight |
| 2602 | community: true |
| 2603 | monitored_instance: |
| 2604 | name: Elgato Key Light devices. |
| 2605 | link: https://github.com/mdlayher/keylight_exporter |
| 2606 | icon_filename: elgato.svg |
| 2607 | categories: |
| 2608 | - data-collection.hardware-and-sensors |
| 2609 | keywords: [ ] |
| 2610 | overview: |
| 2611 | <<: *overview |
| 2612 | data_collection: |
| 2613 | metrics_description: | |
| 2614 | Keep tabs on Elgato Key Light metrics for optimized lighting control and management. |
| 2615 | method_description: | |
| 2616 | Metrics are gathered by periodically sending HTTP requests to [Elgato Key Light exporter](https://github.com/mdlayher/keylight_exporter). |
| 2617 | setup: |
| 2618 | <<: *setup |
| 2619 | prerequisites: |
| 2620 | list: |
| 2621 | - title: Install Exporter |
| 2622 | description: | |
| 2623 | Install [Elgato Key Light exporter](https://github.com/mdlayher/keylight_exporter) by following the instructions mentioned in the exporter README. |
| 2624 | - <<: *module |
| 2625 | meta: |
| 2626 | <<: *meta |
| 2627 | id: collector-go.d.plugin-prometheus-energomera |
| 2628 | community: true |
| 2629 | monitored_instance: |
| 2630 | name: Energomera smart power meters |
| 2631 | link: https://github.com/peak-load/energomera_exporter |
| 2632 | icon_filename: energomera.png |
| 2633 | categories: |
| 2634 | - data-collection.hardware-and-sensors |
| 2635 | keywords: [ ] |
| 2636 | overview: |
| 2637 | <<: *overview |
| 2638 | data_collection: |
| 2639 | metrics_description: | |
| 2640 | Track Energomera electricity meter metrics for efficient energy management and monitoring. |
| 2641 | method_description: | |
| 2642 | Metrics are gathered by periodically sending HTTP requests to [Energomera electricity meter exporter](https://github.com/peak-load/energomera_exporter). |
| 2643 | setup: |
| 2644 | <<: *setup |
| 2645 | prerequisites: |
| 2646 | list: |
| 2647 | - title: Install Exporter |
| 2648 | description: | |
| 2649 | Install [energomera-exporter Energomera electricity meter exporter](https://github.com/peak-load/energomera_exporter) by following the instructions mentioned in the exporter README. |
| 2650 | - <<: *module |
| 2651 | meta: |
| 2652 | <<: *meta |
| 2653 | id: collector-go.d.plugin-prometheus-fastd |
| 2654 | community: true |
| 2655 | monitored_instance: |
| 2656 | name: Fastd |
| 2657 | link: https://github.com/freifunk-darmstadt/fastd-exporter |
| 2658 | icon_filename: fastd.png |
| 2659 | categories: |
| 2660 | - data-collection.networking |
| 2661 | keywords: [ ] |
| 2662 | overview: |
| 2663 | <<: *overview |
| 2664 | data_collection: |
| 2665 | metrics_description: | |
| 2666 | Monitor Fastd VPN metrics for efficient virtual private network management and performance. |
| 2667 | method_description: | |
| 2668 | Metrics are gathered by periodically sending HTTP requests to [Fastd Exporter](https://github.com/freifunk-darmstadt/fastd-exporter). |
| 2669 | setup: |
| 2670 | <<: *setup |
| 2671 | prerequisites: |
| 2672 | list: |
| 2673 | - title: Install Exporter |
| 2674 | description: | |
| 2675 | Install [Fastd Exporter](https://github.com/freifunk-darmstadt/fastd-exporter) by following the instructions mentioned in the exporter README. |
| 2676 | - <<: *module |
| 2677 | meta: |
| 2678 | <<: *meta |
| 2679 | id: collector-go.d.plugin-prometheus-freifunk |
| 2680 | community: true |
| 2681 | monitored_instance: |
| 2682 | name: Freifunk network |
| 2683 | link: https://github.com/xperimental/freifunk-exporter |
| 2684 | icon_filename: freifunk.png |
| 2685 | categories: |
| 2686 | - data-collection.networking |
| 2687 | keywords: [ ] |
| 2688 | overview: |
| 2689 | <<: *overview |
| 2690 | data_collection: |
| 2691 | metrics_description: | |
| 2692 | Keep tabs on Freifunk community network metrics for optimized network performance and management. |
| 2693 | method_description: | |
| 2694 | Metrics are gathered by periodically sending HTTP requests to [Freifunk Exporter](https://github.com/xperimental/freifunk-exporter). |
| 2695 | setup: |
| 2696 | <<: *setup |
| 2697 | prerequisites: |
| 2698 | list: |
| 2699 | - title: Install Exporter |
| 2700 | description: | |
| 2701 | Install [Freifunk Exporter](https://github.com/xperimental/freifunk-exporter) by following the instructions mentioned in the exporter README. |
| 2702 | - <<: *module |
| 2703 | meta: |
| 2704 | <<: *meta |
| 2705 | id: collector-go.d.plugin-prometheus-frrouting |
| 2706 | community: true |
| 2707 | monitored_instance: |
| 2708 | name: FRRouting |
| 2709 | link: https://github.com/tynany/frr_exporter |
| 2710 | icon_filename: frrouting.png |
| 2711 | categories: |
| 2712 | - data-collection.networking |
| 2713 | keywords: [ ] |
| 2714 | overview: |
| 2715 | <<: *overview |
| 2716 | data_collection: |
| 2717 | metrics_description: | |
| 2718 | Monitor Free Range Routing (FRR) metrics for optimized network routing and management. |
| 2719 | method_description: | |
| 2720 | Metrics are gathered by periodically sending HTTP requests to [FRRouting Exporter](https://github.com/tynany/frr_exporter). |
| 2721 | setup: |
| 2722 | <<: *setup |
| 2723 | prerequisites: |
| 2724 | list: |
| 2725 | - title: Install Exporter |
| 2726 | description: | |
| 2727 | Install [FRRouting Exporter](https://github.com/tynany/frr_exporter) by following the instructions mentioned in the exporter README. |
| 2728 | - <<: *module |
| 2729 | meta: |
| 2730 | <<: *meta |
| 2731 | id: collector-go.d.plugin-prometheus-github_ratelimit |
| 2732 | community: true |
| 2733 | monitored_instance: |
| 2734 | name: GitHub API rate limit |
| 2735 | link: https://github.com/lunarway/github-ratelimit-exporter |
| 2736 | icon_filename: github.svg |
| 2737 | categories: |
| 2738 | - data-collection.applications |
| 2739 | keywords: [ ] |
| 2740 | overview: |
| 2741 | <<: *overview |
| 2742 | data_collection: |
| 2743 | metrics_description: | |
| 2744 | Monitor GitHub API rate limit metrics for efficient |
| 2745 | API usage and management. |
| 2746 | method_description: | |
| 2747 | Metrics are gathered by periodically sending HTTP requests to [GitHub API rate limit Exporter](https://github.com/lunarway/github-ratelimit-exporter). |
| 2748 | setup: |
| 2749 | <<: *setup |
| 2750 | prerequisites: |
| 2751 | list: |
| 2752 | - title: Install Exporter |
| 2753 | description: | |
| 2754 | Install [GitHub API rate limit Exporter](https://github.com/lunarway/github-ratelimit-exporter) by following the instructions mentioned in the exporter README. |
| 2755 | - <<: *module |
| 2756 | meta: |
| 2757 | <<: *meta |
| 2758 | id: collector-go.d.plugin-prometheus-gpsd |
| 2759 | community: true |
| 2760 | monitored_instance: |
| 2761 | name: gpsd |
| 2762 | link: https://github.com/natesales/gpsd-exporter |
| 2763 | icon_filename: gpsd.png |
| 2764 | categories: |
| 2765 | - data-collection.applications |
| 2766 | keywords: [ ] |
| 2767 | overview: |
| 2768 | <<: *overview |
| 2769 | data_collection: |
| 2770 | metrics_description: | |
| 2771 | Monitor GPSD (GPS daemon) metrics for efficient GPS data management and performance. |
| 2772 | method_description: | |
| 2773 | Metrics are gathered by periodically sending HTTP requests to [gpsd exporter](https://github.com/natesales/gpsd-exporter). |
| 2774 | setup: |
| 2775 | <<: *setup |
| 2776 | prerequisites: |
| 2777 | list: |
| 2778 | - title: Install Exporter |
| 2779 | description: | |
| 2780 | Install [gpsd exporter](https://github.com/natesales/gpsd-exporter) by following the instructions mentioned in the exporter README. |
| 2781 | - <<: *module |
| 2782 | meta: |
| 2783 | <<: *meta |
| 2784 | id: collector-go.d.plugin-prometheus-halon |
| 2785 | community: true |
| 2786 | monitored_instance: |
| 2787 | name: Halon |
| 2788 | link: https://github.com/tobiasbp/halon_exporter |
| 2789 | icon_filename: halon.svg |
| 2790 | categories: |
| 2791 | - data-collection.applications |
| 2792 | keywords: [ ] |
| 2793 | overview: |
| 2794 | <<: *overview |
| 2795 | data_collection: |
| 2796 | metrics_description: | |
| 2797 | Monitor Halon email security and delivery metrics for optimized email management and protection. |
| 2798 | method_description: | |
| 2799 | Metrics are gathered by periodically sending HTTP requests to [Halon exporter](https://github.com/tobiasbp/halon_exporter). |
| 2800 | setup: |
| 2801 | <<: *setup |
| 2802 | prerequisites: |
| 2803 | list: |
| 2804 | - title: Install Exporter |
| 2805 | description: | |
| 2806 | Install [Halon exporter](https://github.com/tobiasbp/halon_exporter) by following the instructions mentioned in the exporter README. |
| 2807 | - <<: *module |
| 2808 | meta: |
| 2809 | <<: *meta |
| 2810 | id: collector-go.d.plugin-prometheus-hitron_coda |
| 2811 | community: true |
| 2812 | monitored_instance: |
| 2813 | name: Hitron CODA Cable Modem |
| 2814 | link: https://github.com/hairyhenderson/hitron_coda_exporter |
| 2815 | icon_filename: hitron.svg |
| 2816 | categories: |
| 2817 | - data-collection.networking |
| 2818 | keywords: [ ] |
| 2819 | overview: |
| 2820 | <<: *overview |
| 2821 | data_collection: |
| 2822 | metrics_description: | |
| 2823 | Track Hitron CODA cable modem metrics for optimized internet connectivity and performance. |
| 2824 | method_description: | |
| 2825 | Metrics are gathered by periodically sending HTTP requests to [Hitron CODA Cable Modem Exporter](https://github.com/hairyhenderson/hitron_coda_exporter). |
| 2826 | setup: |
| 2827 | <<: *setup |
| 2828 | prerequisites: |
| 2829 | list: |
| 2830 | - title: Install Exporter |
| 2831 | description: | |
| 2832 | Install [Hitron CODA Cable Modem Exporter](https://github.com/hairyhenderson/hitron_coda_exporter) by following the instructions mentioned in the exporter README. |
| 2833 | - <<: *module |
| 2834 | meta: |
| 2835 | <<: *meta |
| 2836 | id: collector-go.d.plugin-prometheus-homebridge |
| 2837 | community: true |
| 2838 | monitored_instance: |
| 2839 | name: Homebridge |
| 2840 | link: https://github.com/lstrojny/homebridge-prometheus-exporter |
| 2841 | icon_filename: homebridge.svg |
| 2842 | categories: |
| 2843 | - data-collection.applications |
| 2844 | keywords: [ ] |
| 2845 | overview: |
| 2846 | <<: *overview |
| 2847 | data_collection: |
| 2848 | metrics_description: | |
| 2849 | Monitor Homebridge smart home metrics for efficient home automation management and performance. |
| 2850 | method_description: | |
| 2851 | Metrics are gathered by periodically sending HTTP requests to [Homebridge Prometheus Exporter](https://github.com/lstrojny/homebridge-prometheus-exporter). |
| 2852 | setup: |
| 2853 | <<: *setup |
| 2854 | prerequisites: |
| 2855 | list: |
| 2856 | - title: Install Exporter |
| 2857 | description: | |
| 2858 | Install [Homebridge Prometheus Exporter](https://github.com/lstrojny/homebridge-prometheus-exporter) by following the instructions mentioned in the exporter README. |
| 2859 | - <<: *module |
| 2860 | meta: |
| 2861 | <<: *meta |
| 2862 | id: collector-go.d.plugin-prometheus-homey |
| 2863 | community: true |
| 2864 | monitored_instance: |
| 2865 | name: Homey |
| 2866 | link: https://github.com/rickardp/homey-prometheus-exporter |
| 2867 | icon_filename: homey.svg |
| 2868 | categories: |
| 2869 | - data-collection.applications |
| 2870 | keywords: [ ] |
| 2871 | overview: |
| 2872 | <<: *overview |
| 2873 | data_collection: |
| 2874 | metrics_description: | |
| 2875 | Track Homey smart home controller metrics for efficient home automation and performance. |
| 2876 | method_description: | |
| 2877 | Metrics are gathered by periodically sending HTTP requests to [Homey Exporter](https://github.com/rickardp/homey-prometheus-exporter). |
| 2878 | setup: |
| 2879 | <<: *setup |
| 2880 | prerequisites: |
| 2881 | list: |
| 2882 | - title: Install Exporter |
| 2883 | description: | |
| 2884 | Install [Homey Exporter](https://github.com/rickardp/homey-prometheus-exporter) by following the instructions mentioned in the exporter README. |
| 2885 | - <<: *module |
| 2886 | meta: |
| 2887 | <<: *meta |
| 2888 | id: collector-go.d.plugin-prometheus-ibm_cex |
| 2889 | community: true |
| 2890 | monitored_instance: |
| 2891 | name: IBM CryptoExpress (CEX) cards |
| 2892 | link: https://github.com/ibm-s390-cloud/k8s-cex-dev-plugin |
| 2893 | icon_filename: ibm.svg |
| 2894 | categories: |
| 2895 | - data-collection.hardware-and-sensors |
| 2896 | keywords: [ ] |
| 2897 | overview: |
| 2898 | <<: *overview |
| 2899 | data_collection: |
| 2900 | metrics_description: | |
| 2901 | Track IBM Z Crypto Express device metrics for optimized cryptographic performance and management. |
| 2902 | method_description: | |
| 2903 | Metrics are gathered by periodically sending HTTP requests to [IBM Z CEX Device Plugin Prometheus Exporter](https://github.com/ibm-s390-cloud/k8s-cex-dev-plugin). |
| 2904 | setup: |
| 2905 | <<: *setup |
| 2906 | prerequisites: |
| 2907 | list: |
| 2908 | - title: Install Exporter |
| 2909 | description: | |
| 2910 | Install [IBM Z CEX Device Plugin Prometheus Exporter](https://github.com/ibm-s390-cloud/k8s-cex-dev-plugin) by following the instructions mentioned in the exporter README. |
| 2911 | - <<: *module |
| 2912 | meta: |
| 2913 | <<: *meta |
| 2914 | id: collector-go.d.plugin-prometheus-ibm_zhmc |
| 2915 | community: true |
| 2916 | monitored_instance: |
| 2917 | name: IBM Z Hardware Management Console |
| 2918 | link: https://github.com/zhmcclient/zhmc-prometheus-exporter |
| 2919 | icon_filename: ibm.svg |
| 2920 | categories: |
| 2921 | - data-collection.hardware-and-sensors |
| 2922 | keywords: [ ] |
| 2923 | overview: |
| 2924 | <<: *overview |
| 2925 | data_collection: |
| 2926 | metrics_description: | |
| 2927 | Monitor IBM Z Hardware Management Console metrics for efficient mainframe management and performance. |
| 2928 | method_description: | |
| 2929 | Metrics are gathered by periodically sending HTTP requests to [IBM Z HMC Exporter](https://github.com/zhmcclient/zhmc-prometheus-exporter). |
| 2930 | setup: |
| 2931 | <<: *setup |
| 2932 | prerequisites: |
| 2933 | list: |
| 2934 | - title: Install Exporter |
| 2935 | description: | |
| 2936 | Install [IBM Z HMC Exporter](https://github.com/zhmcclient/zhmc-prometheus-exporter) by following the instructions mentioned in the exporter README. |
| 2937 | - <<: *module |
| 2938 | meta: |
| 2939 | <<: *meta |
| 2940 | id: collector-go.d.plugin-prometheus-jarvis |
| 2941 | community: true |
| 2942 | monitored_instance: |
| 2943 | name: Jarvis Standing Desk |
| 2944 | link: https://github.com/hairyhenderson/jarvis_exporter/ |
| 2945 | icon_filename: jarvis.jpg |
| 2946 | categories: |
| 2947 | - data-collection.hardware-and-sensors |
| 2948 | keywords: [ ] |
| 2949 | overview: |
| 2950 | <<: *overview |
| 2951 | data_collection: |
| 2952 | metrics_description: | |
| 2953 | Track Jarvis standing desk usage metrics for efficient workspace ergonomics and management. |
| 2954 | method_description: | |
| 2955 | Metrics are gathered by periodically sending HTTP requests to [Jarvis Standing Desk Exporter](https://github.com/hairyhenderson/jarvis_exporter/). |
| 2956 | setup: |
| 2957 | <<: *setup |
| 2958 | prerequisites: |
| 2959 | list: |
| 2960 | - title: Install Exporter |
| 2961 | description: | |
| 2962 | Install [Jarvis Standing Desk Exporter](https://github.com/hairyhenderson/jarvis_exporter/) by following the instructions mentioned in the exporter README. |
| 2963 | |
| 2964 | - <<: *module |
| 2965 | meta: |
| 2966 | <<: *meta |
| 2967 | id: collector-go.d.plugin-prometheus-enclosure |
| 2968 | community: true |
| 2969 | monitored_instance: |
| 2970 | name: Generic storage enclosure tool |
| 2971 | link: https://github.com/Gandi/jbod-rs |
| 2972 | icon_filename: storage-enclosure.svg |
| 2973 | categories: |
| 2974 | - data-collection.storage |
| 2975 | keywords: [ ] |
| 2976 | overview: |
| 2977 | <<: *overview |
| 2978 | data_collection: |
| 2979 | metrics_description: | |
| 2980 | Monitor storage enclosure metrics for efficient storage device management and performance. |
| 2981 | method_description: | |
| 2982 | Metrics are gathered by periodically sending HTTP requests to [jbod - Generic storage enclosure tool](https://github.com/Gandi/jbod-rs). |
| 2983 | setup: |
| 2984 | <<: *setup |
| 2985 | prerequisites: |
| 2986 | list: |
| 2987 | - title: Install Exporter |
| 2988 | description: | |
| 2989 | Install [jbod - Generic storage enclosure tool](https://github.com/Gandi/jbod-rs) by following the instructions mentioned in the exporter README. |
| 2990 | - <<: *module |
| 2991 | meta: |
| 2992 | <<: *meta |
| 2993 | id: collector-go.d.plugin-prometheus-journald |
| 2994 | community: true |
| 2995 | monitored_instance: |
| 2996 | name: journald |
| 2997 | link: https://github.com/dead-claudia/journald-exporter |
| 2998 | icon_filename: linux.png |
| 2999 | categories: |
| 3000 | - data-collection.applications |
| 3001 | keywords: [ ] |
| 3002 | overview: |
| 3003 | <<: *overview |
| 3004 | data_collection: |
| 3005 | metrics_description: | |
| 3006 | Keep an eye on systemd-journald metrics for efficient log management and analysis. |
| 3007 | method_description: | |
| 3008 | Metrics are gathered by periodically sending HTTP requests to [journald-exporter](https://github.com/dead-claudia/journald-exporter). |
| 3009 | setup: |
| 3010 | <<: *setup |
| 3011 | prerequisites: |
| 3012 | list: |
| 3013 | - title: Install Exporter |
| 3014 | description: | |
| 3015 | Install [journald-exporter](https://github.com/dead-claudia/journald-exporter) by following the instructions mentioned in the exporter README. |
| 3016 | - <<: *module |
| 3017 | meta: |
| 3018 | <<: *meta |
| 3019 | id: collector-go.d.plugin-prometheus-kannel |
| 3020 | community: true |
| 3021 | monitored_instance: |
| 3022 | name: Kannel |
| 3023 | link: https://github.com/apostvav/kannel_exporter |
| 3024 | icon_filename: kannel.png |
| 3025 | categories: |
| 3026 | - data-collection.applications |
| 3027 | keywords: [ ] |
| 3028 | overview: |
| 3029 | <<: *overview |
| 3030 | data_collection: |
| 3031 | metrics_description: | |
| 3032 | Keep tabs on Kannel SMS gateway and WAP gateway metrics for efficient mobile communication and performance. |
| 3033 | method_description: | |
| 3034 | Metrics are gathered by periodically sending HTTP requests to [Kannel Exporter](https://github.com/apostvav/kannel_exporter). |
| 3035 | setup: |
| 3036 | <<: *setup |
| 3037 | prerequisites: |
| 3038 | list: |
| 3039 | - title: Install Exporter |
| 3040 | description: | |
| 3041 | Install [Kannel Exporter](https://github.com/apostvav/kannel_exporter) by following the instructions mentioned in the exporter README. |
| 3042 | - <<: *module |
| 3043 | meta: |
| 3044 | <<: *meta |
| 3045 | id: collector-go.d.plugin-prometheus-keepalived |
| 3046 | community: true |
| 3047 | monitored_instance: |
| 3048 | name: Keepalived |
| 3049 | link: https://github.com/gen2brain/keepalived_exporter |
| 3050 | icon_filename: Keepalived.png |
| 3051 | categories: |
| 3052 | - data-collection.networking |
| 3053 | keywords: [ ] |
| 3054 | overview: |
| 3055 | <<: *overview |
| 3056 | data_collection: |
| 3057 | metrics_description: | |
| 3058 | Track Keepalived metrics for efficient high-availability and load balancing management. |
| 3059 | method_description: | |
| 3060 | Metrics are gathered by periodically sending HTTP requests to [Keepalived Exporter](https://github.com/gen2brain/keepalived_exporter). |
| 3061 | setup: |
| 3062 | <<: *setup |
| 3063 | prerequisites: |
| 3064 | list: |
| 3065 | - title: Install Exporter |
| 3066 | description: | |
| 3067 | Install [Keepalived Exporter](https://github.com/gen2brain/keepalived_exporter) by following the instructions mentioned in the exporter README. |
| 3068 | - <<: *module |
| 3069 | meta: |
| 3070 | <<: *meta |
| 3071 | id: collector-go.d.plugin-prometheus-lynis |
| 3072 | community: true |
| 3073 | monitored_instance: |
| 3074 | name: Lynis audit reports |
| 3075 | link: https://github.com/MauveSoftware/lynis_exporter |
| 3076 | icon_filename: lynis.png |
| 3077 | categories: |
| 3078 | - data-collection.applications |
| 3079 | keywords: [ ] |
| 3080 | overview: |
| 3081 | <<: *overview |
| 3082 | data_collection: |
| 3083 | metrics_description: | |
| 3084 | Track Lynis security auditing tool metrics for efficient system security and compliance management. |
| 3085 | method_description: | |
| 3086 | Metrics are gathered by periodically sending HTTP requests to [lynis_exporter](https://github.com/MauveSoftware/lynis_exporter). |
| 3087 | setup: |
| 3088 | <<: *setup |
| 3089 | prerequisites: |
| 3090 | list: |
| 3091 | - title: Install Exporter |
| 3092 | description: | |
| 3093 | Install [lynis_exporter](https://github.com/MauveSoftware/lynis_exporter) by following the instructions mentioned in the exporter README. |
| 3094 | - <<: *module |
| 3095 | meta: |
| 3096 | <<: *meta |
| 3097 | id: collector-go.d.plugin-prometheus-meilisearch |
| 3098 | community: true |
| 3099 | monitored_instance: |
| 3100 | name: Meilisearch |
| 3101 | link: https://github.com/scottaglia/meilisearch_exporter |
| 3102 | icon_filename: meilisearch.svg |
| 3103 | categories: |
| 3104 | - data-collection.databases |
| 3105 | keywords: [ ] |
| 3106 | overview: |
| 3107 | <<: *overview |
| 3108 | data_collection: |
| 3109 | metrics_description: | |
| 3110 | Track Meilisearch search engine metrics for efficient search performance and management. |
| 3111 | method_description: | |
| 3112 | Metrics are gathered by periodically sending HTTP requests to [Meilisearch Exporter](https://github.com/scottaglia/meilisearch_exporter). |
| 3113 | setup: |
| 3114 | <<: *setup |
| 3115 | prerequisites: |
| 3116 | list: |
| 3117 | - title: Install Exporter |
| 3118 | description: | |
| 3119 | Install [Meilisearch Exporter](https://github.com/scottaglia/meilisearch_exporter) by following the instructions mentioned in the exporter README. |
| 3120 | - <<: *module |
| 3121 | meta: |
| 3122 | <<: *meta |
| 3123 | id: collector-go.d.plugin-prometheus-mesos |
| 3124 | community: true |
| 3125 | monitored_instance: |
| 3126 | name: Mesos |
| 3127 | link: http://github.com/mesosphere/mesos_exporter |
| 3128 | icon_filename: mesos.svg |
| 3129 | categories: |
| 3130 | - data-collection.containers-and-vms |
| 3131 | keywords: [ ] |
| 3132 | overview: |
| 3133 | <<: *overview |
| 3134 | data_collection: |
| 3135 | metrics_description: | |
| 3136 | Monitor Apache Mesos cluster manager metrics for efficient resource management and performance. |
| 3137 | method_description: | |
| 3138 | Metrics are gathered by periodically sending HTTP requests to [Mesos exporter](http://github.com/mesosphere/mesos_exporter). |
| 3139 | setup: |
| 3140 | <<: *setup |
| 3141 | prerequisites: |
| 3142 | list: |
| 3143 | - title: Install Exporter |
| 3144 | description: | |
| 3145 | Install [Mesos exporter](http://github.com/mesosphere/mesos_exporter) by following the instructions mentioned in the exporter README. |
| 3146 | - <<: *module |
| 3147 | meta: |
| 3148 | <<: *meta |
| 3149 | id: collector-go.d.plugin-prometheus-xiaomi_mi_flora |
| 3150 | community: true |
| 3151 | monitored_instance: |
| 3152 | name: Xiaomi Mi Flora |
| 3153 | link: https://github.com/xperimental/flowercare-exporter |
| 3154 | icon_filename: xiaomi.svg |
| 3155 | categories: |
| 3156 | - data-collection.hardware-and-sensors |
| 3157 | keywords: [ ] |
| 3158 | overview: |
| 3159 | <<: *overview |
| 3160 | data_collection: |
| 3161 | metrics_description: | |
| 3162 | Keep tabs on MiFlora plant monitor metrics for efficient plant care and growth management. |
| 3163 | method_description: | |
| 3164 | Metrics are gathered by periodically sending HTTP requests to [MiFlora / Flower Care Exporter](https://github.com/xperimental/flowercare-exporter). |
| 3165 | setup: |
| 3166 | <<: *setup |
| 3167 | prerequisites: |
| 3168 | list: |
| 3169 | - title: Install Exporter |
| 3170 | description: | |
| 3171 | Install [MiFlora / Flower Care Exporter](https://github.com/xperimental/flowercare-exporter) by following the instructions mentioned in the exporter README. |
| 3172 | - <<: *module |
| 3173 | meta: |
| 3174 | <<: *meta |
| 3175 | id: collector-go.d.plugin-prometheus-modbus_rtu |
| 3176 | community: true |
| 3177 | monitored_instance: |
| 3178 | name: Modbus protocol |
| 3179 | link: https://github.com/dernasherbrezon/modbusrtu_exporter |
| 3180 | icon_filename: modbus.svg |
| 3181 | categories: |
| 3182 | - data-collection.hardware-and-sensors |
| 3183 | keywords: |
| 3184 | - database |
| 3185 | - dbms |
| 3186 | - data storage |
| 3187 | overview: |
| 3188 | <<: *overview |
| 3189 | data_collection: |
| 3190 | metrics_description: | |
| 3191 | Track Modbus RTU protocol metrics for efficient industrial automation and control performance. |
| 3192 | method_description: | |
| 3193 | Metrics are gathered by periodically sending HTTP requests to [modbusrtu_exporter](https://github.com/dernasherbrezon/modbusrtu_exporter). |
| 3194 | setup: |
| 3195 | <<: *setup |
| 3196 | prerequisites: |
| 3197 | list: |
| 3198 | - title: Install Exporter |
| 3199 | description: | |
| 3200 | Install [modbusrtu_exporter](https://github.com/dernasherbrezon/modbusrtu_exporter) by following the instructions mentioned in the exporter README. |
| 3201 | - <<: *module |
| 3202 | meta: |
| 3203 | <<: *meta |
| 3204 | id: collector-go.d.plugin-prometheus-mogilefs |
| 3205 | community: true |
| 3206 | monitored_instance: |
| 3207 | name: MogileFS |
| 3208 | link: https://github.com/KKBOX/mogilefs-exporter |
| 3209 | icon_filename: filesystem.svg |
| 3210 | categories: |
| 3211 | - data-collection.storage |
| 3212 | keywords: [ ] |
| 3213 | overview: |
| 3214 | <<: *overview |
| 3215 | data_collection: |
| 3216 | metrics_description: | |
| 3217 | Monitor MogileFS distributed file system metrics for efficient storage management and performance. |
| 3218 | method_description: | |
| 3219 | Metrics are gathered by periodically sending HTTP requests to [MogileFS Exporter](https://github.com/KKBOX/mogilefs-exporter). |
| 3220 | setup: |
| 3221 | <<: *setup |
| 3222 | prerequisites: |
| 3223 | list: |
| 3224 | - title: Install Exporter |
| 3225 | description: | |
| 3226 | Install [MogileFS Exporter](https://github.com/KKBOX/mogilefs-exporter) by following the instructions mentioned in the exporter README. |
| 3227 | - <<: *module |
| 3228 | meta: |
| 3229 | <<: *meta |
| 3230 | id: collector-go.d.plugin-prometheus-mtail |
| 3231 | community: true |
| 3232 | monitored_instance: |
| 3233 | name: mtail |
| 3234 | link: https://github.com/google/mtail |
| 3235 | icon_filename: mtail.png |
| 3236 | categories: |
| 3237 | - data-collection.applications |
| 3238 | keywords: [ ] |
| 3239 | overview: |
| 3240 | <<: *overview |
| 3241 | data_collection: |
| 3242 | metrics_description: | |
| 3243 | Monitor log data metrics using mtail log data extractor and parser. |
| 3244 | method_description: | |
| 3245 | Metrics are gathered by periodically sending HTTP requests to [mtail](https://github.com/google/mtail). |
| 3246 | setup: |
| 3247 | <<: *setup |
| 3248 | prerequisites: |
| 3249 | list: |
| 3250 | - title: Install Exporter |
| 3251 | description: | |
| 3252 | Install [mtail](https://github.com/google/mtail) by following the instructions mentioned in the exporter README. |
| 3253 | - <<: *module |
| 3254 | meta: |
| 3255 | <<: *meta |
| 3256 | id: collector-go.d.plugin-prometheus-nature_remo |
| 3257 | community: true |
| 3258 | monitored_instance: |
| 3259 | name: Nature Remo E lite devices |
| 3260 | link: https://github.com/kenfdev/remo-exporter |
| 3261 | icon_filename: nature-remo.png |
| 3262 | categories: |
| 3263 | - data-collection.hardware-and-sensors |
| 3264 | keywords: [ ] |
| 3265 | overview: |
| 3266 | <<: *overview |
| 3267 | data_collection: |
| 3268 | metrics_description: | |
| 3269 | Monitor Nature Remo E series smart home device metrics for efficient home automation and energy management. |
| 3270 | method_description: | |
| 3271 | Metrics are gathered by periodically sending HTTP requests to [Nature Remo E series Exporter](https://github.com/kenfdev/remo-exporter). |
| 3272 | setup: |
| 3273 | <<: *setup |
| 3274 | prerequisites: |
| 3275 | list: |
| 3276 | - title: Install Exporter |
| 3277 | description: | |
| 3278 | Install [Nature Remo E series Exporter](https://github.com/kenfdev/remo-exporter) by following the instructions mentioned in the exporter README. |
| 3279 | - <<: *module |
| 3280 | meta: |
| 3281 | <<: *meta |
| 3282 | id: collector-go.d.plugin-prometheus-netatmo |
| 3283 | community: true |
| 3284 | monitored_instance: |
| 3285 | name: Netatmo sensors |
| 3286 | link: https://github.com/xperimental/netatmo-exporter |
| 3287 | icon_filename: netatmo.svg |
| 3288 | categories: |
| 3289 | - data-collection.hardware-and-sensors |
| 3290 | keywords: |
| 3291 | - network monitoring |
| 3292 | - network performance |
| 3293 | - traffic analysis |
| 3294 | overview: |
| 3295 | <<: *overview |
| 3296 | data_collection: |
| 3297 | metrics_description: | |
| 3298 | Keep an eye on Netatmo smart home device metrics for efficient home automation and energy management. |
| 3299 | method_description: | |
| 3300 | Metrics are gathered by periodically sending HTTP requests to [Netatmo exporter](https://github.com/xperimental/netatmo-exporter). |
| 3301 | setup: |
| 3302 | <<: *setup |
| 3303 | prerequisites: |
| 3304 | list: |
| 3305 | - title: Install Exporter |
| 3306 | description: | |
| 3307 | Install [Netatmo exporter](https://github.com/xperimental/netatmo-exporter) by following the instructions mentioned in the exporter README. |
| 3308 | - <<: *module |
| 3309 | meta: |
| 3310 | <<: *meta |
| 3311 | id: collector-go.d.plugin-prometheus-nextcloud |
| 3312 | community: true |
| 3313 | monitored_instance: |
| 3314 | name: Nextcloud servers |
| 3315 | link: https://github.com/xperimental/nextcloud-exporter |
| 3316 | icon_filename: nextcloud.png |
| 3317 | categories: |
| 3318 | - data-collection.applications |
| 3319 | keywords: |
| 3320 | - cloud services |
| 3321 | - cloud computing |
| 3322 | - scalability |
| 3323 | overview: |
| 3324 | <<: *overview |
| 3325 | data_collection: |
| 3326 | metrics_description: | |
| 3327 | Keep an eye on Nextcloud cloud storage metrics for efficient file hosting and management. |
| 3328 | method_description: | |
| 3329 | Metrics are gathered by periodically sending HTTP requests to [Nextcloud exporter](https://github.com/xperimental/nextcloud-exporter). |
| 3330 | setup: |
| 3331 | <<: *setup |
| 3332 | prerequisites: |
| 3333 | list: |
| 3334 | - title: Install Exporter |
| 3335 | description: | |
| 3336 | Install [Nextcloud exporter](https://github.com/xperimental/nextcloud-exporter) by following the instructions mentioned in the exporter README. |
| 3337 | - <<: *module |
| 3338 | meta: |
| 3339 | <<: *meta |
| 3340 | id: collector-go.d.plugin-prometheus-nextdns |
| 3341 | community: true |
| 3342 | monitored_instance: |
| 3343 | name: NextDNS |
| 3344 | link: https://github.com/raylas/nextdns-exporter |
| 3345 | icon_filename: nextdns.png |
| 3346 | categories: |
| 3347 | - data-collection.networking |
| 3348 | keywords: [ ] |
| 3349 | overview: |
| 3350 | <<: *overview |
| 3351 | data_collection: |
| 3352 | metrics_description: | |
| 3353 | Track NextDNS DNS resolver and security platform metrics for efficient DNS management and security. |
| 3354 | method_description: | |
| 3355 | Metrics are gathered by periodically sending HTTP requests to [nextdns-exporter](https://github.com/raylas/nextdns-exporter). |
| 3356 | setup: |
| 3357 | <<: *setup |
| 3358 | prerequisites: |
| 3359 | list: |
| 3360 | - title: Install Exporter |
| 3361 | description: | |
| 3362 | Install [nextdns-exporter](https://github.com/raylas/nextdns-exporter) by following the instructions mentioned in the exporter README. |
| 3363 | - <<: *module |
| 3364 | meta: |
| 3365 | <<: *meta |
| 3366 | id: collector-go.d.plugin-prometheus-ibm_aix_njmon |
| 3367 | community: true |
| 3368 | monitored_instance: |
| 3369 | name: IBM AIX systems Njmon |
| 3370 | link: https://github.com/crooks/njmon_exporter |
| 3371 | icon_filename: ibm.svg |
| 3372 | categories: |
| 3373 | - data-collection.applications |
| 3374 | keywords: [ ] |
| 3375 | overview: |
| 3376 | <<: *overview |
| 3377 | data_collection: |
| 3378 | metrics_description: | |
| 3379 | Keep an eye on NJmon system performance monitoring metrics for efficient IT infrastructure management and performance. |
| 3380 | method_description: | |
| 3381 | Metrics are gathered by periodically sending HTTP requests to [NJmon](https://github.com/crooks/njmon_exporter). |
| 3382 | setup: |
| 3383 | <<: *setup |
| 3384 | prerequisites: |
| 3385 | list: |
| 3386 | - title: Install Exporter |
| 3387 | description: | |
| 3388 | Install [NJmon](https://github.com/crooks/njmon_exporter) by following the instructions mentioned in the exporter README. |
| 3389 | - <<: *module |
| 3390 | meta: |
| 3391 | <<: *meta |
| 3392 | id: collector-go.d.plugin-prometheus-nrpe |
| 3393 | community: true |
| 3394 | monitored_instance: |
| 3395 | name: NRPE daemon |
| 3396 | link: https://github.com/canonical/nrpe_exporter |
| 3397 | icon_filename: nrpelinux.png |
| 3398 | categories: |
| 3399 | - data-collection.applications |
| 3400 | keywords: [ ] |
| 3401 | overview: |
| 3402 | <<: *overview |
| 3403 | data_collection: |
| 3404 | metrics_description: | |
| 3405 | Monitor Nagios Remote Plugin Executor (NRPE) metrics for efficient system and network monitoring. |
| 3406 | method_description: | |
| 3407 | Metrics are gathered by periodically sending HTTP requests to [NRPE exporter](https://github.com/canonical/nrpe_exporter). |
| 3408 | setup: |
| 3409 | <<: *setup |
| 3410 | prerequisites: |
| 3411 | list: |
| 3412 | - title: Install Exporter |
| 3413 | description: | |
| 3414 | Install [NRPE exporter](https://github.com/canonical/nrpe_exporter) by following the instructions mentioned in the exporter README. |
| 3415 | - <<: *module |
| 3416 | meta: |
| 3417 | <<: *meta |
| 3418 | id: collector-go.d.plugin-prometheus-obs_studio |
| 3419 | community: true |
| 3420 | monitored_instance: |
| 3421 | name: OBS Studio |
| 3422 | link: https://github.com/lukegb/obs_studio_exporter |
| 3423 | icon_filename: obs-studio.png |
| 3424 | categories: |
| 3425 | - data-collection.applications |
| 3426 | keywords: [ ] |
| 3427 | overview: |
| 3428 | <<: *overview |
| 3429 | data_collection: |
| 3430 | metrics_description: | |
| 3431 | Track OBS Studio live streaming and recording software metrics for efficient video production and performance. |
| 3432 | method_description: | |
| 3433 | Metrics are gathered by periodically sending HTTP requests to [OBS Studio Exporter](https://github.com/lukegb/obs_studio_exporter). |
| 3434 | setup: |
| 3435 | <<: *setup |
| 3436 | prerequisites: |
| 3437 | list: |
| 3438 | - title: Install Exporter |
| 3439 | description: | |
| 3440 | Install [OBS Studio Exporter](https://github.com/lukegb/obs_studio_exporter) by following the instructions mentioned in the exporter README. |
| 3441 | - <<: *module |
| 3442 | meta: |
| 3443 | <<: *meta |
| 3444 | id: collector-go.d.plugin-prometheus-openrc |
| 3445 | community: true |
| 3446 | monitored_instance: |
| 3447 | name: OpenRC |
| 3448 | link: https://git.sr.ht/~tomleb/openrc-exporter |
| 3449 | icon_filename: linux.png |
| 3450 | categories: |
| 3451 | - data-collection.operating-systems |
| 3452 | keywords: [ ] |
| 3453 | overview: |
| 3454 | <<: *overview |
| 3455 | data_collection: |
| 3456 | metrics_description: | |
| 3457 | Keep tabs on OpenRC init system metrics for efficient system startup and service management. |
| 3458 | method_description: | |
| 3459 | Metrics are gathered by periodically sending HTTP requests to [openrc-exporter](https://git.sr.ht/~tomleb/openrc-exporter). |
| 3460 | setup: |
| 3461 | <<: *setup |
| 3462 | prerequisites: |
| 3463 | list: |
| 3464 | - title: Install Exporter |
| 3465 | description: | |
| 3466 | Install [openrc-exporter](https://git.sr.ht/~tomleb/openrc-exporter) by following the instructions mentioned in the exporter README. |
| 3467 | - <<: *module |
| 3468 | meta: |
| 3469 | <<: *meta |
| 3470 | id: collector-go.d.plugin-prometheus-openroadm |
| 3471 | community: true |
| 3472 | monitored_instance: |
| 3473 | name: OpenROADM devices |
| 3474 | link: https://github.com/utdal/openroadm_exporter |
| 3475 | icon_filename: openroadm.png |
| 3476 | categories: |
| 3477 | - data-collection.networking |
| 3478 | keywords: |
| 3479 | - network monitoring |
| 3480 | - network performance |
| 3481 | - traffic analysis |
| 3482 | overview: |
| 3483 | <<: *overview |
| 3484 | data_collection: |
| 3485 | metrics_description: | |
| 3486 | Monitor OpenROADM optical transport network metrics using the NETCONF protocol for efficient network management and performance. |
| 3487 | method_description: | |
| 3488 | Metrics are gathered by periodically sending HTTP requests to [OpenROADM NETCONF Exporter WIP](https://github.com/utdal/openroadm_exporter). |
| 3489 | setup: |
| 3490 | <<: *setup |
| 3491 | prerequisites: |
| 3492 | list: |
| 3493 | - title: Install Exporter |
| 3494 | description: | |
| 3495 | Install [OpenROADM NETCONF Exporter WIP](https://github.com/utdal/openroadm_exporter) by following the instructions mentioned in the exporter README. |
| 3496 | - <<: *module |
| 3497 | meta: |
| 3498 | <<: *meta |
| 3499 | id: collector-go.d.plugin-prometheus-openweathermap |
| 3500 | community: true |
| 3501 | monitored_instance: |
| 3502 | name: OpenWeatherMap |
| 3503 | link: https://github.com/billykwooten/openweather-exporter |
| 3504 | icon_filename: openweather.png |
| 3505 | categories: |
| 3506 | - data-collection.applications |
| 3507 | keywords: [ ] |
| 3508 | overview: |
| 3509 | <<: *overview |
| 3510 | data_collection: |
| 3511 | metrics_description: | |
| 3512 | Track OpenWeatherMap weather data and air pollution metrics for efficient environmental monitoring and analysis. |
| 3513 | method_description: | |
| 3514 | Metrics are gathered by periodically sending HTTP requests to [OpenWeatherMap Exporter](https://github.com/billykwooten/openweather-exporter). |
| 3515 | setup: |
| 3516 | <<: *setup |
| 3517 | prerequisites: |
| 3518 | list: |
| 3519 | - title: Install Exporter |
| 3520 | description: | |
| 3521 | Install [OpenWeatherMap Exporter](https://github.com/billykwooten/openweather-exporter) by following the instructions mentioned in the exporter README. |
| 3522 | - <<: *module |
| 3523 | meta: |
| 3524 | <<: *meta |
| 3525 | id: collector-go.d.plugin-prometheus-dutch_electricity_smart_meter |
| 3526 | community: true |
| 3527 | monitored_instance: |
| 3528 | name: Dutch Electricity Smart Meter |
| 3529 | link: https://github.com/TobiasDeBruijn/prometheus-p1-exporter |
| 3530 | icon_filename: dutch-electricity.png |
| 3531 | categories: |
| 3532 | - data-collection.hardware-and-sensors |
| 3533 | keywords: [ ] |
| 3534 | overview: |
| 3535 | <<: *overview |
| 3536 | data_collection: |
| 3537 | metrics_description: | |
| 3538 | Keep tabs on Dutch smart meter P1 port metrics for efficient energy management and monitoring. |
| 3539 | method_description: | |
| 3540 | Metrics are gathered by periodically sending HTTP requests to [P1Exporter - Dutch Electricity Smart Meter Exporter](https://github.com/TobiasDeBruijn/prometheus-p1-exporter). |
| 3541 | setup: |
| 3542 | <<: *setup |
| 3543 | prerequisites: |
| 3544 | list: |
| 3545 | - title: Install Exporter |
| 3546 | description: | |
| 3547 | Install [P1Exporter - Dutch Electricity Smart Meter Exporter](https://github.com/TobiasDeBruijn/prometheus-p1-exporter) by following the instructions mentioned in the exporter README. |
| 3548 | |
| 3549 | - <<: *module |
| 3550 | meta: |
| 3551 | <<: *meta |
| 3552 | id: collector-go.d.plugin-prometheus-patroni |
| 3553 | community: true |
| 3554 | monitored_instance: |
| 3555 | name: Patroni |
| 3556 | link: https://github.com/gopaytech/patroni_exporter |
| 3557 | icon_filename: patroni.png |
| 3558 | categories: |
| 3559 | - data-collection.databases |
| 3560 | keywords: [ ] |
| 3561 | overview: |
| 3562 | <<: *overview |
| 3563 | data_collection: |
| 3564 | metrics_description: | |
| 3565 | Keep tabs on Patroni PostgreSQL high-availability metrics for efficient database management and performance. |
| 3566 | method_description: | |
| 3567 | Metrics are gathered by periodically sending HTTP requests to [Patroni Exporter](https://github.com/gopaytech/patroni_exporter). |
| 3568 | setup: |
| 3569 | <<: *setup |
| 3570 | prerequisites: |
| 3571 | list: |
| 3572 | - title: Install Exporter |
| 3573 | description: | |
| 3574 | Install [Patroni Exporter](https://github.com/gopaytech/patroni_exporter) by following the instructions mentioned in the exporter README. |
| 3575 | - <<: *module |
| 3576 | meta: |
| 3577 | <<: *meta |
| 3578 | id: collector-go.d.plugin-prometheus-pws |
| 3579 | community: true |
| 3580 | monitored_instance: |
| 3581 | name: Personal Weather Station |
| 3582 | link: https://github.com/JohnOrthoefer/pws-exporter |
| 3583 | icon_filename: wunderground.png |
| 3584 | categories: |
| 3585 | - data-collection.hardware-and-sensors |
| 3586 | keywords: [ ] |
| 3587 | overview: |
| 3588 | <<: *overview |
| 3589 | data_collection: |
| 3590 | metrics_description: | |
| 3591 | Track personal weather station metrics for efficient weather monitoring and management. |
| 3592 | method_description: | |
| 3593 | Metrics are gathered by periodically sending HTTP requests to [Personal Weather Station Exporter](https://github.com/JohnOrthoefer/pws-exporter). |
| 3594 | setup: |
| 3595 | <<: *setup |
| 3596 | prerequisites: |
| 3597 | list: |
| 3598 | - title: Install Exporter |
| 3599 | description: | |
| 3600 | Install [Personal Weather Station Exporter](https://github.com/JohnOrthoefer/pws-exporter) by following the instructions mentioned in the exporter README. |
| 3601 | - <<: *module |
| 3602 | meta: |
| 3603 | <<: *meta |
| 3604 | id: collector-go.d.plugin-prometheus-pgbackrest |
| 3605 | community: true |
| 3606 | monitored_instance: |
| 3607 | name: pgBackRest |
| 3608 | link: https://github.com/woblerr/pgbackrest_exporter |
| 3609 | icon_filename: pgbackrest.png |
| 3610 | categories: |
| 3611 | - data-collection.databases |
| 3612 | keywords: [ ] |
| 3613 | overview: |
| 3614 | <<: *overview |
| 3615 | data_collection: |
| 3616 | metrics_description: | |
| 3617 | Monitor pgBackRest PostgreSQL backup metrics for efficient database backup and management. |
| 3618 | method_description: | |
| 3619 | Metrics are gathered by periodically sending HTTP requests to [pgBackRest Exporter](https://github.com/woblerr/pgbackrest_exporter). |
| 3620 | setup: |
| 3621 | <<: *setup |
| 3622 | prerequisites: |
| 3623 | list: |
| 3624 | - title: Install Exporter |
| 3625 | description: | |
| 3626 | Install [pgBackRest Exporter](https://github.com/woblerr/pgbackrest_exporter) by following the instructions mentioned in the exporter README. |
| 3627 | - <<: *module |
| 3628 | meta: |
| 3629 | <<: *meta |
| 3630 | id: collector-go.d.plugin-prometheus-pgpool2 |
| 3631 | community: true |
| 3632 | monitored_instance: |
| 3633 | name: Pgpool-II |
| 3634 | link: https://github.com/pgpool/pgpool2_exporter |
| 3635 | icon_filename: pgpool2.png |
| 3636 | categories: |
| 3637 | - data-collection.databases |
| 3638 | keywords: [ ] |
| 3639 | overview: |
| 3640 | <<: *overview |
| 3641 | data_collection: |
| 3642 | metrics_description: | |
| 3643 | Track Pgpool-II PostgreSQL middleware metrics for efficient database connection management and performance. |
| 3644 | method_description: | |
| 3645 | Metrics are gathered by periodically sending HTTP requests to [Pgpool-II Exporter](https://github.com/pgpool/pgpool2_exporter). |
| 3646 | setup: |
| 3647 | <<: *setup |
| 3648 | prerequisites: |
| 3649 | list: |
| 3650 | - title: Install Exporter |
| 3651 | description: | |
| 3652 | Install [Pgpool-II Exporter](https://github.com/pgpool/pgpool2_exporter) by following the instructions mentioned in the exporter README. |
| 3653 | - <<: *module |
| 3654 | meta: |
| 3655 | <<: *meta |
| 3656 | id: collector-go.d.plugin-prometheus-pimoroni_enviro_plus |
| 3657 | community: true |
| 3658 | monitored_instance: |
| 3659 | name: Pimoroni Enviro+ |
| 3660 | link: https://github.com/terradolor/prometheus-enviro-exporter |
| 3661 | icon_filename: pimorino.png |
| 3662 | categories: |
| 3663 | - data-collection.hardware-and-sensors |
| 3664 | keywords: [ ] |
| 3665 | overview: |
| 3666 | <<: *overview |
| 3667 | data_collection: |
| 3668 | metrics_description: | |
| 3669 | Track Pimoroni Enviro+ air quality and environmental metrics for efficient environmental monitoring and analysis. |
| 3670 | method_description: | |
| 3671 | Metrics are gathered by periodically sending HTTP requests to [Pimoroni Enviro+ Exporter](https://github.com/terradolor/prometheus-enviro-exporter). |
| 3672 | setup: |
| 3673 | <<: *setup |
| 3674 | prerequisites: |
| 3675 | list: |
| 3676 | - title: Install Exporter |
| 3677 | description: | |
| 3678 | Install [Pimoroni Enviro+ Exporter](https://github.com/terradolor/prometheus-enviro-exporter) by following the instructions mentioned in the exporter README. |
| 3679 | - <<: *module |
| 3680 | meta: |
| 3681 | <<: *meta |
| 3682 | id: collector-go.d.plugin-prometheus-powerpal |
| 3683 | community: true |
| 3684 | monitored_instance: |
| 3685 | name: Powerpal devices |
| 3686 | link: https://github.com/aashley/powerpal_exporter |
| 3687 | icon_filename: powerpal.png |
| 3688 | categories: |
| 3689 | - data-collection.hardware-and-sensors |
| 3690 | keywords: [ ] |
| 3691 | overview: |
| 3692 | <<: *overview |
| 3693 | data_collection: |
| 3694 | metrics_description: | |
| 3695 | Keep an eye on Powerpal smart meter metrics for efficient energy management and monitoring. |
| 3696 | method_description: | |
| 3697 | Metrics are gathered by periodically sending HTTP requests to [Powerpal Exporter](https://github.com/aashley/powerpal_exporter). |
| 3698 | setup: |
| 3699 | <<: *setup |
| 3700 | prerequisites: |
| 3701 | list: |
| 3702 | - title: Install Exporter |
| 3703 | description: | |
| 3704 | Install [Powerpal Exporter](https://github.com/aashley/powerpal_exporter) by following the instructions mentioned in the exporter README. |
| 3705 | - <<: *module |
| 3706 | meta: |
| 3707 | <<: *meta |
| 3708 | id: collector-go.d.plugin-prometheus-proftpd |
| 3709 | community: true |
| 3710 | monitored_instance: |
| 3711 | name: ProFTPD |
| 3712 | link: https://github.com/transnano/proftpd_exporter |
| 3713 | icon_filename: proftpd.png |
| 3714 | categories: |
| 3715 | - data-collection.applications |
| 3716 | keywords: [ ] |
| 3717 | overview: |
| 3718 | <<: *overview |
| 3719 | data_collection: |
| 3720 | metrics_description: | |
| 3721 | Monitor ProFTPD FTP server metrics for efficient file transfer and server performance. |
| 3722 | method_description: | |
| 3723 | Metrics are gathered by periodically sending HTTP requests to [ProFTPD Exporter](https://github.com/transnano/proftpd_exporter). |
| 3724 | setup: |
| 3725 | <<: *setup |
| 3726 | prerequisites: |
| 3727 | list: |
| 3728 | - title: Install Exporter |
| 3729 | description: | |
| 3730 | Install [ProFTPD Exporter](https://github.com/transnano/proftpd_exporter) by following the instructions mentioned in the exporter README. |
| 3731 | - <<: *module |
| 3732 | meta: |
| 3733 | <<: *meta |
| 3734 | id: collector-go.d.plugin-prometheus-redis_queue |
| 3735 | community: true |
| 3736 | monitored_instance: |
| 3737 | name: Redis Queue |
| 3738 | link: https://github.com/mdawar/rq-exporter |
| 3739 | icon_filename: rq.png |
| 3740 | categories: |
| 3741 | - data-collection.databases |
| 3742 | keywords: [ ] |
| 3743 | overview: |
| 3744 | <<: *overview |
| 3745 | data_collection: |
| 3746 | metrics_description: | |
| 3747 | Monitor Python RQ (Redis Queue) job queue metrics for efficient task management and performance. |
| 3748 | method_description: | |
| 3749 | Metrics are gathered by periodically sending HTTP requests to [Python RQ Exporter](https://github.com/mdawar/rq-exporter). |
| 3750 | setup: |
| 3751 | <<: *setup |
| 3752 | prerequisites: |
| 3753 | list: |
| 3754 | - title: Install Exporter |
| 3755 | description: | |
| 3756 | Install [Python RQ Exporter](https://github.com/mdawar/rq-exporter) by following the instructions mentioned in the exporter README. |
| 3757 | - <<: *module |
| 3758 | meta: |
| 3759 | <<: *meta |
| 3760 | id: collector-go.d.plugin-prometheus-radio_thermostat |
| 3761 | community: true |
| 3762 | monitored_instance: |
| 3763 | name: Radio Thermostat |
| 3764 | link: https://github.com/andrewlow/radio-thermostat-exporter |
| 3765 | icon_filename: radiots.png |
| 3766 | categories: |
| 3767 | - data-collection.hardware-and-sensors |
| 3768 | keywords: [ ] |
| 3769 | overview: |
| 3770 | <<: *overview |
| 3771 | data_collection: |
| 3772 | metrics_description: | |
| 3773 | Monitor Radio Thermostat smart thermostat metrics for efficient home automation and energy management. |
| 3774 | method_description: | |
| 3775 | Metrics are gathered by periodically sending HTTP requests to [Radio Thermostat Exporter](https://github.com/andrewlow/radio-thermostat-exporter). |
| 3776 | setup: |
| 3777 | <<: *setup |
| 3778 | prerequisites: |
| 3779 | list: |
| 3780 | - title: Install Exporter |
| 3781 | description: | |
| 3782 | Install [Radio Thermostat Exporter](https://github.com/andrewlow/radio-thermostat-exporter) by following the instructions mentioned in the exporter README. |
| 3783 | - <<: *module |
| 3784 | meta: |
| 3785 | <<: *meta |
| 3786 | id: collector-go.d.plugin-prometheus-raritan_pdu |
| 3787 | community: true |
| 3788 | monitored_instance: |
| 3789 | name: Raritan PDU |
| 3790 | link: https://github.com/psyinfra/prometheus-raritan-pdu-exporter |
| 3791 | icon_filename: raritan.svg |
| 3792 | categories: |
| 3793 | - data-collection.hardware-and-sensors |
| 3794 | keywords: [ ] |
| 3795 | overview: |
| 3796 | <<: *overview |
| 3797 | data_collection: |
| 3798 | metrics_description: | |
| 3799 | Monitor Raritan Power Distribution Unit (PDU) metrics for efficient power management and monitoring. |
| 3800 | method_description: | |
| 3801 | Metrics are gathered by periodically sending HTTP requests to [Raritan PDU Exporter](https://github.com/psyinfra/prometheus-raritan-pdu-exporter). |
| 3802 | setup: |
| 3803 | <<: *setup |
| 3804 | prerequisites: |
| 3805 | list: |
| 3806 | - title: Install Exporter |
| 3807 | description: | |
| 3808 | Install [Raritan PDU Exporter](https://github.com/psyinfra/prometheus-raritan-pdu-exporter) by following the instructions mentioned in the exporter README. |
| 3809 | - <<: *module |
| 3810 | meta: |
| 3811 | <<: *meta |
| 3812 | id: collector-go.d.plugin-prometheus-sabnzbd |
| 3813 | community: true |
| 3814 | monitored_instance: |
| 3815 | name: SABnzbd |
| 3816 | link: https://github.com/msroest/sabnzbd_exporter |
| 3817 | icon_filename: sabnzbd.png |
| 3818 | categories: |
| 3819 | - data-collection.applications |
| 3820 | keywords: [ ] |
| 3821 | overview: |
| 3822 | <<: *overview |
| 3823 | data_collection: |
| 3824 | metrics_description: | |
| 3825 | Monitor SABnzbd Usenet client metrics for efficient file downloads and resource management. |
| 3826 | method_description: | |
| 3827 | Metrics are gathered by periodically sending HTTP requests to [SABnzbd Exporter](https://github.com/msroest/sabnzbd_exporter). |
| 3828 | setup: |
| 3829 | <<: *setup |
| 3830 | prerequisites: |
| 3831 | list: |
| 3832 | - title: Install Exporter |
| 3833 | description: | |
| 3834 | Install [SABnzbd Exporter](https://github.com/msroest/sabnzbd_exporter) by following the instructions mentioned in the exporter README. |
| 3835 | - <<: *module |
| 3836 | meta: |
| 3837 | <<: *meta |
| 3838 | id: collector-go.d.plugin-prometheus-salicru_eqx |
| 3839 | community: true |
| 3840 | monitored_instance: |
| 3841 | name: Salicru EQX inverter |
| 3842 | link: https://github.com/alejandroscf/prometheus_salicru_exporter |
| 3843 | icon_filename: salicru.png |
| 3844 | categories: |
| 3845 | - data-collection.hardware-and-sensors |
| 3846 | keywords: [ ] |
| 3847 | overview: |
| 3848 | <<: *overview |
| 3849 | data_collection: |
| 3850 | metrics_description: | |
| 3851 | Keep tabs on Salicru EQX solar inverter metrics for efficient solar energy management and monitoring. |
| 3852 | method_description: | |
| 3853 | Metrics are gathered by periodically sending HTTP requests to [Salicru EQX inverter](https://github.com/alejandroscf/prometheus_salicru_exporter). |
| 3854 | setup: |
| 3855 | <<: *setup |
| 3856 | prerequisites: |
| 3857 | list: |
| 3858 | - title: Install Exporter |
| 3859 | description: | |
| 3860 | Install [Salicru EQX inverter](https://github.com/alejandroscf/prometheus_salicru_exporter) by following the instructions mentioned in the exporter README. |
| 3861 | - <<: *module |
| 3862 | meta: |
| 3863 | <<: *meta |
| 3864 | id: collector-go.d.plugin-prometheus-sense_energy |
| 3865 | community: true |
| 3866 | monitored_instance: |
| 3867 | name: Sense Energy |
| 3868 | link: https://github.com/ejsuncy/sense_energy_prometheus_exporter |
| 3869 | icon_filename: sense.png |
| 3870 | categories: |
| 3871 | - data-collection.hardware-and-sensors |
| 3872 | keywords: [ ] |
| 3873 | overview: |
| 3874 | <<: *overview |
| 3875 | data_collection: |
| 3876 | metrics_description: | |
| 3877 | Keep tabs on Sense Energy smart meter metrics for efficient energy management and monitoring. |
| 3878 | method_description: | |
| 3879 | Metrics are gathered by periodically sending HTTP requests to [Sense Energy exporter](https://github.com/ejsuncy/sense_energy_prometheus_exporter). |
| 3880 | setup: |
| 3881 | <<: *setup |
| 3882 | prerequisites: |
| 3883 | list: |
| 3884 | - title: Install Exporter |
| 3885 | description: | |
| 3886 | Install [Sense Energy exporter](https://github.com/ejsuncy/sense_energy_prometheus_exporter) by following the instructions mentioned in the exporter README. |
| 3887 | - <<: *module |
| 3888 | meta: |
| 3889 | <<: *meta |
| 3890 | id: collector-go.d.plugin-prometheus-shelly |
| 3891 | community: true |
| 3892 | monitored_instance: |
| 3893 | name: Shelly humidity sensor |
| 3894 | link: https://github.com/aexel90/shelly_exporter |
| 3895 | icon_filename: shelly.jpg |
| 3896 | categories: |
| 3897 | - data-collection.hardware-and-sensors |
| 3898 | keywords: [ ] |
| 3899 | overview: |
| 3900 | <<: *overview |
| 3901 | data_collection: |
| 3902 | metrics_description: | |
| 3903 | Monitor Shelly smart home device metrics for efficient home automation and energy management. |
| 3904 | method_description: | |
| 3905 | Metrics are gathered by periodically sending HTTP requests to [Shelly Exporter](https://github.com/aexel90/shelly_exporter). |
| 3906 | setup: |
| 3907 | <<: *setup |
| 3908 | prerequisites: |
| 3909 | list: |
| 3910 | - title: Install Exporter |
| 3911 | description: | |
| 3912 | Install [Shelly Exporter](https://github.com/aexel90/shelly_exporter) by following the instructions mentioned in the exporter README. |
| 3913 | - <<: *module |
| 3914 | meta: |
| 3915 | <<: *meta |
| 3916 | id: collector-go.d.plugin-prometheus-s7_plc |
| 3917 | community: true |
| 3918 | monitored_instance: |
| 3919 | name: Siemens S7 PLC |
| 3920 | link: https://github.com/MarcusCalidus/s7-plc-exporter |
| 3921 | icon_filename: siemens.svg |
| 3922 | categories: |
| 3923 | - data-collection.hardware-and-sensors |
| 3924 | keywords: [ ] |
| 3925 | overview: |
| 3926 | <<: *overview |
| 3927 | data_collection: |
| 3928 | metrics_description: | |
| 3929 | Monitor Siemens S7 Programmable Logic Controller (PLC) metrics for efficient industrial automation and control. |
| 3930 | method_description: | |
| 3931 | Metrics are gathered by periodically sending HTTP requests to [Siemens S7 PLC exporter](https://github.com/MarcusCalidus/s7-plc-exporter). |
| 3932 | setup: |
| 3933 | <<: *setup |
| 3934 | prerequisites: |
| 3935 | list: |
| 3936 | - title: Install Exporter |
| 3937 | description: | |
| 3938 | Install [Siemens S7 PLC exporter](https://github.com/MarcusCalidus/s7-plc-exporter) by following the instructions mentioned in the exporter README. |
| 3939 | - <<: *module |
| 3940 | meta: |
| 3941 | <<: *meta |
| 3942 | id: collector-go.d.plugin-prometheus-site24x7 |
| 3943 | community: true |
| 3944 | monitored_instance: |
| 3945 | name: Site 24x7 |
| 3946 | link: https://github.com/svenstaro/site24x7_exporter |
| 3947 | icon_filename: site24x7.svg |
| 3948 | categories: |
| 3949 | - data-collection.synthetic-testing |
| 3950 | keywords: [ ] |
| 3951 | overview: |
| 3952 | <<: *overview |
| 3953 | data_collection: |
| 3954 | metrics_description: | |
| 3955 | Monitor Site24x7 website and infrastructure monitoring metrics for efficient performance tracking and management. |
| 3956 | method_description: | |
| 3957 | Metrics are gathered by periodically sending HTTP requests to [site24x7 Exporter](https://github.com/svenstaro/site24x7_exporter). |
| 3958 | setup: |
| 3959 | <<: *setup |
| 3960 | prerequisites: |
| 3961 | list: |
| 3962 | - title: Install Exporter |
| 3963 | description: | |
| 3964 | Install [site24x7 Exporter](https://github.com/svenstaro/site24x7_exporter) by following the instructions mentioned in the exporter README. |
| 3965 | - <<: *module |
| 3966 | meta: |
| 3967 | <<: *meta |
| 3968 | id: collector-go.d.plugin-prometheus-sma_inverter |
| 3969 | community: true |
| 3970 | monitored_instance: |
| 3971 | name: SMA Inverters |
| 3972 | link: https://github.com/dr0ps/sma_inverter_exporter |
| 3973 | icon_filename: sma.png |
| 3974 | categories: |
| 3975 | - data-collection.hardware-and-sensors |
| 3976 | keywords: [ ] |
| 3977 | overview: |
| 3978 | <<: *overview |
| 3979 | data_collection: |
| 3980 | metrics_description: | |
| 3981 | Monitor SMA solar inverter metrics for efficient solar energy management and monitoring. |
| 3982 | method_description: | |
| 3983 | Metrics are gathered by periodically sending HTTP requests to [sma-exporter](https://github.com/dr0ps/sma_inverter_exporter). |
| 3984 | setup: |
| 3985 | <<: *setup |
| 3986 | prerequisites: |
| 3987 | list: |
| 3988 | - title: Install Exporter |
| 3989 | description: | |
| 3990 | Install [sma-exporter](https://github.com/dr0ps/sma_inverter_exporter) by following the instructions mentioned in the exporter README. |
| 3991 | - <<: *module |
| 3992 | meta: |
| 3993 | <<: *meta |
| 3994 | id: collector-go.d.plugin-prometheus-sml |
| 3995 | community: true |
| 3996 | monitored_instance: |
| 3997 | name: Smart meters SML |
| 3998 | link: https://github.com/mweinelt/sml-exporter |
| 3999 | icon_filename: sml.png |
| 4000 | categories: |
| 4001 | - data-collection.hardware-and-sensors |
| 4002 | keywords: [ ] |
| 4003 | overview: |
| 4004 | <<: *overview |
| 4005 | data_collection: |
| 4006 | metrics_description: | |
| 4007 | Monitor Smart Message Language (SML) metrics for efficient smart metering and energy management. |
| 4008 | method_description: | |
| 4009 | Metrics are gathered by periodically sending HTTP requests to [SML Exporter](https://github.com/mweinelt/sml-exporter). |
| 4010 | setup: |
| 4011 | <<: *setup |
| 4012 | prerequisites: |
| 4013 | list: |
| 4014 | - title: Install Exporter |
| 4015 | description: | |
| 4016 | Install [SML Exporter](https://github.com/mweinelt/sml-exporter) by following the instructions mentioned in the exporter README. |
| 4017 | - <<: *module |
| 4018 | meta: |
| 4019 | <<: *meta |
| 4020 | id: collector-go.d.plugin-prometheus-softether |
| 4021 | community: true |
| 4022 | monitored_instance: |
| 4023 | name: SoftEther VPN Server |
| 4024 | link: https://github.com/dalance/softether_exporter |
| 4025 | icon_filename: softether.svg |
| 4026 | categories: |
| 4027 | - data-collection.networking |
| 4028 | keywords: [ ] |
| 4029 | overview: |
| 4030 | <<: *overview |
| 4031 | data_collection: |
| 4032 | metrics_description: | |
| 4033 | Monitor SoftEther VPN Server metrics for efficient virtual private network (VPN) management and performance. |
| 4034 | method_description: | |
| 4035 | Metrics are gathered by periodically sending HTTP requests to [SoftEther Exporter](https://github.com/dalance/softether_exporter). |
| 4036 | setup: |
| 4037 | <<: *setup |
| 4038 | prerequisites: |
| 4039 | list: |
| 4040 | - title: Install Exporter |
| 4041 | description: | |
| 4042 | Install [SoftEther Exporter](https://github.com/dalance/softether_exporter) by following the instructions mentioned in the exporter README. |
| 4043 | - <<: *module |
| 4044 | meta: |
| 4045 | <<: *meta |
| 4046 | id: collector-go.d.plugin-prometheus-lsx |
| 4047 | community: true |
| 4048 | monitored_instance: |
| 4049 | name: Solar logging stick |
| 4050 | link: https://gitlab.com/bhavin192/lsx-exporter |
| 4051 | icon_filename: solar.png |
| 4052 | categories: |
| 4053 | - data-collection.hardware-and-sensors |
| 4054 | keywords: [ ] |
| 4055 | overview: |
| 4056 | <<: *overview |
| 4057 | data_collection: |
| 4058 | metrics_description: | |
| 4059 | Monitor solar energy metrics using a solar logging stick for efficient solar energy management and monitoring. |
| 4060 | method_description: | |
| 4061 | Metrics are gathered by periodically sending HTTP requests to [Solar logging stick exporter](https://gitlab.com/bhavin192/lsx-exporter). |
| 4062 | setup: |
| 4063 | <<: *setup |
| 4064 | prerequisites: |
| 4065 | list: |
| 4066 | - title: Install Exporter |
| 4067 | description: | |
| 4068 | Install [Solar logging stick exporter](https://gitlab.com/bhavin192/lsx-exporter) by following the instructions mentioned in the exporter README. |
| 4069 | - <<: *module |
| 4070 | meta: |
| 4071 | <<: *meta |
| 4072 | id: collector-go.d.plugin-prometheus-solis |
| 4073 | community: true |
| 4074 | monitored_instance: |
| 4075 | name: Solis Ginlong 5G inverters |
| 4076 | link: https://github.com/candlerb/solis_exporter |
| 4077 | icon_filename: solis.jpg |
| 4078 | categories: |
| 4079 | - data-collection.hardware-and-sensors |
| 4080 | keywords: [ ] |
| 4081 | overview: |
| 4082 | <<: *overview |
| 4083 | data_collection: |
| 4084 | metrics_description: | |
| 4085 | Monitor Solis solar inverter metrics for efficient solar energy management and monitoring. |
| 4086 | method_description: | |
| 4087 | Metrics are gathered by periodically sending HTTP requests to [Solis Exporter](https://github.com/candlerb/solis_exporter). |
| 4088 | setup: |
| 4089 | <<: *setup |
| 4090 | prerequisites: |
| 4091 | list: |
| 4092 | - title: Install Exporter |
| 4093 | description: | |
| 4094 | Install [Solis Exporter](https://github.com/candlerb/solis_exporter) by following the instructions mentioned in the exporter README. |
| 4095 | - <<: *module |
| 4096 | meta: |
| 4097 | <<: *meta |
| 4098 | id: collector-go.d.plugin-prometheus-sonic |
| 4099 | community: true |
| 4100 | monitored_instance: |
| 4101 | name: SONiC NOS |
| 4102 | link: https://github.com/kamelnetworks/sonic_exporter |
| 4103 | icon_filename: sonic.png |
| 4104 | categories: |
| 4105 | - data-collection.networking |
| 4106 | keywords: [ ] |
| 4107 | overview: |
| 4108 | <<: *overview |
| 4109 | data_collection: |
| 4110 | metrics_description: | |
| 4111 | Keep tabs on Software for Open Networking in the Cloud (SONiC) metrics for efficient network switch management and performance. |
| 4112 | method_description: | |
| 4113 | Metrics are gathered by periodically sending HTTP requests to [SONiC Exporter](https://github.com/kamelnetworks/sonic_exporter). |
| 4114 | setup: |
| 4115 | <<: *setup |
| 4116 | prerequisites: |
| 4117 | list: |
| 4118 | - title: Install Exporter |
| 4119 | description: | |
| 4120 | Install [SONiC Exporter](https://github.com/kamelnetworks/sonic_exporter) by following the instructions mentioned in the exporter README. |
| 4121 | - <<: *module |
| 4122 | meta: |
| 4123 | <<: *meta |
| 4124 | id: collector-go.d.plugin-prometheus-ibm_spectrum_virtualize |
| 4125 | community: true |
| 4126 | monitored_instance: |
| 4127 | name: IBM Spectrum Virtualize |
| 4128 | link: https://github.com/bluecmd/spectrum_virtualize_exporter |
| 4129 | icon_filename: ibm.svg |
| 4130 | categories: |
| 4131 | - data-collection.storage |
| 4132 | keywords: [ ] |
| 4133 | overview: |
| 4134 | <<: *overview |
| 4135 | data_collection: |
| 4136 | metrics_description: | |
| 4137 | Monitor IBM Spectrum Virtualize metrics for efficient storage virtualization and performance. |
| 4138 | method_description: | |
| 4139 | Metrics are gathered by periodically sending HTTP requests to [spectrum_virtualize_exporter](https://github.com/bluecmd/spectrum_virtualize_exporter). |
| 4140 | setup: |
| 4141 | <<: *setup |
| 4142 | prerequisites: |
| 4143 | list: |
| 4144 | - title: Install Exporter |
| 4145 | description: | |
| 4146 | Install [spectrum_virtualize_exporter](https://github.com/bluecmd/spectrum_virtualize_exporter) by following the instructions mentioned in the exporter README. |
| 4147 | - <<: *module |
| 4148 | meta: |
| 4149 | <<: *meta |
| 4150 | id: collector-go.d.plugin-prometheus-sphinx |
| 4151 | community: true |
| 4152 | monitored_instance: |
| 4153 | name: Sphinx |
| 4154 | link: https://github.com/foxdalas/sphinx_exporter |
| 4155 | icon_filename: sphinx.png |
| 4156 | categories: |
| 4157 | - data-collection.databases |
| 4158 | keywords: [ ] |
| 4159 | overview: |
| 4160 | <<: *overview |
| 4161 | data_collection: |
| 4162 | metrics_description: | |
| 4163 | Monitor Sphinx search engine metrics for efficient search and indexing performance. |
| 4164 | method_description: | |
| 4165 | Metrics are gathered by periodically sending HTTP requests to [Sphinx Exporter](https://github.com/foxdalas/sphinx_exporter). |
| 4166 | setup: |
| 4167 | <<: *setup |
| 4168 | prerequisites: |
| 4169 | list: |
| 4170 | - title: Install Exporter |
| 4171 | description: | |
| 4172 | Install [Sphinx Exporter](https://github.com/foxdalas/sphinx_exporter) by following the instructions mentioned in the exporter README. |
| 4173 | - <<: *module |
| 4174 | meta: |
| 4175 | <<: *meta |
| 4176 | id: collector-go.d.plugin-prometheus-storidge |
| 4177 | community: true |
| 4178 | monitored_instance: |
| 4179 | name: Storidge |
| 4180 | link: https://github.com/Storidge/cio-user-docs/blob/master/integrations/prometheus.md |
| 4181 | icon_filename: storidge.png |
| 4182 | categories: |
| 4183 | - data-collection.storage |
| 4184 | keywords: [ ] |
| 4185 | overview: |
| 4186 | <<: *overview |
| 4187 | data_collection: |
| 4188 | metrics_description: | |
| 4189 | Keep an eye on Storidge storage metrics for efficient storage management and performance. |
| 4190 | method_description: | |
| 4191 | Metrics are gathered by periodically sending HTTP requests to [Storidge exporter](https://github.com/Storidge/cio-user-docs/blob/master/integrations/prometheus.md). |
| 4192 | setup: |
| 4193 | <<: *setup |
| 4194 | prerequisites: |
| 4195 | list: |
| 4196 | - title: Install Exporter |
| 4197 | description: | |
| 4198 | Install [Storidge exporter](https://github.com/Storidge/cio-user-docs/blob/master/integrations/prometheus.md) by following the instructions mentioned in the exporter README. |
| 4199 | - <<: *module |
| 4200 | meta: |
| 4201 | <<: *meta |
| 4202 | id: collector-go.d.plugin-prometheus-strongswan |
| 4203 | community: true |
| 4204 | monitored_instance: |
| 4205 | name: strongSwan |
| 4206 | link: https://github.com/jlti-dev/ipsec_exporter |
| 4207 | icon_filename: strongswan.svg |
| 4208 | categories: |
| 4209 | - data-collection.networking |
| 4210 | keywords: [ ] |
| 4211 | overview: |
| 4212 | <<: *overview |
| 4213 | data_collection: |
| 4214 | metrics_description: | |
| 4215 | Track strongSwan VPN and IPSec metrics using the vici interface for efficient virtual private network (VPN) management and performance. |
| 4216 | method_description: | |
| 4217 | Metrics are gathered by periodically sending HTTP requests to [strongSwan/IPSec/vici Exporter](https://github.com/jlti-dev/ipsec_exporter). |
| 4218 | setup: |
| 4219 | <<: *setup |
| 4220 | prerequisites: |
| 4221 | list: |
| 4222 | - title: Install Exporter |
| 4223 | description: | |
| 4224 | Install [strongSwan/IPSec/vici Exporter](https://github.com/jlti-dev/ipsec_exporter) by following the instructions mentioned in the exporter README. |
| 4225 | - <<: *module |
| 4226 | meta: |
| 4227 | id: collector-go.d.plugin-prometheus-sunspec |
| 4228 | <<: *meta |
| 4229 | community: true |
| 4230 | monitored_instance: |
| 4231 | name: Sunspec Solar Energy |
| 4232 | link: https://github.com/inosion/prometheus-sunspec-exporter |
| 4233 | icon_filename: sunspec.png |
| 4234 | categories: |
| 4235 | - data-collection.hardware-and-sensors |
| 4236 | keywords: [ ] |
| 4237 | overview: |
| 4238 | <<: *overview |
| 4239 | data_collection: |
| 4240 | metrics_description: | |
| 4241 | Monitor SunSpec Alliance solar energy metrics for efficient solar energy management and monitoring. |
| 4242 | method_description: | |
| 4243 | Metrics are gathered by periodically sending HTTP requests to [Sunspec Solar Energy Exporter](https://github.com/inosion/prometheus-sunspec-exporter). |
| 4244 | setup: |
| 4245 | <<: *setup |
| 4246 | prerequisites: |
| 4247 | list: |
| 4248 | - title: Install Exporter |
| 4249 | description: | |
| 4250 | Install [Sunspec Solar Energy Exporter](https://github.com/inosion/prometheus-sunspec-exporter) by following the instructions mentioned in the exporter README. |
| 4251 | - <<: *module |
| 4252 | meta: |
| 4253 | <<: *meta |
| 4254 | id: collector-go.d.plugin-prometheus-suricata |
| 4255 | community: true |
| 4256 | monitored_instance: |
| 4257 | name: Suricata |
| 4258 | link: https://github.com/corelight/suricata_exporter |
| 4259 | icon_filename: suricata.png |
| 4260 | categories: |
| 4261 | - data-collection.applications |
| 4262 | keywords: [ ] |
| 4263 | overview: |
| 4264 | <<: *overview |
| 4265 | data_collection: |
| 4266 | metrics_description: | |
| 4267 | Keep an eye on Suricata network intrusion detection and prevention system (IDS/IPS) metrics for efficient network security and performance. |
| 4268 | method_description: | |
| 4269 | Metrics are gathered by periodically sending HTTP requests to [Suricata Exporter](https://github.com/corelight/suricata_exporter). |
| 4270 | setup: |
| 4271 | <<: *setup |
| 4272 | prerequisites: |
| 4273 | list: |
| 4274 | - title: Install Exporter |
| 4275 | description: | |
| 4276 | Install [Suricata Exporter](https://github.com/corelight/suricata_exporter) by following the instructions mentioned in the exporter README. |
| 4277 | |
| 4278 | |
| 4279 | - <<: *module |
| 4280 | meta: |
| 4281 | <<: *meta |
| 4282 | id: collector-go.d.plugin-prometheus-synology_activebackup |
| 4283 | community: true |
| 4284 | monitored_instance: |
| 4285 | name: Synology ActiveBackup |
| 4286 | link: https://github.com/codemonauts/activebackup-prometheus-exporter |
| 4287 | icon_filename: synology.png |
| 4288 | categories: |
| 4289 | - data-collection.storage |
| 4290 | keywords: [ ] |
| 4291 | overview: |
| 4292 | <<: *overview |
| 4293 | data_collection: |
| 4294 | metrics_description: | |
| 4295 | Track Synology Active Backup metrics for efficient backup and data protection management. |
| 4296 | method_description: | |
| 4297 | Metrics are gathered by periodically sending HTTP requests to [Synology ActiveBackup Exporter](https://github.com/codemonauts/activebackup-prometheus-exporter). |
| 4298 | setup: |
| 4299 | <<: *setup |
| 4300 | prerequisites: |
| 4301 | list: |
| 4302 | - title: Install Exporter |
| 4303 | description: | |
| 4304 | Install [Synology ActiveBackup Exporter](https://github.com/codemonauts/activebackup-prometheus-exporter) by following the instructions mentioned in the exporter README. |
| 4305 | - <<: *module |
| 4306 | meta: |
| 4307 | id: collector-go.d.plugin-prometheus-sysload |
| 4308 | <<: *meta |
| 4309 | community: true |
| 4310 | monitored_instance: |
| 4311 | name: Sysload |
| 4312 | link: https://github.com/egmc/sysload_exporter |
| 4313 | icon_filename: sysload.png |
| 4314 | categories: |
| 4315 | - data-collection.applications |
| 4316 | keywords: [ ] |
| 4317 | overview: |
| 4318 | <<: *overview |
| 4319 | data_collection: |
| 4320 | metrics_description: | |
| 4321 | Monitor system load metrics for efficient system performance and resource management. |
| 4322 | method_description: | |
| 4323 | Metrics are gathered by periodically sending HTTP requests to [Sysload Exporter](https://github.com/egmc/sysload_exporter). |
| 4324 | setup: |
| 4325 | <<: *setup |
| 4326 | prerequisites: |
| 4327 | list: |
| 4328 | - title: Install Exporter |
| 4329 | description: | |
| 4330 | Install [Sysload Exporter](https://github.com/egmc/sysload_exporter) by following the instructions mentioned in the exporter README. |
| 4331 | - <<: *module |
| 4332 | meta: |
| 4333 | id: collector-go.d.plugin-prometheus-tado |
| 4334 | <<: *meta |
| 4335 | community: true |
| 4336 | monitored_instance: |
| 4337 | name: Tado smart heating solution |
| 4338 | link: https://github.com/eko/tado-exporter |
| 4339 | icon_filename: tado.png |
| 4340 | categories: |
| 4341 | - data-collection.hardware-and-sensors |
| 4342 | keywords: [ ] |
| 4343 | overview: |
| 4344 | <<: *overview |
| 4345 | data_collection: |
| 4346 | metrics_description: | |
| 4347 | Monitor Tado smart thermostat metrics for efficient home heating and cooling management. |
| 4348 | method_description: | |
| 4349 | Metrics are gathered by periodically sending HTTP requests to [Tado\xB0 Exporter](https://github.com/eko/tado-exporter). |
| 4350 | setup: |
| 4351 | <<: *setup |
| 4352 | prerequisites: |
| 4353 | list: |
| 4354 | - title: Install Exporter |
| 4355 | description: | |
| 4356 | Install [Tado Exporter](https://github.com/eko/tado-exporter) by following the instructions mentioned in the exporter README. |
| 4357 | |
| 4358 | - <<: *module |
| 4359 | meta: |
| 4360 | <<: *meta |
| 4361 | id: collector-go.d.plugin-prometheus-tankerkoenig |
| 4362 | community: true |
| 4363 | monitored_instance: |
| 4364 | name: Tankerkoenig API |
| 4365 | link: https://github.com/lukasmalkmus/tankerkoenig_exporter |
| 4366 | icon_filename: tanker.png |
| 4367 | categories: |
| 4368 | - data-collection.applications |
| 4369 | keywords: [ ] |
| 4370 | overview: |
| 4371 | <<: *overview |
| 4372 | data_collection: |
| 4373 | metrics_description: | |
| 4374 | Track Tankerknig API fuel price metrics for efficient fuel price monitoring and management. |
| 4375 | method_description: | |
| 4376 | Metrics are gathered by periodically sending HTTP requests to [Tankerknig API Exporter](https://github.com/lukasmalkmus/tankerkoenig_exporter). |
| 4377 | setup: |
| 4378 | <<: *setup |
| 4379 | prerequisites: |
| 4380 | list: |
| 4381 | - title: Install Exporter |
| 4382 | description: | |
| 4383 | Install [Tankerknig API Exporter](https://github.com/lukasmalkmus/tankerkoenig_exporter) by following the instructions mentioned in the exporter README. |
| 4384 | - <<: *module |
| 4385 | meta: |
| 4386 | <<: *meta |
| 4387 | id: collector-go.d.plugin-prometheus-tesla_wall_connector |
| 4388 | community: true |
| 4389 | monitored_instance: |
| 4390 | name: Tesla Wall Connector |
| 4391 | link: https://github.com/benclapp/tesla_wall_connector_exporter |
| 4392 | icon_filename: tesla.png |
| 4393 | categories: |
| 4394 | - data-collection.hardware-and-sensors |
| 4395 | keywords: [ ] |
| 4396 | overview: |
| 4397 | <<: *overview |
| 4398 | data_collection: |
| 4399 | metrics_description: | |
| 4400 | Monitor Tesla Wall Connector charging station metrics for efficient electric vehicle charging management. |
| 4401 | method_description: | |
| 4402 | Metrics are gathered by periodically sending HTTP requests to [Tesla Wall Connector Exporter](https://github.com/benclapp/tesla_wall_connector_exporter). |
| 4403 | setup: |
| 4404 | <<: *setup |
| 4405 | prerequisites: |
| 4406 | list: |
| 4407 | - title: Install Exporter |
| 4408 | description: | |
| 4409 | Install [Tesla Wall Connector Exporter](https://github.com/benclapp/tesla_wall_connector_exporter) by following the instructions mentioned in the exporter README. |
| 4410 | - <<: *module |
| 4411 | meta: |
| 4412 | <<: *meta |
| 4413 | id: collector-go.d.plugin-prometheus-warp10 |
| 4414 | community: true |
| 4415 | monitored_instance: |
| 4416 | name: Warp10 |
| 4417 | link: https://github.com/centreon/warp10-sensision-exporter |
| 4418 | icon_filename: warp10.svg |
| 4419 | categories: |
| 4420 | - data-collection.databases |
| 4421 | keywords: [ ] |
| 4422 | overview: |
| 4423 | <<: *overview |
| 4424 | data_collection: |
| 4425 | metrics_description: | |
| 4426 | Monitor Warp 10 time-series database metrics for efficient time-series data management and performance. |
| 4427 | method_description: | |
| 4428 | Metrics are gathered by periodically sending HTTP requests to [Warp10 Exporter](https://github.com/centreon/warp10-sensision-exporter). |
| 4429 | setup: |
| 4430 | <<: *setup |
| 4431 | prerequisites: |
| 4432 | list: |
| 4433 | - title: Install Exporter |
| 4434 | description: | |
| 4435 | Install [Warp10 Exporter](https://github.com/centreon/warp10-sensision-exporter) by following the instructions mentioned in the exporter README. |
| 4436 | |
| 4437 | - <<: *module |
| 4438 | meta: |
| 4439 | <<: *meta |
| 4440 | id: collector-go.d.plugin-prometheus-yourls |
| 4441 | community: true |
| 4442 | monitored_instance: |
| 4443 | name: YOURLS URL Shortener |
| 4444 | link: https://github.com/just1not2/prometheus-exporter-yourls |
| 4445 | icon_filename: yourls.png |
| 4446 | categories: |
| 4447 | - data-collection.applications |
| 4448 | keywords: [ ] |
| 4449 | overview: |
| 4450 | <<: *overview |
| 4451 | data_collection: |
| 4452 | metrics_description: | |
| 4453 | Monitor YOURLS (Your Own URL Shortener) metrics for efficient URL shortening service management and performance. |
| 4454 | method_description: | |
| 4455 | Metrics are gathered by periodically sending HTTP requests to [YOURLS exporter](https://github.com/just1not2/prometheus-exporter-yourls). |
| 4456 | setup: |
| 4457 | <<: *setup |
| 4458 | prerequisites: |
| 4459 | list: |
| 4460 | - title: Install Exporter |
| 4461 | description: | |
| 4462 | Install [YOURLS exporter](https://github.com/just1not2/prometheus-exporter-yourls) by following the instructions mentioned in the exporter README. |
| 4463 | - <<: *module |
| 4464 | meta: |
| 4465 | <<: *meta |
| 4466 | id: collector-go.d.plugin-prometheus-zerto |
| 4467 | community: true |
| 4468 | monitored_instance: |
| 4469 | name: Zerto |
| 4470 | link: https://github.com/claranet/zerto-exporter |
| 4471 | icon_filename: zerto.png |
| 4472 | categories: |
| 4473 | - data-collection.cloud-and-devops |
| 4474 | keywords: [ ] |
| 4475 | overview: |
| 4476 | <<: *overview |
| 4477 | data_collection: |
| 4478 | metrics_description: | |
| 4479 | Monitor Zerto disaster recovery and data protection metrics for efficient backup and recovery management. |
| 4480 | method_description: | |
| 4481 | Metrics are gathered by periodically sending HTTP requests to [Zerto Exporter](https://github.com/claranet/zerto-exporter). |
| 4482 | setup: |
| 4483 | <<: *setup |
| 4484 | prerequisites: |
| 4485 | list: |
| 4486 | - title: Install Exporter |
| 4487 | description: | |
| 4488 | Install [Zerto Exporter](https://github.com/claranet/zerto-exporter) by following the instructions mentioned in the exporter README. |