github.com/netdata/go.d.plugin@v0.58.1/modules/prometheus/metadata.yaml (about) 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.generic-data-collection 14 # - data-collection.apm 15 keywords: 16 - prometheus 17 - openmetrics 18 related_resources: 19 integrations: 20 list: [] 21 info_provided_to_referring_integrations: 22 description: "" 23 most_popular: true 24 overview: &overview 25 data_collection: 26 metrics_description: | 27 This generic Prometheus collector gathers metrics from any [`Prometheus`](https://prometheus.io/) endpoints. 28 method_description: | 29 It collects metrics by periodically sending HTTP requests to the target instance. 30 supported_platforms: 31 include: [] 32 exclude: [] 33 multi_instance: true 34 additional_permissions: 35 description: "" 36 default_behavior: 37 auto_detection: 38 description: | 39 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). 40 The full list of endpoints is available in the collector's [configuration file](https://github.com/netdata/go.d.plugin/blob/master/config/go.d/prometheus.conf). 41 limits: 42 description: "" 43 performance_impact: 44 description: "" 45 setup: &setup 46 prerequisites: 47 list: [] 48 configuration: 49 file: 50 name: go.d/prometheus.conf 51 options: 52 description: | 53 The following options can be defined globally: update_every, autodetection_retry. 54 folding: 55 title: Config options 56 enabled: true 57 list: 58 - name: update_every 59 description: Data collection frequency. 60 default_value: 10 61 required: false 62 - name: autodetection_retry 63 description: Recheck interval in seconds. Zero means no recheck will be scheduled. 64 default_value: 0 65 required: false 66 - name: url 67 description: Server URL. 68 default_value: "" 69 required: true 70 - name: selector 71 description: Time series selector (filter). 72 default_value: "" 73 required: false 74 detailed_description: | 75 This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected. 76 77 - Logic: (pattern1 OR pattern2) AND !(pattern3 or pattern4) 78 - Pattern syntax: [selector](https://github.com/netdata/go.d.plugin/blob/master/pkg/prometheus/selector/README.md). 79 - Option syntax: 80 81 ```yaml 82 selector: 83 allow: 84 - pattern1 85 - pattern2 86 deny: 87 - pattern3 88 - pattern4 89 ``` 90 - name: fallback_type 91 description: Time series selector (filter). 92 default_value: "" 93 required: false 94 detailed_description: | 95 This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them. 96 97 - Metric name pattern syntax: [shell file name pattern](https://golang.org/pkg/path/filepath/#Match). 98 - Option syntax: 99 100 ```yaml 101 fallback_type: 102 counter: 103 - metric_name_pattern1 104 - metric_name_pattern2 105 gauge: 106 - metric_name_pattern3 107 - metric_name_pattern4 108 ``` 109 - name: max_time_series 110 description: Global time series limit. If an endpoint returns number of time series > limit the data is not processed. 111 default_value: 2000 112 required: false 113 - name: max_time_series_per_metric 114 description: Time series per metric (metric name) limit. Metrics with number of time series > limit are skipped. 115 default_value: 200 116 required: false 117 - name: timeout 118 description: HTTP request timeout. 119 default_value: 10 120 required: false 121 - name: username 122 description: Username for basic HTTP authentication. 123 default_value: "" 124 required: false 125 - name: password 126 description: Password for basic HTTP authentication. 127 default_value: "" 128 required: false 129 - name: proxy_url 130 description: Proxy URL. 131 default_value: "" 132 required: false 133 - name: proxy_username 134 description: Username for proxy basic HTTP authentication. 135 default_value: "" 136 required: false 137 - name: proxy_password 138 description: Password for proxy basic HTTP authentication. 139 default_value: "" 140 required: false 141 - name: method 142 description: HTTP request method. 143 default_value: "GET" 144 required: false 145 - name: body 146 description: HTTP request body. 147 default_value: "" 148 required: false 149 - name: headers 150 description: HTTP request headers. 151 default_value: "" 152 required: false 153 - name: not_follow_redirects 154 description: Redirect handling policy. Controls whether the client follows redirects. 155 default_value: no 156 required: false 157 - name: tls_skip_verify 158 description: Server certificate chain and hostname validation policy. Controls whether the client performs this check. 159 default_value: no 160 required: false 161 - name: tls_ca 162 description: Certification authority that the client uses when verifying the server's certificates. 163 default_value: "" 164 required: false 165 - name: tls_cert 166 description: Client TLS certificate. 167 default_value: "" 168 required: false 169 - name: tls_key 170 description: Client TLS key. 171 default_value: "" 172 required: false 173 examples: 174 folding: 175 title: Config 176 enabled: true 177 list: 178 - name: Basic 179 folding: 180 enabled: false 181 description: | 182 > **Note**: Change the port of the monitored application on which it provides metrics. 183 184 A basic example configuration. 185 config: | 186 jobs: 187 - name: local 188 url: http://127.0.0.1:9090/metrics 189 - name: Read metrics from a file 190 description: An example configuration to read metrics from a file. 191 config: | 192 # use "file://" scheme 193 jobs: 194 - name: myapp 195 url: file:///opt/metrics/myapp/metrics.txt 196 - name: HTTP authentication 197 description: | 198 > **Note**: Change the port of the monitored application on which it provides metrics. 199 200 Basic HTTP authentication. 201 config: | 202 jobs: 203 - name: local 204 url: http://127.0.0.1:9090/metrics 205 username: username 206 password: password 207 - name: HTTPS with self-signed certificate 208 description: | 209 > **Note**: Change the port of the monitored application on which it provides metrics. 210 211 Do not validate server certificate chain and hostname. 212 config: | 213 jobs: 214 - name: local 215 url: https://127.0.0.1:9090/metrics 216 tls_skip_verify: yes 217 - name: Multi-instance 218 description: | 219 > **Note**: When you define multiple jobs, their names must be unique. 220 > **Note**: Change the port of the monitored application on which it provides metrics. 221 222 Collecting metrics from local and remote instances. 223 config: | 224 jobs: 225 - name: local 226 url: http://127.0.0.1:9090/metrics 227 228 - name: remote 229 url: http://192.0.2.1:9090/metrics 230 troubleshooting: 231 problems: 232 list: [] 233 alerts: [] 234 metrics: 235 folding: 236 title: Metrics 237 enabled: false 238 description: | 239 This collector has built-in grouping logic based on the [type of metrics](https://prometheus.io/docs/concepts/metric_types/). 240 241 | Metric | Chart | Dimension(s) | Algorithm | 242 |---------------------------|-------------------------------------------|----------------------|-------------| 243 | Gauge | for each label set | one, the metric name | absolute | 244 | Counter | for each label set | one, the metric name | incremental | 245 | Summary (quantiles) | for each label set (excluding 'quantile') | for each quantile | absolute | 246 | Summary (sum and count) | for each label set | the metric name | incremental | 247 | Histogram (buckets) | for each label set (excluding 'le') | for each bucket | incremental | 248 | Histogram (sum and count) | for each label set | the metric name | incremental | 249 250 Untyped metrics (have no '# TYPE') processing: 251 252 - As Counter or Gauge depending on pattern match when 'fallback_type' is used. 253 - As Counter if it has suffix '_total'. 254 - As Summary if it has 'quantile' label. 255 - As Histogram if it has 'le' label. 256 257 **The rest are ignored**. 258 availability: [] 259 scopes: [] 260 - <<: *module 261 meta: 262 <<: *meta 263 id: collector-go.d.plugin-prometheus-a10-acos 264 most_popular: false 265 community: true 266 monitored_instance: 267 name: A10 ACOS network devices 268 link: https://github.com/a10networks/PrometheusExporter 269 icon_filename: a10-networks.png 270 categories: 271 - data-collection.networking-stack-and-network-interfaces 272 keywords: 273 - network monitoring 274 - network performance 275 - traffic analysis 276 overview: 277 <<: *overview 278 data_collection: 279 metrics_description: | 280 Monitor A10 Networks device metrics for comprehensive management and analysis. 281 method_description: | 282 Metrics are gathered by periodically sending HTTP requests to [A10-Networks Prometheus Exporter](https://github.com/a10networks/PrometheusExporter). 283 setup: 284 <<: *setup 285 prerequisites: 286 list: 287 - title: Install Exporter 288 description: | 289 Install [A10-Networks Prometheus Exporter](https://github.com/a10networks/PrometheusExporter) by following the instructions mentioned in the exporter README. 290 - <<: *module 291 meta: 292 <<: *meta 293 id: collector-go.d.plugin-prometheus-airflow 294 most_popular: false 295 community: true 296 monitored_instance: 297 name: Apache Airflow 298 link: https://github.com/shalb/airflow-exporter 299 icon_filename: airflow.png 300 categories: 301 - data-collection.apm 302 keywords: [] 303 overview: 304 <<: *overview 305 data_collection: 306 metrics_description: | 307 Monitor Apache Airflow metrics to optimize task scheduling and workflow management. 308 method_description: | 309 Metrics are gathered by periodically sending HTTP requests to [Airflow exporter](https://github.com/shalb/airflow-exporter). 310 setup: 311 <<: *setup 312 prerequisites: 313 list: 314 - title: Install Exporter 315 description: | 316 Install [Airflow exporter](https://github.com/shalb/airflow-exporter) by following the instructions mentioned in the exporter README. 317 - <<: *module 318 meta: 319 <<: *meta 320 most_popular: false 321 community: true 322 id: collector-go.d.plugin-prometheus-alibaba-cloud 323 monitored_instance: 324 name: Alibaba Cloud 325 link: https://github.com/aylei/aliyun-exporter # FIXME: This repository has been archived by the owner on Oct 28, 2019 326 icon_filename: alibaba-cloud.svg 327 categories: 328 - data-collection.cloud-provider-managed 329 keywords: 330 - cloud services 331 - cloud computing 332 - scalability 333 overview: 334 <<: *overview 335 data_collection: 336 metrics_description: | 337 Monitor Alibaba Cloud services and resources for efficient management and cost optimization. 338 method_description: | 339 Metrics are gathered by periodically sending HTTP requests to [Alibaba Cloud Exporter](https://github.com/aylei/aliyun-exporter). 340 setup: 341 <<: *setup 342 prerequisites: 343 list: 344 - title: Install Exporter 345 description: | 346 Install [Alibaba Cloud Exporter](https://github.com/aylei/aliyun-exporter) by following the instructions mentioned in the exporter README. 347 - <<: *module 348 meta: 349 <<: *meta 350 id: collector-go.d.plugin-prometheus-flink 351 most_popular: false 352 community: true 353 monitored_instance: 354 name: Apache Flink 355 link: https://github.com/matsumana/flink_exporter 356 icon_filename: apache_flink.png 357 categories: 358 - data-collection.apm 359 keywords: 360 - web server 361 - http 362 - https 363 overview: 364 <<: *overview 365 data_collection: 366 metrics_description: | 367 Keep an eye on Apache Flink metrics for efficient stream processing and application management. 368 method_description: | 369 Metrics are gathered by periodically sending HTTP requests to [Apache Flink Metrics Reporter](https://github.com/matsumana/flink_exporter). 370 setup: 371 <<: *setup 372 prerequisites: 373 list: 374 - title: Install Exporter 375 description: | 376 Install [Apache Flink Metrics Reporter](https://github.com/matsumana/flink_exporter) by following the instructions mentioned in the exporter README. 377 - <<: *module 378 meta: 379 <<: *meta 380 most_popular: false 381 community: true 382 id: collector-go.d.plugin-prometheus-aruba 383 monitored_instance: 384 name: Aruba devices 385 link: https://github.com/slashdoom/aruba_exporter 386 icon_filename: aruba.svg 387 categories: 388 - data-collection.networking-stack-and-network-interfaces 389 keywords: 390 - network monitoring 391 - network performance 392 - aruba devices 393 overview: 394 <<: *overview 395 data_collection: 396 metrics_description: | 397 Monitor Aruba Networks devices performance metrics for comprehensive network management and analysis. 398 method_description: | 399 Metrics are gathered by periodically sending HTTP requests to [Aruba Exporter](https://github.com/slashdoom/aruba_exporter). 400 setup: 401 <<: *setup 402 prerequisites: 403 list: 404 - title: Install Exporter 405 description: | 406 Install [Aruba Exporter](https://github.com/slashdoom/aruba_exporter) by following the instructions mentioned in the exporter README. 407 - <<: *module 408 meta: 409 <<: *meta 410 id: collector-go.d.plugin-prometheus-aws_ec2 411 most_popular: false 412 community: true 413 monitored_instance: 414 name: AWS EC2 Compute instances 415 link: https://github.com/O1ahmad/aws_ec2_exporter 416 icon_filename: aws-ec2.png 417 categories: 418 - data-collection.cloud-provider-managed 419 keywords: 420 - cloud services 421 - cloud computing 422 - aws services 423 overview: 424 <<: *overview 425 data_collection: 426 metrics_description: | 427 Track AWS EC2 instances key metrics for optimized performance and cost management. 428 method_description: | 429 Metrics are gathered by periodically sending HTTP requests to [AWS EC2 Exporter](https://github.com/O1ahmad/aws_ec2_exporter). 430 setup: 431 <<: *setup 432 prerequisites: 433 list: 434 - title: Install Exporter 435 description: | 436 Install [AWS EC2 Exporter](https://github.com/O1ahmad/aws_ec2_exporter) by following the instructions mentioned in the exporter README. 437 - <<: *module 438 meta: 439 <<: *meta 440 id: collector-go.d.plugin-prometheus-aws_ecs 441 most_popular: false 442 community: true 443 monitored_instance: 444 name: AWS ECS 445 link: https://github.com/bevers222/ecs-exporter 446 icon_filename: amazon-ecs.png 447 categories: 448 - data-collection.cloud-provider-managed 449 keywords: 450 - cloud services 451 - cloud computing 452 - aws services 453 overview: 454 <<: *overview 455 data_collection: 456 metrics_description: | 457 Keep an eye on AWS ECS services and resources for optimized container management and orchestration. 458 method_description: | 459 Metrics are gathered by periodically sending HTTP requests to [AWS ECS exporter](https://github.com/bevers222/ecs-exporter). 460 setup: 461 <<: *setup 462 prerequisites: 463 list: 464 - title: Install Exporter 465 description: | 466 Install [AWS ECS exporter](https://github.com/bevers222/ecs-exporter) by following the instructions mentioned in the exporter README. 467 - <<: *module 468 meta: 469 <<: *meta 470 id: collector-go.d.plugin-prometheus-aws_health 471 most_popular: false 472 community: true 473 monitored_instance: 474 name: AWS Health events 475 link: https://github.com/vladvasiliu/aws-health-exporter-rs 476 icon_filename: aws.svg 477 categories: 478 - data-collection.cloud-provider-managed 479 keywords: 480 - cloud services 481 - cloud computing 482 - aws services 483 overview: 484 <<: *overview 485 data_collection: 486 metrics_description: | 487 Track AWS service health metrics for proactive incident management and resolution. 488 method_description: | 489 Metrics are gathered by periodically sending HTTP requests to [AWS Health Exporter](https://github.com/vladvasiliu/aws-health-exporter-rs). 490 setup: 491 <<: *setup 492 prerequisites: 493 list: 494 - title: Install Exporter 495 description: | 496 Install [AWS Health Exporter](https://github.com/vladvasiliu/aws-health-exporter-rs) by following the instructions mentioned in the exporter README. 497 - <<: *module 498 meta: 499 <<: *meta 500 id: collector-go.d.plugin-prometheus-aws_instance_health 501 most_popular: false 502 community: true 503 monitored_instance: 504 name: AWS instance health 505 link: https://github.com/bobtfish/aws-instance-health-exporter 506 icon_filename: aws.svg 507 categories: 508 - data-collection.cloud-provider-managed 509 keywords: 510 - cloud services 511 - cloud computing 512 - aws services 513 overview: 514 <<: *overview 515 data_collection: 516 metrics_description: | 517 Monitor the health of AWS instances for improved performance and availability. 518 method_description: | 519 Metrics are gathered by periodically sending HTTP requests to [AWS instance health exporter](https://github.com/bobtfish/aws-instance-health-exporter). 520 setup: 521 <<: *setup 522 prerequisites: 523 list: 524 - title: Install Exporter 525 description: | 526 Install [AWS instance health exporter](https://github.com/bobtfish/aws-instance-health-exporter) by following the instructions mentioned in the exporter README. 527 - <<: *module 528 meta: 529 <<: *meta 530 id: collector-go.d.plugin-prometheus-aws_s3 531 most_popular: false 532 community: true 533 monitored_instance: 534 name: AWS S3 buckets 535 link: https://github.com/ribbybibby/s3_exporter 536 icon_filename: aws-s3.png 537 categories: 538 - data-collection.cloud-provider-managed 539 keywords: 540 - cloud services 541 - cloud computing 542 - aws services 543 overview: 544 <<: *overview 545 data_collection: 546 metrics_description: | 547 Monitor AWS S3 storage metrics for optimized performance, data management, and cost efficiency. 548 method_description: | 549 Metrics are gathered by periodically sending HTTP requests to [AWS S3 Exporter](https://github.com/ribbybibby/s3_exporter). 550 setup: 551 <<: *setup 552 prerequisites: 553 list: 554 - title: Install Exporter 555 description: | 556 Install [AWS S3 Exporter](https://github.com/ribbybibby/s3_exporter) by following the instructions mentioned in the exporter README. 557 - <<: *module 558 meta: 559 <<: *meta 560 id: collector-go.d.plugin-prometheus-aws_sqs 561 most_popular: false 562 community: true 563 monitored_instance: 564 name: AWS SQS 565 link: https://github.com/jmal98/sqs-exporter 566 icon_filename: aws-sqs.png 567 categories: 568 - data-collection.cloud-provider-managed 569 keywords: 570 - cloud services 571 - cloud computing 572 - aws services 573 overview: 574 <<: *overview 575 data_collection: 576 metrics_description: | 577 Track AWS SQS messaging metrics for efficient message processing and queue management. 578 method_description: | 579 Metrics are gathered by periodically sending HTTP requests to [AWS SQS Exporter](https://github.com/jmal98/sqs-exporter). 580 setup: 581 <<: *setup 582 prerequisites: 583 list: 584 - title: Install Exporter 585 description: | 586 Install [AWS SQS Exporter](https://github.com/jmal98/sqs-exporter) by following the instructions mentioned in the exporter README. 587 - <<: *module 588 meta: 589 <<: *meta 590 id: collector-go.d.plugin-prometheus-azure_ad_app_passwords 591 most_popular: false 592 community: true 593 monitored_instance: 594 name: Azure AD App passwords 595 link: https://github.com/vladvasiliu/azure-app-secrets-monitor 596 icon_filename: azure.png 597 categories: 598 - data-collection.cloud-provider-managed 599 keywords: 600 - cloud services 601 - cloud computing 602 - azure services 603 overview: 604 <<: *overview 605 data_collection: 606 metrics_description: | 607 Safeguard and track Azure App secrets for enhanced security and access management. 608 method_description: | 609 Metrics are gathered by periodically sending HTTP requests to [Azure App Secrets monitor](https://github.com/vladvasiliu/azure-app-secrets-monitor). 610 setup: 611 <<: *setup 612 prerequisites: 613 list: 614 - title: Install Exporter 615 description: | 616 Install [Azure App Secrets monitor](https://github.com/vladvasiliu/azure-app-secrets-monitor) by following the instructions mentioned in the exporter README. 617 - <<: *module 618 meta: 619 <<: *meta 620 id: collector-go.d.plugin-prometheus-azure_elastic_sql 621 most_popular: false 622 community: true 623 monitored_instance: 624 name: Azure Elastic Pool SQL 625 link: https://github.com/benclapp/azure_elastic_sql_exporter 626 icon_filename: azure-elastic-sql.png 627 categories: 628 - data-collection.cloud-provider-managed 629 keywords: 630 - database 631 - relational db 632 - data querying 633 overview: 634 <<: *overview 635 data_collection: 636 metrics_description: | 637 Monitor Azure Elastic SQL performance metrics for efficient database management and query optimization. 638 method_description: | 639 Metrics are gathered by periodically sending HTTP requests to [Azure Elastic SQL Exporter](https://github.com/benclapp/azure_elastic_sql_exporter). 640 setup: 641 <<: *setup 642 prerequisites: 643 list: 644 - title: Install Exporter 645 description: | 646 Install [Azure Elastic SQL Exporter](https://github.com/benclapp/azure_elastic_sql_exporter) by following the instructions mentioned in the exporter README. 647 - <<: *module 648 meta: 649 <<: *meta 650 id: collector-go.d.plugin-prometheus-azure_app 651 most_popular: false 652 community: true 653 monitored_instance: 654 name: Azure application 655 link: https://github.com/RobustPerception/azure_metrics_exporter 656 icon_filename: azure.png 657 categories: 658 - data-collection.cloud-provider-managed 659 keywords: 660 - cloud services 661 - cloud computing 662 - azure services 663 overview: 664 <<: *overview 665 data_collection: 666 metrics_description: | 667 Track Azure Monitor metrics for comprehensive resource management and performance optimization. 668 method_description: | 669 Metrics are gathered by periodically sending HTTP requests to [Azure Monitor exporter](https://github.com/RobustPerception/azure_metrics_exporter). 670 setup: 671 <<: *setup 672 prerequisites: 673 list: 674 - title: Install Exporter 675 description: | 676 Install [Azure Monitor exporter](https://github.com/RobustPerception/azure_metrics_exporter) by following the instructions mentioned in the exporter README. 677 - <<: *module 678 meta: 679 <<: *meta 680 id: collector-go.d.plugin-prometheus-azure_res 681 most_popular: false 682 community: true 683 monitored_instance: 684 name: Azure Resources 685 link: https://github.com/FXinnovation/azure-resources-exporter 686 icon_filename: azure.png 687 categories: 688 - data-collection.cloud-provider-managed 689 keywords: 690 - cloud services 691 - cloud computing 692 - azure services 693 overview: 694 <<: *overview 695 data_collection: 696 metrics_description: | 697 Keep tabs on Azure resources vital metrics for efficient cloud management and cost optimization. 698 method_description: | 699 Metrics are gathered by periodically sending HTTP requests to [Azure Resources Exporter](https://github.com/FXinnovation/azure-resources-exporter). 700 setup: 701 <<: *setup 702 prerequisites: 703 list: 704 - title: Install Exporter 705 description: | 706 Install [Azure Resources Exporter](https://github.com/FXinnovation/azure-resources-exporter) by following the instructions mentioned in the exporter README. 707 - <<: *module 708 meta: 709 <<: *meta 710 id: collector-go.d.plugin-prometheus-azure_service_bus 711 most_popular: false 712 community: true 713 monitored_instance: 714 name: Azure Service Bus 715 link: https://github.com/marcinbudny/servicebus_exporter 716 icon_filename: azure-service-bus.png 717 categories: 718 - data-collection.cloud-provider-managed 719 keywords: 720 - cloud services 721 - cloud computing 722 - azure services 723 overview: 724 <<: *overview 725 data_collection: 726 metrics_description: | 727 Monitor Azure Service Bus messaging metrics for optimized communication and integration. 728 method_description: | 729 Metrics are gathered by periodically sending HTTP requests to [Azure Service Bus Exporter](https://github.com/marcinbudny/servicebus_exporter). 730 setup: 731 <<: *setup 732 prerequisites: 733 list: 734 - title: Install Exporter 735 description: | 736 Install [Azure Service Bus Exporter](https://github.com/marcinbudny/servicebus_exporter) by following the instructions mentioned in the exporter README. 737 - <<: *module 738 meta: 739 <<: *meta 740 id: collector-go.d.plugin-prometheus-azure_sql 741 most_popular: false 742 community: true 743 monitored_instance: 744 name: Azure SQL 745 link: https://github.com/iamseth/azure_sql_exporter 746 icon_filename: azure-sql.png 747 categories: 748 - data-collection.cloud-provider-managed 749 keywords: 750 - database 751 - relational db 752 - data querying 753 overview: 754 <<: *overview 755 data_collection: 756 metrics_description: | 757 Track Azure SQL performance metrics for efficient database management and query performance. 758 method_description: | 759 Metrics are gathered by periodically sending HTTP requests to [Azure SQL exporter](https://github.com/iamseth/azure_sql_exporter). 760 setup: 761 <<: *setup 762 prerequisites: 763 list: 764 - title: Install Exporter 765 description: | 766 Install [Azure SQL exporter](https://github.com/iamseth/azure_sql_exporter) by following the instructions mentioned in the exporter README. 767 - <<: *module 768 meta: 769 <<: *meta 770 id: collector-go.d.plugin-prometheus-bigquery 771 most_popular: false 772 community: true 773 monitored_instance: 774 name: BigQuery 775 link: https://github.com/m-lab/prometheus-bigquery-exporter 776 icon_filename: bigquery.png 777 categories: 778 - data-collection.cloud-provider-managed 779 keywords: [] 780 overview: 781 <<: *overview 782 data_collection: 783 metrics_description: | 784 Monitor Google BigQuery metrics for optimized data processing and analysis. 785 method_description: | 786 Metrics are gathered by periodically sending HTTP requests to [BigQuery Exporter](https://github.com/m-lab/prometheus-bigquery-exporter). 787 setup: 788 <<: *setup 789 prerequisites: 790 list: 791 - title: Install Exporter 792 description: | 793 Install [BigQuery Exporter](https://github.com/m-lab/prometheus-bigquery-exporter) by following the instructions mentioned in the exporter README. 794 - <<: *module 795 meta: 796 <<: *meta 797 id: collector-go.d.plugin-prometheus-blackbox 798 most_popular: false 799 community: true 800 monitored_instance: 801 name: Blackbox 802 link: https://github.com/prometheus/blackbox_exporter 803 icon_filename: prometheus.svg 804 categories: 805 - data-collection.synthetic-checks 806 keywords: 807 - blackbox 808 overview: 809 <<: *overview 810 data_collection: 811 metrics_description: | 812 Track external service availability and response times with Blackbox monitoring. 813 method_description: | 814 Metrics are gathered by periodically sending HTTP requests to [Blackbox exporter](https://github.com/prometheus/blackbox_exporter). 815 setup: 816 <<: *setup 817 prerequisites: 818 list: 819 - title: Install Exporter 820 description: | 821 Install [Blackbox exporter](https://github.com/prometheus/blackbox_exporter) by following the instructions mentioned in the exporter README. 822 - <<: *module 823 meta: 824 <<: *meta 825 id: collector-go.d.plugin-prometheus-borg 826 most_popular: false 827 community: true 828 monitored_instance: 829 name: Borg backup 830 link: https://github.com/k0ral/borg-exporter 831 icon_filename: borg.svg 832 categories: 833 - data-collection.storage-mount-points-and-filesystems 834 keywords: [] 835 overview: 836 <<: *overview 837 data_collection: 838 metrics_description: | 839 Track Borg backup performance metrics for efficient data protection and recovery. 840 method_description: | 841 Metrics are gathered by periodically sending HTTP requests to [Borg backup exporter](https://github.com/k0ral/borg-exporter). 842 setup: 843 <<: *setup 844 prerequisites: 845 list: 846 - title: Install Exporter 847 description: | 848 Install [Borg backup exporter](https://github.com/k0ral/borg-exporter) by following the instructions mentioned in the exporter README. 849 - <<: *module 850 meta: 851 <<: *meta 852 id: collector-go.d.plugin-prometheus-cadvisor 853 most_popular: false 854 community: true 855 monitored_instance: 856 name: cAdvisor 857 link: https://github.com/google/cadvisor 858 icon_filename: cadvisor.png 859 categories: 860 - data-collection.containers-and-vms 861 keywords: [] 862 overview: 863 <<: *overview 864 data_collection: 865 metrics_description: | 866 Monitor container resource usage and performance metrics with cAdvisor for efficient container management. 867 method_description: | 868 Metrics are gathered by periodically sending HTTP requests to [cAdvisor](https://github.com/google/cadvisor). 869 setup: 870 <<: *setup 871 prerequisites: 872 list: 873 - title: Install Exporter 874 description: | 875 Install [cAdvisor](https://github.com/google/cadvisor) by following the instructions mentioned in the exporter README. 876 - <<: *module 877 meta: 878 <<: *meta 879 id: collector-go.d.plugin-prometheus-cilium_agent 880 most_popular: false 881 community: true 882 monitored_instance: 883 name: Cilium Agent 884 link: https://github.com/cilium/cilium 885 icon_filename: cilium.png 886 categories: 887 - data-collection.kubernetes 888 keywords: [] 889 overview: 890 <<: *overview 891 data_collection: 892 metrics_description: | 893 Keep an eye on Cilium Agent metrics for optimized network security and connectivity. 894 method_description: | 895 Metrics are gathered by periodically sending HTTP requests to [Cilium Agent](https://github.com/cilium/cilium). 896 setup: 897 <<: *setup 898 prerequisites: 899 list: 900 - title: Install Exporter 901 description: | 902 Install [Cilium Agent](https://github.com/cilium/cilium) by following the instructions mentioned in the exporter README. 903 - <<: *module 904 meta: 905 <<: *meta 906 id: collector-go.d.plugin-prometheus-cilium_operator 907 most_popular: false 908 community: true 909 monitored_instance: 910 name: Cilium Operator 911 link: https://github.com/cilium/cilium 912 icon_filename: cilium.png 913 categories: 914 - data-collection.kubernetes 915 keywords: [] 916 overview: 917 <<: *overview 918 data_collection: 919 metrics_description: | 920 Monitor Cilium Operator metrics for efficient Kubernetes network security management. 921 method_description: | 922 Metrics are gathered by periodically sending HTTP requests to [Cilium Operator](https://github.com/cilium/cilium). 923 setup: 924 <<: *setup 925 prerequisites: 926 list: 927 - title: Install Exporter 928 description: | 929 Install [Cilium Operator](https://github.com/cilium/cilium) by following the instructions mentioned in the exporter README. 930 - <<: *module 931 meta: 932 <<: *meta 933 id: collector-go.d.plugin-prometheus-cilium_proxy 934 most_popular: false 935 community: true 936 monitored_instance: 937 name: Cilium Proxy 938 link: https://github.com/cilium/proxy 939 icon_filename: cilium.png 940 categories: 941 - data-collection.kubernetes 942 keywords: [] 943 overview: 944 <<: *overview 945 data_collection: 946 metrics_description: | 947 Track Cilium Proxy metrics for enhanced network security and performance. 948 method_description: | 949 Metrics are gathered by periodically sending HTTP requests to [Cilium Proxy](https://github.com/cilium/proxy). 950 setup: 951 <<: *setup 952 prerequisites: 953 list: 954 - title: Install Exporter 955 description: | 956 Install [Cilium Proxy](https://github.com/cilium/proxy) by following the instructions mentioned in the exporter README. 957 - <<: *module 958 meta: 959 <<: *meta 960 id: collector-go.d.plugin-prometheus-cisco_aci 961 most_popular: false 962 community: true 963 monitored_instance: 964 name: Cisco ACI 965 link: https://github.com/RavuAlHemio/prometheus_aci_exporter 966 icon_filename: cisco.svg 967 categories: 968 - data-collection.networking-stack-and-network-interfaces 969 keywords: 970 - network monitoring 971 - network performance 972 - cisco devices 973 overview: 974 <<: *overview 975 data_collection: 976 metrics_description: | 977 Monitor Cisco ACI infrastructure metrics for optimized network performance and resource management. 978 method_description: | 979 Metrics are gathered by periodically sending HTTP requests to [Cisco ACI Exporter](https://github.com/RavuAlHemio/prometheus_aci_exporter). 980 setup: 981 <<: *setup 982 prerequisites: 983 list: 984 - title: Install Exporter 985 description: | 986 Install [Cisco ACI Exporter](https://github.com/RavuAlHemio/prometheus_aci_exporter) by following the instructions mentioned in the exporter README. 987 - <<: *module 988 meta: 989 <<: *meta 990 id: collector-go.d.plugin-prometheus-citrix_netscaler 991 most_popular: false 992 community: true 993 monitored_instance: 994 name: Citrix NetScaler 995 link: https://github.com/rokett/Citrix-NetScaler-Exporter 996 icon_filename: citrix.svg 997 categories: 998 - data-collection.networking-stack-and-network-interfaces 999 keywords: 1000 - network monitoring 1001 - network performance 1002 - traffic analysis 1003 overview: 1004 <<: *overview 1005 data_collection: 1006 metrics_description: | 1007 Keep tabs on NetScaler performance metrics for efficient application delivery and load balancing. 1008 method_description: | 1009 Metrics are gathered by periodically sending HTTP requests to [Citrix NetScaler Exporter](https://github.com/rokett/Citrix-NetScaler-Exporter). 1010 setup: 1011 <<: *setup 1012 prerequisites: 1013 list: 1014 - title: Install Exporter 1015 description: | 1016 Install [Citrix NetScaler Exporter](https://github.com/rokett/Citrix-NetScaler-Exporter) by following the instructions mentioned in the exporter README. 1017 - <<: *module 1018 meta: 1019 <<: *meta 1020 id: collector-go.d.plugin-prometheus-clickhouse 1021 most_popular: false 1022 community: true 1023 monitored_instance: 1024 name: ClickHouse 1025 link: https://github.com/ClickHouse/ClickHouse 1026 icon_filename: clickhouse.svg 1027 categories: 1028 - data-collection.database-servers 1029 keywords: [] 1030 overview: 1031 <<: *overview 1032 data_collection: 1033 metrics_description: | 1034 Monitor ClickHouse database metrics for efficient data storage and query performance. 1035 method_description: | 1036 Metrics are gathered by periodically sending HTTP requests to the ClickHouse built-in Prometheus exporter. 1037 setup: 1038 <<: *setup 1039 prerequisites: 1040 list: 1041 - title: Configure built-in Prometheus exporter 1042 description: | 1043 To configure the built-in Prometheus exporter, follow the [official documentation](https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-prometheus). 1044 - <<: *module 1045 meta: 1046 <<: *meta 1047 id: collector-go.d.plugin-prometheus-cloudflare_pcap 1048 most_popular: false 1049 community: true 1050 monitored_instance: 1051 name: Cloudflare PCAP 1052 link: https://github.com/wehkamp/docker-prometheus-cloudflare-exporter 1053 icon_filename: cloudflare.svg 1054 categories: 1055 - data-collection.web-servers-and-web-proxies 1056 keywords: 1057 - cloud services 1058 - cloud computing 1059 - scalability 1060 overview: 1061 <<: *overview 1062 data_collection: 1063 metrics_description: | 1064 Keep tabs on Cloudflare CDN and security metrics for optimized content delivery and protection. 1065 method_description: | 1066 Metrics are gathered by periodically sending HTTP requests to [Cloudflare exporter](https://github.com/wehkamp/docker-prometheus-cloudflare-exporter). 1067 setup: 1068 <<: *setup 1069 prerequisites: 1070 list: 1071 - title: Install Exporter 1072 description: | 1073 Install [Cloudflare exporter](https://github.com/wehkamp/docker-prometheus-cloudflare-exporter) by following the instructions mentioned in the exporter README. 1074 - <<: *module 1075 meta: 1076 id: collector-go.d.plugin-prometheus-aws_cloudwatch 1077 <<: *meta 1078 most_popular: false 1079 community: true 1080 monitored_instance: 1081 name: CloudWatch 1082 link: https://github.com/prometheus/cloudwatch_exporter 1083 icon_filename: aws-cloudwatch.png 1084 categories: 1085 - data-collection.cloud-provider-managed 1086 keywords: 1087 - cloud services 1088 - cloud computing 1089 - scalability 1090 overview: 1091 <<: *overview 1092 data_collection: 1093 metrics_description: | 1094 Monitor AWS CloudWatch metrics for comprehensive AWS resource management and performance optimization. 1095 method_description: | 1096 Metrics are gathered by periodically sending HTTP requests to [CloudWatch exporter](https://github.com/prometheus/cloudwatch_exporter). 1097 setup: 1098 <<: *setup 1099 prerequisites: 1100 list: 1101 - title: Install Exporter 1102 description: | 1103 Install [CloudWatch exporter](https://github.com/prometheus/cloudwatch_exporter) by following the instructions mentioned in the exporter README. 1104 - <<: *module 1105 meta: 1106 <<: *meta 1107 id: collector-go.d.plugin-prometheus-concourse 1108 most_popular: false 1109 community: true 1110 monitored_instance: 1111 name: Concourse 1112 link: https://concourse-ci.org 1113 icon_filename: concourse.png 1114 categories: 1115 - data-collection.ci-cd-systems 1116 keywords: [] 1117 overview: 1118 <<: *overview 1119 data_collection: 1120 metrics_description: | 1121 Monitor Concourse CI/CD pipeline metrics for optimized workflow management and deployment. 1122 method_description: | 1123 Metrics are gathered by periodically sending HTTP requests to the Concourse built-in Prometheus exporter. 1124 setup: 1125 <<: *setup 1126 prerequisites: 1127 list: 1128 - title: Configure built-in Prometheus exporter 1129 description: | 1130 To configure the built-in Prometheus exporter, follow the [official documentation](https://concourse-ci.org/metrics.html#configuring-metrics). 1131 - <<: *module 1132 meta: 1133 <<: *meta 1134 id: collector-go.d.plugin-prometheus-crowdsec 1135 most_popular: false 1136 community: true 1137 monitored_instance: 1138 name: Crowdsec 1139 link: https://docs.crowdsec.net/docs/observability/prometheus 1140 icon_filename: crowdsec.png 1141 categories: 1142 - data-collection.security-systems 1143 keywords: [] 1144 overview: 1145 <<: *overview 1146 data_collection: 1147 metrics_description: | 1148 Monitor Crowdsec security metrics for efficient threat detection and response. 1149 method_description: | 1150 Metrics are gathered by periodically sending HTTP requests to the Crowdsec build-in Prometheus exporter. 1151 setup: 1152 <<: *setup 1153 prerequisites: 1154 list: 1155 - title: Configure built-in Prometheus exporter 1156 description: | 1157 To configure the built-in Prometheus exporter, follow the [official documentation](https://docs.crowdsec.net/docs/observability/prometheus/). 1158 - <<: *module 1159 meta: 1160 <<: *meta 1161 id: collector-go.d.plugin-prometheus-dell_emc_ecs 1162 most_popular: false 1163 community: true 1164 monitored_instance: 1165 name: Dell EMC ECS cluster 1166 link: https://github.com/paychex/prometheus-emcecs-exporter 1167 icon_filename: dell.svg 1168 categories: 1169 - data-collection.cloud-provider-managed 1170 keywords: [] 1171 overview: 1172 <<: *overview 1173 data_collection: 1174 metrics_description: | 1175 Monitor Dell EMC ECS object storage metrics for optimized storage management and performance. 1176 method_description: | 1177 Metrics are gathered by periodically sending HTTP requests to [Dell EMC ECS Exporter](https://github.com/paychex/prometheus-emcecs-exporter). 1178 setup: 1179 <<: *setup 1180 prerequisites: 1181 list: 1182 - title: Install Exporter 1183 description: | 1184 Install [Dell EMC ECS Exporter](https://github.com/paychex/prometheus-emcecs-exporter) by following the instructions mentioned in the exporter README. 1185 - <<: *module 1186 meta: 1187 <<: *meta 1188 id: collector-go.d.plugin-prometheus-dell_emc_isilon 1189 most_popular: false 1190 community: true 1191 monitored_instance: 1192 name: Dell EMC Isilon cluster 1193 link: https://github.com/paychex/prometheus-isilon-exporter 1194 icon_filename: dell.svg 1195 categories: 1196 - data-collection.storage-mount-points-and-filesystems 1197 keywords: [] 1198 overview: 1199 <<: *overview 1200 data_collection: 1201 metrics_description: | 1202 Track Dell EMC Isilon scale-out NAS metrics for efficient storage management and performance. 1203 method_description: | 1204 Metrics are gathered by periodically sending HTTP requests to [Dell EMC Isilon Exporter](https://github.com/paychex/prometheus-isilon-exporter). 1205 setup: 1206 <<: *setup 1207 prerequisites: 1208 list: 1209 - title: Install Exporter 1210 description: | 1211 Install [Dell EMC Isilon Exporter](https://github.com/paychex/prometheus-isilon-exporter) by following the instructions mentioned in the exporter README. 1212 - <<: *module 1213 meta: 1214 <<: *meta 1215 id: collector-go.d.plugin-prometheus-digitalocean 1216 most_popular: false 1217 community: true 1218 monitored_instance: 1219 name: DigitalOcean 1220 link: https://github.com/metalmatze/digitalocean_exporter 1221 icon_filename: digitalocean.svg 1222 categories: 1223 - data-collection.cloud-provider-managed 1224 keywords: [] 1225 overview: 1226 <<: *overview 1227 data_collection: 1228 metrics_description: | 1229 Track DigitalOcean cloud provider metrics for optimized resource management and performance. 1230 method_description: | 1231 Metrics are gathered by periodically sending HTTP requests to [DigitalOcean Exporter](https://github.com/metalmatze/digitalocean_exporter). 1232 setup: 1233 <<: *setup 1234 prerequisites: 1235 list: 1236 - title: Install Exporter 1237 description: | 1238 Install [DigitalOcean Exporter](https://github.com/metalmatze/digitalocean_exporter) by following the instructions mentioned in the exporter README. 1239 - <<: *module 1240 meta: 1241 <<: *meta 1242 id: collector-go.d.plugin-prometheus-discourse 1243 most_popular: false 1244 community: true 1245 monitored_instance: 1246 name: Discourse 1247 link: https://github.com/discourse/discourse-prometheus 1248 icon_filename: discourse.svg 1249 categories: 1250 - data-collection.media-streaming-servers 1251 keywords: [] 1252 overview: 1253 <<: *overview 1254 data_collection: 1255 metrics_description: | 1256 Monitor Discourse forum metrics for efficient community management and engagement. 1257 method_description: | 1258 Metrics are gathered by periodically sending HTTP requests to [Discourse Exporter](https://github.com/discourse/discourse-prometheus). 1259 setup: 1260 <<: *setup 1261 prerequisites: 1262 list: 1263 - title: Install Exporter 1264 description: | 1265 Install [Discourse Exporter](https://github.com/discourse/discourse-prometheus) by following the instructions mentioned in the exporter README. 1266 - <<: *module 1267 meta: 1268 <<: *meta 1269 id: collector-go.d.plugin-prometheus-dynatrace 1270 most_popular: false 1271 community: true 1272 monitored_instance: 1273 name: Dynatrace 1274 link: https://github.com/Apside-TOP/dynatrace_exporter 1275 icon_filename: dynatrace.svg 1276 categories: 1277 - data-collection.observability 1278 keywords: [] 1279 overview: 1280 <<: *overview 1281 data_collection: 1282 metrics_description: | 1283 Monitor Dynatrace APM metrics for comprehensive application performance management. 1284 method_description: | 1285 Metrics are gathered by periodically sending HTTP requests to [Dynatrace Exporter](https://github.com/Apside-TOP/dynatrace_exporter). 1286 setup: 1287 <<: *setup 1288 prerequisites: 1289 list: 1290 - title: Install Exporter 1291 description: | 1292 Install [Dynatrace Exporter](https://github.com/Apside-TOP/dynatrace_exporter) by following the instructions mentioned in the exporter README. 1293 - <<: *module 1294 meta: 1295 <<: *meta 1296 id: collector-go.d.plugin-prometheus-eos_web 1297 most_popular: false 1298 community: true 1299 monitored_instance: 1300 name: EOS 1301 link: https://eos-web.web.cern.ch/eos-web/ 1302 icon_filename: eos.png 1303 categories: 1304 - data-collection.storage-mount-points-and-filesystems 1305 keywords: [] 1306 overview: 1307 <<: *overview 1308 data_collection: 1309 metrics_description: | 1310 Monitor CERN EOS metrics for efficient storage management. 1311 method_description: | 1312 Metrics are gathered by periodically sending HTTP requests to [EOS exporter](https://github.com/cern-eos/eos_exporter). 1313 setup: 1314 <<: *setup 1315 prerequisites: 1316 list: 1317 - title: Install Exporter 1318 description: | 1319 Install [EOS exporter](https://github.com/cern-eos/eos_exporter) by following the instructions mentioned in the exporter README. 1320 - <<: *module 1321 meta: 1322 <<: *meta 1323 id: collector-go.d.plugin-prometheus-etcd 1324 most_popular: false 1325 community: true 1326 monitored_instance: 1327 name: etcd 1328 link: https://etcd.io/ 1329 icon_filename: etcd.svg 1330 categories: 1331 - data-collection.service-discovery-registry 1332 keywords: [] 1333 overview: 1334 <<: *overview 1335 data_collection: 1336 metrics_description: | 1337 Track etcd database metrics for optimized distributed key-value store management and performance. 1338 method_description: | 1339 Metrics are gathered by periodically sending HTTP requests to etcd built-in Prometheus exporter. 1340 - <<: *module 1341 meta: 1342 <<: *meta 1343 id: collector-go.d.plugin-prometheus-fortigate 1344 most_popular: false 1345 community: true 1346 monitored_instance: 1347 name: Fortigate firewall 1348 link: https://github.com/bluecmd/fortigate_exporter 1349 icon_filename: fortinet.svg 1350 categories: 1351 - data-collection.networking-stack-and-network-interfaces 1352 keywords: [] 1353 overview: 1354 <<: *overview 1355 data_collection: 1356 metrics_description: | 1357 Keep tabs on Fortigate firewall metrics for enhanced network protection and management. 1358 method_description: | 1359 Metrics are gathered by periodically sending HTTP requests to [fortigate_exporter](https://github.com/bluecmd/fortigate_exporter). 1360 setup: 1361 <<: *setup 1362 prerequisites: 1363 list: 1364 - title: Install Exporter 1365 description: | 1366 Install [fortigate_exporter](https://github.com/bluecmd/fortigate_exporter) by following the instructions mentioned in the exporter README. 1367 - <<: *module 1368 meta: 1369 <<: *meta 1370 id: collector-go.d.plugin-prometheus-freebsd_nfs 1371 most_popular: false 1372 community: true 1373 monitored_instance: 1374 name: FreeBSD NFS 1375 link: https://github.com/Axcient/freebsd-nfs-exporter 1376 icon_filename: freebsd.svg 1377 categories: 1378 - data-collection.freebsd 1379 keywords: [] 1380 overview: 1381 <<: *overview 1382 data_collection: 1383 metrics_description: | 1384 Monitor FreeBSD Network File System metrics for efficient file sharing management and performance. 1385 method_description: | 1386 Metrics are gathered by periodically sending HTTP requests to [FreeBSD NFS Exporter](https://github.com/Axcient/freebsd-nfs-exporter). 1387 setup: 1388 <<: *setup 1389 prerequisites: 1390 list: 1391 - title: Install Exporter 1392 description: | 1393 Install [FreeBSD NFS Exporter](https://github.com/Axcient/freebsd-nfs-exporter) by following the instructions mentioned in the exporter README. 1394 - <<: *module 1395 meta: 1396 <<: *meta 1397 id: collector-go.d.plugin-prometheus-freebsd_rctl 1398 most_popular: false 1399 community: true 1400 monitored_instance: 1401 name: FreeBSD RCTL-RACCT 1402 link: https://github.com/yo000/rctl_exporter 1403 icon_filename: freebsd.svg 1404 categories: 1405 - data-collection.freebsd 1406 keywords: [] 1407 overview: 1408 <<: *overview 1409 data_collection: 1410 metrics_description: | 1411 Keep an eye on FreeBSD Resource Container metrics for optimized resource management and performance. 1412 method_description: | 1413 Metrics are gathered by periodically sending HTTP requests to [FreeBSD RCTL Exporter](https://github.com/yo000/rctl_exporter). 1414 setup: 1415 <<: *setup 1416 prerequisites: 1417 list: 1418 - title: Install Exporter 1419 description: | 1420 Install [FreeBSD RCTL Exporter](https://github.com/yo000/rctl_exporter) by following the instructions mentioned in the exporter README. 1421 - <<: *module 1422 meta: 1423 <<: *meta 1424 id: collector-go.d.plugin-prometheus-gcp_gce 1425 most_popular: false 1426 community: true 1427 monitored_instance: 1428 name: GCP GCE 1429 link: https://github.com/O1ahmad/gcp-gce-exporter 1430 icon_filename: gcp-gce.svg 1431 categories: 1432 - data-collection.cloud-provider-managed 1433 keywords: [] 1434 overview: 1435 <<: *overview 1436 data_collection: 1437 metrics_description: | 1438 Keep an eye on Google Cloud Platform Compute Engine metrics for efficient cloud resource management and performance. 1439 method_description: | 1440 Metrics are gathered by periodically sending HTTP requests to [GCP GCE Exporter](https://github.com/O1ahmad/gcp-gce-exporter). 1441 setup: 1442 <<: *setup 1443 prerequisites: 1444 list: 1445 - title: Install Exporter 1446 description: | 1447 Install [GCP GCE Exporter](https://github.com/O1ahmad/gcp-gce-exporter) by following the instructions mentioned in the exporter README. 1448 - <<: *module 1449 meta: 1450 <<: *meta 1451 id: collector-go.d.plugin-prometheus-gcp_quota 1452 most_popular: false 1453 community: true 1454 monitored_instance: 1455 name: GCP Quota 1456 link: https://github.com/mintel/gcp-quota-exporter 1457 icon_filename: gcp.png 1458 categories: 1459 - data-collection.cloud-provider-managed 1460 keywords: [] 1461 overview: 1462 <<: *overview 1463 data_collection: 1464 metrics_description: | 1465 Monitor Google Cloud Platform quota metrics for optimized resource usage and cost management. 1466 method_description: | 1467 Metrics are gathered by periodically sending HTTP requests to [GCP Quota Exporter](https://github.com/mintel/gcp-quota-exporter). 1468 setup: 1469 <<: *setup 1470 prerequisites: 1471 list: 1472 - title: Install Exporter 1473 description: | 1474 Install [GCP Quota Exporter](https://github.com/mintel/gcp-quota-exporter) by following the instructions mentioned in the exporter README. 1475 - <<: *module 1476 meta: 1477 <<: *meta 1478 id: collector-go.d.plugin-prometheus-github_repo 1479 most_popular: false 1480 community: true 1481 monitored_instance: 1482 name: GitHub repository 1483 link: https://github.com/githubexporter/github-exporter 1484 icon_filename: github.svg 1485 categories: 1486 - data-collection.other 1487 keywords: [] 1488 overview: 1489 <<: *overview 1490 data_collection: 1491 metrics_description: | 1492 Track GitHub repository metrics for optimized project and user analytics monitoring. 1493 method_description: | 1494 Metrics are gathered by periodically sending HTTP requests to [GitHub Exporter](https://github.com/githubexporter/github-exporter). 1495 setup: 1496 <<: *setup 1497 prerequisites: 1498 list: 1499 - title: Install Exporter 1500 description: | 1501 Install [GitHub Exporter](https://github.com/githubexporter/github-exporter) by following the instructions mentioned in the exporter README. 1502 - <<: *module 1503 meta: 1504 <<: *meta 1505 id: collector-go.d.plugin-prometheus-gitlab_runner 1506 most_popular: false 1507 community: true 1508 monitored_instance: 1509 name: GitLab Runner 1510 link: https://gitlab.com/gitlab-org/gitlab-runner 1511 icon_filename: gitlab.png 1512 categories: 1513 - data-collection.ci-cd-systems 1514 keywords: [] 1515 overview: 1516 <<: *overview 1517 data_collection: 1518 metrics_description: | 1519 Keep an eye on GitLab CI/CD job metrics for efficient development and deployment management. 1520 method_description: | 1521 Metrics are gathered by periodically sending HTTP requests to GitLab built-in Prometheus exporter. 1522 setup: 1523 <<: *setup 1524 prerequisites: 1525 list: 1526 - title: Configure built-in Prometheus exporter 1527 description: | 1528 To configure the built-in Prometheus exporter, follow the [official documentation](https://docs.gitlab.com/runner/monitoring/#configuration-of-the-metrics-http-server). 1529 - <<: *module 1530 meta: 1531 <<: *meta 1532 id: collector-go.d.plugin-prometheus-gobetween 1533 most_popular: false 1534 community: true 1535 monitored_instance: 1536 name: Gobetween 1537 link: https://github.com/yyyar/gobetween 1538 icon_filename: gobetween.svg 1539 categories: 1540 - data-collection.web-servers-and-web-proxies 1541 keywords: [] 1542 overview: 1543 <<: *overview 1544 data_collection: 1545 metrics_description: | 1546 Track Gobetween load balancer metrics for optimized network traffic management and performance. 1547 method_description: | 1548 Metrics are gathered by periodically sending HTTP requests to Gobetween built-in Prometheus exporter. 1549 - <<: *module 1550 meta: 1551 <<: *meta 1552 id: collector-go.d.plugin-prometheus-gcp 1553 most_popular: false 1554 community: true 1555 monitored_instance: 1556 name: Google Cloud Platform 1557 link: https://github.com/DazWilkin/gcp-exporter 1558 icon_filename: gcp.png 1559 categories: 1560 - data-collection.cloud-provider-managed 1561 keywords: 1562 - cloud services 1563 - cloud computing 1564 - scalability 1565 overview: 1566 <<: *overview 1567 data_collection: 1568 metrics_description: | 1569 Monitor Google Cloud Platform metrics for comprehensive cloud resource management and performance optimization. 1570 method_description: | 1571 Metrics are gathered by periodically sending HTTP requests to [Google Cloud Platform Exporter](https://github.com/DazWilkin/gcp-exporter). 1572 setup: 1573 <<: *setup 1574 prerequisites: 1575 list: 1576 - title: Install Exporter 1577 description: | 1578 Install [Google Cloud Platform Exporter](https://github.com/DazWilkin/gcp-exporter) by following the instructions mentioned in the exporter README. 1579 - <<: *module 1580 meta: 1581 <<: *meta 1582 id: collector-go.d.plugin-prometheus-gcp_stackdriver 1583 most_popular: false 1584 community: true 1585 monitored_instance: 1586 name: Google Stackdriver 1587 link: https://github.com/prometheus-community/stackdriver_exporter 1588 icon_filename: gcp-stackdriver.svg 1589 categories: 1590 - data-collection.cloud-provider-managed 1591 keywords: 1592 - cloud services 1593 - cloud computing 1594 - google cloud services 1595 overview: 1596 <<: *overview 1597 data_collection: 1598 metrics_description: | 1599 Track Google Stackdriver monitoring metrics for optimized cloud performance and diagnostics. 1600 method_description: | 1601 Metrics are gathered by periodically sending HTTP requests to [Google Stackdriver exporter](https://github.com/prometheus-community/stackdriver_exporter). 1602 setup: 1603 <<: *setup 1604 prerequisites: 1605 list: 1606 - title: Install Exporter 1607 description: | 1608 Install [Google Stackdriver exporter](https://github.com/prometheus-community/stackdriver_exporter) by following the instructions mentioned in the exporter README. 1609 - <<: *module 1610 meta: 1611 <<: *meta 1612 id: collector-go.d.plugin-prometheus-grafana 1613 most_popular: false 1614 community: true 1615 monitored_instance: 1616 name: Grafana 1617 link: https://grafana.com/ 1618 icon_filename: grafana.png 1619 categories: 1620 - data-collection.observability 1621 keywords: [] 1622 overview: 1623 <<: *overview 1624 data_collection: 1625 metrics_description: | 1626 Keep tabs on Grafana dashboard and visualization metrics for optimized monitoring and data analysis. 1627 method_description: | 1628 Metrics are gathered by periodically sending HTTP requests to Grafana built-in Prometheus exporter. 1629 - <<: *module 1630 meta: 1631 <<: *meta 1632 id: collector-go.d.plugin-prometheus-graylog 1633 most_popular: false 1634 community: true 1635 monitored_instance: 1636 name: Graylog Server 1637 link: https://github.com/Graylog2/graylog2-server/ 1638 icon_filename: graylog.svg 1639 categories: 1640 - data-collection.logs-servers 1641 keywords: [] 1642 overview: 1643 <<: *overview 1644 data_collection: 1645 metrics_description: | 1646 Monitor Graylog server metrics for efficient log management and analysis. 1647 method_description: | 1648 Metrics are gathered by periodically sending HTTP requests to Graylog built-in Prometheus exporter. 1649 setup: 1650 <<: *setup 1651 prerequisites: 1652 list: 1653 - title: Configure built-in Prometheus exporter 1654 description: | 1655 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). 1656 1657 - <<: *module 1658 meta: 1659 <<: *meta 1660 id: collector-go.d.plugin-prometheus-hana 1661 most_popular: false 1662 community: true 1663 monitored_instance: 1664 name: HANA 1665 link: https://github.com/jenningsloy318/hana_exporter 1666 icon_filename: sap.svg 1667 categories: 1668 - data-collection.database-servers 1669 keywords: [] 1670 overview: 1671 <<: *overview 1672 data_collection: 1673 metrics_description: | 1674 Track SAP HANA database metrics for efficient data storage and query performance. 1675 method_description: | 1676 Metrics are gathered by periodically sending HTTP requests to [HANA Exporter](https://github.com/jenningsloy318/hana_exporter). 1677 setup: 1678 <<: *setup 1679 prerequisites: 1680 list: 1681 - title: Install Exporter 1682 description: | 1683 Install [HANA Exporter](https://github.com/jenningsloy318/hana_exporter) by following the instructions mentioned in the exporter README. 1684 - <<: *module 1685 meta: 1686 <<: *meta 1687 id: collector-go.d.plugin-prometheus-honeypot 1688 most_popular: false 1689 community: true 1690 monitored_instance: 1691 name: Honeypot 1692 link: https://github.com/Intrinsec/honeypot_exporter 1693 icon_filename: intrinsec.svg 1694 categories: 1695 - data-collection.security-systems 1696 keywords: [] 1697 overview: 1698 <<: *overview 1699 data_collection: 1700 metrics_description: | 1701 Monitor honeypot metrics for efficient threat detection and management. 1702 method_description: | 1703 Metrics are gathered by periodically sending HTTP requests to [Intrinsec honeypot_exporter](https://github.com/Intrinsec/honeypot_exporter). 1704 setup: 1705 <<: *setup 1706 prerequisites: 1707 list: 1708 - title: Install Exporter 1709 description: | 1710 Install [Intrinsec honeypot_exporter](https://github.com/Intrinsec/honeypot_exporter) by following the instructions mentioned in the exporter README. 1711 - <<: *module 1712 meta: 1713 <<: *meta 1714 id: collector-go.d.plugin-prometheus-hp_ilo 1715 most_popular: false 1716 community: true 1717 monitored_instance: 1718 name: HP iLO 1719 link: https://github.com/infinityworks/hpilo-exporter 1720 icon_filename: hp.svg 1721 categories: 1722 - data-collection.hardware-devices-and-sensors 1723 keywords: [] 1724 overview: 1725 <<: *overview 1726 data_collection: 1727 metrics_description: | 1728 Monitor HP Integrated Lights Out (iLO) metrics for efficient server management and diagnostics. 1729 method_description: | 1730 Metrics are gathered by periodically sending HTTP requests to [HP iLO Metrics Exporter](https://github.com/infinityworks/hpilo-exporter). 1731 setup: 1732 <<: *setup 1733 prerequisites: 1734 list: 1735 - title: Install Exporter 1736 description: | 1737 Install [HP iLO Metrics Exporter](https://github.com/infinityworks/hpilo-exporter) by following the instructions mentioned in the exporter README. 1738 - <<: *module 1739 meta: 1740 <<: *meta 1741 id: collector-go.d.plugin-prometheus-hubble 1742 most_popular: false 1743 community: true 1744 monitored_instance: 1745 name: Hubble 1746 link: https://github.com/cilium/hubble 1747 icon_filename: hubble.png 1748 categories: 1749 - data-collection.observability 1750 keywords: [] 1751 overview: 1752 <<: *overview 1753 data_collection: 1754 metrics_description: | 1755 Monitor Hubble network observability metrics for efficient network visibility and management. 1756 method_description: | 1757 Metrics are gathered by periodically sending HTTP requests to Hubble built-in Prometheus exporter. 1758 setup: 1759 <<: *setup 1760 prerequisites: 1761 list: 1762 - title: Configure built-in Prometheus exporter 1763 description: | 1764 To configure the built-in Prometheus exporter, follow the [official documentation](https://docs.cilium.io/en/stable/observability/metrics/#hubble-metrics). 1765 - <<: *module 1766 meta: 1767 <<: *meta 1768 id: collector-go.d.plugin-prometheus-ibm_spectrum 1769 most_popular: false 1770 community: true 1771 monitored_instance: 1772 name: IBM Spectrum 1773 link: https://github.com/topine/ibm-spectrum-exporter 1774 icon_filename: ibm.svg 1775 categories: 1776 - data-collection.storage-mount-points-and-filesystems 1777 keywords: [] 1778 overview: 1779 <<: *overview 1780 data_collection: 1781 metrics_description: | 1782 Monitor IBM Spectrum storage metrics for efficient data management and performance. 1783 method_description: | 1784 Metrics are gathered by periodically sending HTTP requests to [IBM Spectrum Exporter](https://github.com/topine/ibm-spectrum-exporter). 1785 setup: 1786 <<: *setup 1787 prerequisites: 1788 list: 1789 - title: Install Exporter 1790 description: | 1791 Install [IBM Spectrum Exporter](https://github.com/topine/ibm-spectrum-exporter) by following the instructions mentioned in the exporter README. 1792 - <<: *module 1793 meta: 1794 <<: *meta 1795 id: collector-go.d.plugin-prometheus-influxdb 1796 most_popular: false 1797 community: true 1798 monitored_instance: 1799 name: InfluxDB 1800 link: https://github.com/prometheus/influxdb_exporter 1801 icon_filename: influxdb.svg 1802 categories: 1803 - data-collection.database-servers 1804 keywords: 1805 - database 1806 - dbms 1807 - data storage 1808 overview: 1809 <<: *overview 1810 data_collection: 1811 metrics_description: | 1812 Monitor InfluxDB time-series database metrics for efficient data storage and query performance. 1813 method_description: | 1814 Metrics are gathered by periodically sending HTTP requests to [InfluxDB exporter](https://github.com/prometheus/influxdb_exporter). 1815 setup: 1816 <<: *setup 1817 prerequisites: 1818 list: 1819 - title: Install Exporter 1820 description: | 1821 Install [InfluxDB exporter](https://github.com/prometheus/influxdb_exporter) by following the instructions mentioned in the exporter README. 1822 - <<: *module 1823 meta: 1824 <<: *meta 1825 id: collector-go.d.plugin-prometheus-jenkins 1826 most_popular: false 1827 community: true 1828 monitored_instance: 1829 name: Jenkins 1830 link: https://www.jenkins.io/ 1831 icon_filename: jenkins.svg 1832 categories: 1833 - data-collection.ci-cd-systems 1834 keywords: [] 1835 overview: 1836 <<: *overview 1837 data_collection: 1838 metrics_description: | 1839 Track Jenkins continuous integration server metrics for efficient development and build management. 1840 method_description: | 1841 Metrics are gathered by periodically sending HTTP requests to [Jenkins exporter](https://github.com/simplesurance/jenkins-exporter). 1842 setup: 1843 <<: *setup 1844 prerequisites: 1845 list: 1846 - title: Install Exporter 1847 description: | 1848 Install [Jenkins exporter](https://github.com/simplesurance/jenkins-exporter) by following the instructions mentioned in the exporter README. 1849 - <<: *module 1850 meta: 1851 <<: *meta 1852 id: collector-go.d.plugin-prometheus-jmx 1853 most_popular: false 1854 community: true 1855 monitored_instance: 1856 name: JMX 1857 link: https://github.com/prometheus/jmx_exporter 1858 icon_filename: java.svg 1859 categories: 1860 - data-collection.apm 1861 keywords: [] 1862 overview: 1863 <<: *overview 1864 data_collection: 1865 metrics_description: | 1866 Track Java Management Extensions (JMX) metrics for efficient Java application management and performance. 1867 method_description: | 1868 Metrics are gathered by periodically sending HTTP requests to [JMX Exporter](https://github.com/prometheus/jmx_exporter). 1869 setup: 1870 <<: *setup 1871 prerequisites: 1872 list: 1873 - title: Install Exporter 1874 description: | 1875 Install [JMX Exporter](https://github.com/prometheus/jmx_exporter) by following the instructions mentioned in the exporter README. 1876 - <<: *module 1877 meta: 1878 <<: *meta 1879 id: collector-go.d.plugin-prometheus-jolokia 1880 most_popular: false 1881 community: true 1882 monitored_instance: 1883 name: jolokia 1884 link: https://github.com/aklinkert/jolokia_exporter 1885 icon_filename: jolokia.png 1886 categories: 1887 - data-collection.apm 1888 keywords: [] 1889 overview: 1890 <<: *overview 1891 data_collection: 1892 metrics_description: | 1893 Monitor Jolokia JVM metrics for optimized Java application performance and management. 1894 method_description: | 1895 Metrics are gathered by periodically sending HTTP requests to [jolokia_exporter](https://github.com/aklinkert/jolokia_exporter). 1896 setup: 1897 <<: *setup 1898 prerequisites: 1899 list: 1900 - title: Install Exporter 1901 description: | 1902 Install [jolokia_exporter](https://github.com/aklinkert/jolokia_exporter) by following the instructions mentioned in the exporter README. 1903 - <<: *module 1904 meta: 1905 <<: *meta 1906 id: collector-go.d.plugin-prometheus-kafka_consumer_lag 1907 most_popular: false 1908 community: true 1909 monitored_instance: 1910 name: Kafka Consumer Lag 1911 link: https://github.com/omarsmak/kafka-consumer-lag-monitoring 1912 icon_filename: kafka.svg 1913 categories: 1914 - data-collection.service-discovery-registry 1915 keywords: 1916 - big data 1917 - stream processing 1918 - message broker 1919 overview: 1920 <<: *overview 1921 data_collection: 1922 metrics_description: | 1923 Monitor Kafka consumer lag metrics for efficient message queue management and performance. 1924 method_description: | 1925 Metrics are gathered by periodically sending HTTP requests to [Kafka Consumer Lag Monitoring](https://github.com/omarsmak/kafka-consumer-lag-monitoring). 1926 setup: 1927 <<: *setup 1928 prerequisites: 1929 list: 1930 - title: Install Exporter 1931 description: | 1932 Install [Kafka Consumer Lag Monitoring](https://github.com/omarsmak/kafka-consumer-lag-monitoring) by following the instructions mentioned in the exporter README. 1933 - <<: *module 1934 meta: 1935 <<: *meta 1936 id: collector-go.d.plugin-prometheus-kafka 1937 most_popular: false 1938 community: true 1939 monitored_instance: 1940 name: Kafka 1941 link: https://github.com/danielqsj/kafka_exporter/ 1942 icon_filename: kafka.svg 1943 categories: 1944 - data-collection.message-brokers 1945 keywords: 1946 - big data 1947 - stream processing 1948 - message broker 1949 overview: 1950 <<: *overview 1951 data_collection: 1952 metrics_description: | 1953 Keep an eye on Kafka message queue metrics for optimized data streaming and performance. 1954 method_description: | 1955 Metrics are gathered by periodically sending HTTP requests to [Kafka Exporter](https://github.com/danielqsj/kafka_exporter/). 1956 setup: 1957 <<: *setup 1958 prerequisites: 1959 list: 1960 - title: Install Exporter 1961 description: | 1962 Install [Kafka Exporter](https://github.com/danielqsj/kafka_exporter/) by following the instructions mentioned in the exporter README. 1963 - <<: *module 1964 meta: 1965 <<: *meta 1966 id: collector-go.d.plugin-prometheus-kafka_zookeeper 1967 most_popular: false 1968 community: true 1969 monitored_instance: 1970 name: Kafka ZooKeeper 1971 link: https://github.com/cloudflare/kafka_zookeeper_exporter 1972 icon_filename: kafka.svg 1973 categories: 1974 - data-collection.message-brokers 1975 keywords: 1976 - big data 1977 - stream processing 1978 - message broker 1979 overview: 1980 <<: *overview 1981 data_collection: 1982 metrics_description: | 1983 Monitor Kafka ZooKeeper metrics for optimized distributed coordination and management. 1984 method_description: | 1985 Metrics are gathered by periodically sending HTTP requests to [Kafka ZooKeeper Exporter](https://github.com/cloudflare/kafka_zookeeper_exporter). 1986 setup: 1987 <<: *setup 1988 prerequisites: 1989 list: 1990 - title: Install Exporter 1991 description: | 1992 Install [Kafka ZooKeeper Exporter](https://github.com/cloudflare/kafka_zookeeper_exporter) by following the instructions mentioned in the exporter README. 1993 - <<: *module 1994 meta: 1995 <<: *meta 1996 id: collector-go.d.plugin-prometheus-linode 1997 most_popular: false 1998 community: true 1999 monitored_instance: 2000 name: Linode 2001 link: https://github.com/DazWilkin/linode-exporter 2002 icon_filename: linode.svg 2003 categories: 2004 - data-collection.cloud-provider-managed 2005 keywords: [] 2006 overview: 2007 <<: *overview 2008 data_collection: 2009 metrics_description: | 2010 Monitor Linode cloud hosting metrics for efficient virtual server management and performance. 2011 method_description: | 2012 Metrics are gathered by periodically sending HTTP requests to [Linode Exporter](https://github.com/DazWilkin/linode-exporter). 2013 setup: 2014 <<: *setup 2015 prerequisites: 2016 list: 2017 - title: Install Exporter 2018 description: | 2019 Install [Linode Exporter](https://github.com/DazWilkin/linode-exporter) by following the instructions mentioned in the exporter README. 2020 - <<: *module 2021 meta: 2022 <<: *meta 2023 id: collector-go.d.plugin-prometheus-loki 2024 most_popular: false 2025 community: true 2026 monitored_instance: 2027 name: loki 2028 link: https://github.com/grafana/loki 2029 icon_filename: loki.png 2030 categories: 2031 - data-collection.logs-servers 2032 keywords: [] 2033 overview: 2034 <<: *overview 2035 data_collection: 2036 metrics_description: | 2037 Track Loki metrics. 2038 method_description: | 2039 Metrics are gathered by periodically sending HTTP requests to [loki](https://github.com/grafana/loki). 2040 setup: 2041 <<: *setup 2042 prerequisites: 2043 list: 2044 - title: Install Loki 2045 description: | 2046 Install [loki](https://github.com/grafana/loki) according to its documentation. 2047 - <<: *module 2048 meta: 2049 <<: *meta 2050 id: collector-go.d.plugin-prometheus-minecraft 2051 most_popular: false 2052 community: true 2053 monitored_instance: 2054 name: Minecraft 2055 link: https://github.com/sladkoff/minecraft-prometheus-exporter 2056 icon_filename: minecraft.png 2057 categories: 2058 - data-collection.gaming 2059 keywords: [] 2060 overview: 2061 <<: *overview 2062 data_collection: 2063 metrics_description: | 2064 Track Minecraft server metrics for efficient game server management and performance. 2065 method_description: | 2066 Metrics are gathered by periodically sending HTTP requests to [Minecraft Exporter](https://github.com/sladkoff/minecraft-prometheus-exporter). 2067 setup: 2068 <<: *setup 2069 prerequisites: 2070 list: 2071 - title: Install Exporter 2072 description: | 2073 Install [Minecraft Exporter](https://github.com/sladkoff/minecraft-prometheus-exporter) by following the instructions mentioned in the exporter README. 2074 - <<: *module 2075 meta: 2076 <<: *meta 2077 id: collector-go.d.plugin-prometheus-mosquitto 2078 most_popular: false 2079 community: true 2080 monitored_instance: 2081 name: mosquitto 2082 link: https://github.com/sapcc/mosquitto-exporter 2083 icon_filename: mosquitto.svg 2084 categories: 2085 - data-collection.message-brokers 2086 keywords: [] 2087 overview: 2088 <<: *overview 2089 data_collection: 2090 metrics_description: | 2091 Keep an eye on Mosquitto MQTT broker metrics for efficient IoT message transport and performance. 2092 method_description: | 2093 Metrics are gathered by periodically sending HTTP requests to [mosquitto exporter](https://github.com/sapcc/mosquitto-exporter). 2094 setup: 2095 <<: *setup 2096 prerequisites: 2097 list: 2098 - title: Install Exporter 2099 description: | 2100 Install [mosquitto exporter](https://github.com/sapcc/mosquitto-exporter) by following the instructions mentioned in the exporter README. 2101 - <<: *module 2102 meta: 2103 <<: *meta 2104 id: collector-go.d.plugin-prometheus-mp707 2105 most_popular: false 2106 community: true 2107 monitored_instance: 2108 name: MP707 USB thermometer 2109 link: https://github.com/nradchenko/mp707_exporter 2110 icon_filename: thermometer.png 2111 categories: 2112 - data-collection.iot-devices 2113 keywords: [] 2114 overview: 2115 <<: *overview 2116 data_collection: 2117 metrics_description: | 2118 Track MP707 power strip metrics for efficient energy management and monitoring. 2119 method_description: | 2120 Metrics are gathered by periodically sending HTTP requests to [MP707 exporter](https://github.com/nradchenko/mp707_exporter). 2121 setup: 2122 <<: *setup 2123 prerequisites: 2124 list: 2125 - title: Install Exporter 2126 description: | 2127 Install [MP707 exporter](https://github.com/nradchenko/mp707_exporter) by following the instructions mentioned in the exporter README. 2128 - <<: *module 2129 meta: 2130 <<: *meta 2131 id: collector-go.d.plugin-prometheus-ibm_mq 2132 most_popular: false 2133 community: true 2134 monitored_instance: 2135 name: IBM MQ 2136 link: https://github.com/agebhar1/mq_exporter 2137 icon_filename: ibm.svg 2138 categories: 2139 - data-collection.message-brokers 2140 keywords: [] 2141 overview: 2142 <<: *overview 2143 data_collection: 2144 metrics_description: | 2145 Keep tabs on IBM MQ message queue metrics for efficient message transport and performance. 2146 method_description: | 2147 Metrics are gathered by periodically sending HTTP requests to [MQ Exporter](https://github.com/agebhar1/mq_exporter). 2148 setup: 2149 <<: *setup 2150 prerequisites: 2151 list: 2152 - title: Install Exporter 2153 description: | 2154 Install [MQ Exporter](https://github.com/agebhar1/mq_exporter) by following the instructions mentioned in the exporter README. 2155 - <<: *module 2156 meta: 2157 <<: *meta 2158 id: collector-go.d.plugin-prometheus-mqtt_blackbox 2159 most_popular: false 2160 community: true 2161 monitored_instance: 2162 name: MQTT Blackbox 2163 link: https://github.com/inovex/mqtt_blackbox_exporter 2164 icon_filename: mqtt.svg 2165 categories: 2166 - data-collection.message-brokers 2167 keywords: [] 2168 overview: 2169 <<: *overview 2170 data_collection: 2171 metrics_description: | 2172 Track MQTT message transport performance using blackbox testing methods. 2173 method_description: | 2174 Metrics are gathered by periodically sending HTTP requests to [MQTT Blackbox Exporter](https://github.com/inovex/mqtt_blackbox_exporter). 2175 setup: 2176 <<: *setup 2177 prerequisites: 2178 list: 2179 - title: Install Exporter 2180 description: | 2181 Install [MQTT Blackbox Exporter](https://github.com/inovex/mqtt_blackbox_exporter) by following the instructions mentioned in the exporter README. 2182 - <<: *module 2183 meta: 2184 <<: *meta 2185 id: collector-go.d.plugin-prometheus-netapp_ontap 2186 most_popular: false 2187 community: true 2188 monitored_instance: 2189 name: Netapp ONTAP API 2190 link: https://github.com/sapcc/netapp-api-exporter 2191 icon_filename: netapp.svg 2192 categories: 2193 - data-collection.storage-mount-points-and-filesystems 2194 keywords: 2195 - network monitoring 2196 - network performance 2197 - traffic analysis 2198 overview: 2199 <<: *overview 2200 data_collection: 2201 metrics_description: | 2202 Keep tabs on NetApp ONTAP storage system metrics for efficient data storage management and performance. 2203 method_description: | 2204 Metrics are gathered by periodically sending HTTP requests to [Netapp ONTAP API Exporter](https://github.com/sapcc/netapp-api-exporter). 2205 setup: 2206 <<: *setup 2207 prerequisites: 2208 list: 2209 - title: Install Exporter 2210 description: | 2211 Install [Netapp ONTAP API Exporter](https://github.com/sapcc/netapp-api-exporter) by following the instructions mentioned in the exporter README. 2212 - <<: *module 2213 meta: 2214 <<: *meta 2215 id: collector-go.d.plugin-prometheus-netapp_solidfire 2216 most_popular: false 2217 community: true 2218 monitored_instance: 2219 name: NetApp Solidfire 2220 link: https://github.com/mjavier2k/solidfire-exporter 2221 icon_filename: netapp.svg 2222 categories: 2223 - data-collection.storage-mount-points-and-filesystems 2224 keywords: 2225 - network monitoring 2226 - network performance 2227 - traffic analysis 2228 overview: 2229 <<: *overview 2230 data_collection: 2231 metrics_description: | 2232 Track NetApp Solidfire storage system metrics for efficient data storage management and performance. 2233 method_description: | 2234 Metrics are gathered by periodically sending HTTP requests to [NetApp Solidfire Exporter](https://github.com/mjavier2k/solidfire-exporter). 2235 setup: 2236 <<: *setup 2237 prerequisites: 2238 list: 2239 - title: Install Exporter 2240 description: | 2241 Install [NetApp Solidfire Exporter](https://github.com/mjavier2k/solidfire-exporter) by following the instructions mentioned in the exporter README. 2242 - <<: *module 2243 meta: 2244 <<: *meta 2245 id: collector-go.d.plugin-prometheus-netmeter 2246 most_popular: false 2247 community: true 2248 monitored_instance: 2249 name: NetMeter 2250 link: https://github.com/ssbostan/netmeter-exporter 2251 icon_filename: netmeter.png 2252 categories: 2253 - data-collection.networking-stack-and-network-interfaces 2254 keywords: 2255 - network monitoring 2256 - network performance 2257 - traffic analysis 2258 overview: 2259 <<: *overview 2260 data_collection: 2261 metrics_description: | 2262 Monitor NetMeter network traffic metrics for efficient network management and performance. 2263 method_description: | 2264 Metrics are gathered by periodically sending HTTP requests to [NetMeter Exporter](https://github.com/ssbostan/netmeter-exporter). 2265 setup: 2266 <<: *setup 2267 prerequisites: 2268 list: 2269 - title: Install Exporter 2270 description: | 2271 Install [NetMeter Exporter](https://github.com/ssbostan/netmeter-exporter) by following the instructions mentioned in the exporter README. 2272 - <<: *module 2273 meta: 2274 <<: *meta 2275 id: collector-go.d.plugin-prometheus-newrelic 2276 most_popular: false 2277 community: true 2278 monitored_instance: 2279 name: New Relic 2280 link: https://github.com/jfindley/newrelic_exporter 2281 icon_filename: newrelic.svg 2282 categories: 2283 - data-collection.observability 2284 keywords: [] 2285 overview: 2286 <<: *overview 2287 data_collection: 2288 metrics_description: | 2289 Monitor New Relic application performance management metrics for efficient application monitoring and performance. 2290 method_description: | 2291 Metrics are gathered by periodically sending HTTP requests to [New Relic exporter](https://github.com/jfindley/newrelic_exporter). 2292 setup: 2293 <<: *setup 2294 prerequisites: 2295 list: 2296 - title: Install Exporter 2297 description: | 2298 Install [New Relic exporter](https://github.com/jfindley/newrelic_exporter) by following the instructions mentioned in the exporter README. 2299 - <<: *module 2300 meta: 2301 <<: *meta 2302 id: collector-go.d.plugin-prometheus-openvswitch 2303 most_popular: false 2304 community: true 2305 monitored_instance: 2306 name: Open vSwitch 2307 link: https://github.com/digitalocean/openvswitch_exporter 2308 icon_filename: ovs.png 2309 categories: 2310 - data-collection.networking-stack-and-network-interfaces 2311 keywords: [] 2312 overview: 2313 <<: *overview 2314 data_collection: 2315 metrics_description: | 2316 Keep an eye on Open vSwitch software-defined networking metrics for efficient network virtualization and performance. 2317 method_description: | 2318 Metrics are gathered by periodically sending HTTP requests to [Open vSwitch Exporter](https://github.com/digitalocean/openvswitch_exporter). 2319 setup: 2320 <<: *setup 2321 prerequisites: 2322 list: 2323 - title: Install Exporter 2324 description: | 2325 Install [Open vSwitch Exporter](https://github.com/digitalocean/openvswitch_exporter) by following the instructions mentioned in the exporter README. 2326 - <<: *module 2327 meta: 2328 <<: *meta 2329 id: collector-go.d.plugin-prometheus-openldap 2330 most_popular: false 2331 community: true 2332 monitored_instance: 2333 name: OpenLDAP (community) 2334 link: https://github.com/tomcz/openldap_exporter 2335 icon_filename: openldap.svg 2336 categories: 2337 - data-collection.authentication-and-authorization 2338 keywords: [] 2339 overview: 2340 <<: *overview 2341 data_collection: 2342 metrics_description: | 2343 Monitor OpenLDAP directory service metrics for efficient directory management and performance. 2344 method_description: | 2345 Metrics are gathered by periodically sending HTTP requests to [OpenLDAP Metrics Exporter](https://github.com/tomcz/openldap_exporter). 2346 setup: 2347 <<: *setup 2348 prerequisites: 2349 list: 2350 - title: Install Exporter 2351 description: | 2352 Install [OpenLDAP Metrics Exporter](https://github.com/tomcz/openldap_exporter) by following the instructions mentioned in the exporter README. 2353 - <<: *module 2354 meta: 2355 <<: *meta 2356 id: collector-go.d.plugin-prometheus-openstack 2357 most_popular: false 2358 community: true 2359 monitored_instance: 2360 name: OpenStack 2361 link: https://github.com/CanonicalLtd/prometheus-openstack-exporter 2362 icon_filename: openstack.svg 2363 categories: 2364 - data-collection.cloud-provider-managed 2365 keywords: [] 2366 overview: 2367 <<: *overview 2368 data_collection: 2369 metrics_description: | 2370 Track OpenStack cloud computing platform metrics for efficient infrastructure management and performance. 2371 method_description: | 2372 Metrics are gathered by periodically sending HTTP requests to [Openstack exporter](https://github.com/CanonicalLtd/prometheus-openstack-exporter). 2373 setup: 2374 <<: *setup 2375 prerequisites: 2376 list: 2377 - title: Install Exporter 2378 description: | 2379 Install [Openstack exporter](https://github.com/CanonicalLtd/prometheus-openstack-exporter) by following the instructions mentioned in the exporter README. 2380 - <<: *module 2381 meta: 2382 <<: *meta 2383 id: collector-go.d.plugin-prometheus-openvas 2384 most_popular: false 2385 community: true 2386 monitored_instance: 2387 name: OpenVAS 2388 link: https://github.com/ModeClearCode/openvas_exporter 2389 icon_filename: openVAS.png 2390 categories: 2391 - data-collection.security-systems 2392 keywords: [] 2393 overview: 2394 <<: *overview 2395 data_collection: 2396 metrics_description: | 2397 Monitor OpenVAS vulnerability scanner metrics for efficient security assessment and management. 2398 method_description: | 2399 Metrics are gathered by periodically sending HTTP requests to [OpenVAS exporter](https://github.com/ModeClearCode/openvas_exporter). 2400 setup: 2401 <<: *setup 2402 prerequisites: 2403 list: 2404 - title: Install Exporter 2405 description: | 2406 Install [OpenVAS exporter](https://github.com/ModeClearCode/openvas_exporter) by following the instructions mentioned in the exporter README. 2407 - <<: *module 2408 meta: 2409 <<: *meta 2410 id: collector-go.d.plugin-prometheus-google_pagespeed 2411 most_popular: false 2412 community: true 2413 monitored_instance: 2414 name: Google Pagespeed 2415 link: https://github.com/foomo/pagespeed_exporter 2416 icon_filename: google.svg 2417 categories: 2418 - data-collection.apm 2419 keywords: 2420 - cloud services 2421 - cloud computing 2422 - google cloud services 2423 overview: 2424 <<: *overview 2425 data_collection: 2426 metrics_description: | 2427 Keep an eye on Google PageSpeed Insights performance metrics for efficient web page optimization and performance. 2428 method_description: | 2429 Metrics are gathered by periodically sending HTTP requests to [Pagespeed exporter](https://github.com/foomo/pagespeed_exporter). 2430 setup: 2431 <<: *setup 2432 prerequisites: 2433 list: 2434 - title: Install Exporter 2435 description: | 2436 Install [Pagespeed exporter](https://github.com/foomo/pagespeed_exporter) by following the instructions mentioned in the exporter README. 2437 - <<: *module 2438 meta: 2439 id: collector-go.d.plugin-prometheus-philips_hue 2440 <<: *meta 2441 most_popular: false 2442 community: true 2443 monitored_instance: 2444 name: Philips Hue 2445 link: https://github.com/aexel90/hue_exporter 2446 icon_filename: hue.svg 2447 categories: 2448 - data-collection.iot-devices 2449 keywords: [] 2450 overview: 2451 <<: *overview 2452 data_collection: 2453 metrics_description: | 2454 Keep an eye on Philips Hue smart lighting metrics for efficient home automation and energy management. 2455 method_description: | 2456 Metrics are gathered by periodically sending HTTP requests to [Philips Hue Exporter](https://github.com/aexel90/hue_exporter). 2457 setup: 2458 <<: *setup 2459 prerequisites: 2460 list: 2461 - title: Install Exporter 2462 description: | 2463 Install [Philips Hue Exporter](https://github.com/aexel90/hue_exporter) by following the instructions mentioned in the exporter README. 2464 - <<: *module 2465 meta: 2466 <<: *meta 2467 id: collector-go.d.plugin-prometheus-podman 2468 most_popular: false 2469 community: true 2470 monitored_instance: 2471 name: Podman 2472 link: https://github.com/containers/prometheus-podman-exporter 2473 icon_filename: podman.png 2474 categories: 2475 - data-collection.containers-and-vms 2476 keywords: [] 2477 overview: 2478 <<: *overview 2479 data_collection: 2480 metrics_description: | 2481 Keep tabs on Podman container runtime metrics for efficient container management and performance. 2482 method_description: | 2483 Metrics are gathered by periodically sending HTTP requests to [PODMAN exporter](https://github.com/containers/prometheus-podman-exporter). 2484 setup: 2485 <<: *setup 2486 prerequisites: 2487 list: 2488 - title: Install Exporter 2489 description: | 2490 Install [PODMAN exporter](https://github.com/containers/prometheus-podman-exporter) by following the instructions mentioned in the exporter README. 2491 - <<: *module 2492 meta: 2493 <<: *meta 2494 id: collector-go.d.plugin-prometheus-proxmox 2495 most_popular: false 2496 community: true 2497 monitored_instance: 2498 name: Proxmox VE 2499 link: https://github.com/prometheus-pve/prometheus-pve-exporter 2500 icon_filename: proxmox.png 2501 categories: 2502 - data-collection.containers-and-vms 2503 keywords: [] 2504 overview: 2505 <<: *overview 2506 data_collection: 2507 metrics_description: | 2508 Keep tabs on Proxmox Virtual Environment metrics for efficient virtualization and container management. 2509 method_description: | 2510 Metrics are gathered by periodically sending HTTP requests to [Proxmox VE Exporter](https://github.com/prometheus-pve/prometheus-pve-exporter). 2511 setup: 2512 <<: *setup 2513 prerequisites: 2514 list: 2515 - title: Install Exporter 2516 description: | 2517 Install [Proxmox VE Exporter](https://github.com/prometheus-pve/prometheus-pve-exporter) by following the instructions mentioned in the exporter README. 2518 - <<: *module 2519 meta: 2520 <<: *meta 2521 id: collector-go.d.plugin-prometheus-radius 2522 most_popular: false 2523 community: true 2524 monitored_instance: 2525 name: RADIUS 2526 link: https://github.com/devon-mar/radius-exporter 2527 icon_filename: radius.png 2528 categories: 2529 - data-collection.authentication-and-authorization 2530 keywords: [] 2531 overview: 2532 <<: *overview 2533 data_collection: 2534 metrics_description: | 2535 Keep tabs on RADIUS (Remote Authentication Dial-In User Service) protocol metrics for efficient authentication and access management. 2536 method_description: | 2537 Metrics are gathered by periodically sending HTTP requests to [RADIUS exporter](https://github.com/devon-mar/radius-exporter). 2538 setup: 2539 <<: *setup 2540 prerequisites: 2541 list: 2542 - title: Install Exporter 2543 description: | 2544 Install [RADIUS exporter](https://github.com/devon-mar/radius-exporter) by following the instructions mentioned in the exporter README. 2545 - <<: *module 2546 meta: 2547 <<: *meta 2548 id: collector-go.d.plugin-prometheus-aws_rds 2549 most_popular: false 2550 community: true 2551 monitored_instance: 2552 name: AWS RDS 2553 link: https://github.com/percona/rds_exporter 2554 icon_filename: aws-rds.svg 2555 categories: 2556 - data-collection.database-servers 2557 keywords: 2558 - cloud services 2559 - cloud computing 2560 - aws services 2561 overview: 2562 <<: *overview 2563 data_collection: 2564 metrics_description: | 2565 Monitor Amazon RDS (Relational Database Service) metrics for efficient cloud database management and performance. 2566 method_description: | 2567 Metrics are gathered by periodically sending HTTP requests to [rds_exporter](https://github.com/percona/rds_exporter). 2568 setup: 2569 <<: *setup 2570 prerequisites: 2571 list: 2572 - title: Install Exporter 2573 description: | 2574 Install [rds_exporter](https://github.com/percona/rds_exporter) by following the instructions mentioned in the exporter README. 2575 - <<: *module 2576 meta: 2577 <<: *meta 2578 id: collector-go.d.plugin-prometheus-ripe_atlas 2579 most_popular: false 2580 community: true 2581 monitored_instance: 2582 name: RIPE Atlas 2583 link: https://github.com/czerwonk/atlas_exporter 2584 icon_filename: ripe.png 2585 categories: 2586 - data-collection.networking-stack-and-network-interfaces 2587 keywords: [] 2588 overview: 2589 <<: *overview 2590 data_collection: 2591 metrics_description: | 2592 Keep tabs on RIPE Atlas Internet measurement platform metrics for efficient network monitoring and performance. 2593 method_description: | 2594 Metrics are gathered by periodically sending HTTP requests to [RIPE Atlas Exporter](https://github.com/czerwonk/atlas_exporter). 2595 setup: 2596 <<: *setup 2597 prerequisites: 2598 list: 2599 - title: Install Exporter 2600 description: | 2601 Install [RIPE Atlas Exporter](https://github.com/czerwonk/atlas_exporter) by following the instructions mentioned in the exporter README. 2602 - <<: *module 2603 meta: 2604 <<: *meta 2605 id: collector-go.d.plugin-prometheus-sentry 2606 most_popular: false 2607 community: true 2608 monitored_instance: 2609 name: Sentry 2610 link: https://github.com/snakecharmer/sentry_exporter 2611 icon_filename: sentry.png 2612 categories: 2613 - data-collection.apm 2614 keywords: [] 2615 overview: 2616 <<: *overview 2617 data_collection: 2618 metrics_description: | 2619 Track Sentry error tracking and monitoring platform metrics for efficient application performance and error management. 2620 method_description: | 2621 Metrics are gathered by periodically sending HTTP requests to [Sentry Exporter](https://github.com/snakecharmer/sentry_exporter). 2622 setup: 2623 <<: *setup 2624 prerequisites: 2625 list: 2626 - title: Install Exporter 2627 description: | 2628 Install [Sentry Exporter](https://github.com/snakecharmer/sentry_exporter) by following the instructions mentioned in the exporter README. 2629 - <<: *module 2630 meta: 2631 <<: *meta 2632 id: collector-go.d.plugin-prometheus-slurm 2633 most_popular: false 2634 community: true 2635 monitored_instance: 2636 name: Slurm 2637 link: https://github.com/vpenso/prometheus-slurm-exporter 2638 icon_filename: slurm.png 2639 categories: 2640 - data-collection.task-queues 2641 #- data-collection.provisioning-systems 2642 keywords: [] 2643 overview: 2644 <<: *overview 2645 data_collection: 2646 metrics_description: | 2647 Track Slurm workload manager metrics for efficient high-performance computing (HPC) and cluster management. 2648 method_description: | 2649 Metrics are gathered by periodically sending HTTP requests to [slurm exporter](https://github.com/vpenso/prometheus-slurm-exporter). 2650 setup: 2651 <<: *setup 2652 prerequisites: 2653 list: 2654 - title: Install Exporter 2655 description: | 2656 Install [slurm exporter](https://github.com/vpenso/prometheus-slurm-exporter) by following the instructions mentioned in the exporter README. 2657 - <<: *module 2658 meta: 2659 <<: *meta 2660 id: collector-go.d.plugin-prometheus-ipmi 2661 most_popular: false 2662 community: true 2663 monitored_instance: 2664 name: IPMI (By SoundCloud) 2665 link: https://github.com/prometheus-community/ipmi_exporter 2666 icon_filename: soundcloud.svg 2667 categories: 2668 - data-collection.hardware-devices-and-sensors 2669 keywords: 2670 - cloud services 2671 - cloud computing 2672 - scalability 2673 overview: 2674 <<: *overview 2675 data_collection: 2676 metrics_description: | 2677 Monitor IPMI metrics externally for efficient server hardware management and monitoring. 2678 method_description: | 2679 Metrics are gathered by periodically sending HTTP requests to [SoundCloud IPMI Exporter (querying IPMI externally, blackbox-exporter style)](https://github.com/prometheus-community/ipmi_exporter). 2680 setup: 2681 <<: *setup 2682 prerequisites: 2683 list: 2684 - title: Install Exporter 2685 description: | 2686 Install [SoundCloud IPMI Exporter (querying IPMI externally, blackbox-exporter style)](https://github.com/prometheus-community/ipmi_exporter) by following the instructions mentioned in the exporter README. 2687 - <<: *module 2688 meta: 2689 <<: *meta 2690 id: collector-go.d.plugin-prometheus-spacelift 2691 most_popular: false 2692 community: true 2693 monitored_instance: 2694 name: Spacelift 2695 link: https://github.com/spacelift-io/prometheus-exporter 2696 icon_filename: spacelift.png 2697 categories: 2698 - data-collection.provisioning-systems 2699 keywords: [] 2700 overview: 2701 <<: *overview 2702 data_collection: 2703 metrics_description: | 2704 Track Spacelift infrastructure-as-code (IaC) platform metrics for efficient infrastructure automation and management. 2705 method_description: | 2706 Metrics are gathered by periodically sending HTTP requests to [Spacelift Exporter](https://github.com/spacelift-io/prometheus-exporter). 2707 setup: 2708 <<: *setup 2709 prerequisites: 2710 list: 2711 - title: Install Exporter 2712 description: | 2713 Install [Spacelift Exporter](https://github.com/spacelift-io/prometheus-exporter) by following the instructions mentioned in the exporter README. 2714 - <<: *module 2715 meta: 2716 <<: *meta 2717 id: collector-go.d.plugin-prometheus-ssh 2718 most_popular: false 2719 community: true 2720 monitored_instance: 2721 name: SSH 2722 link: https://github.com/Nordstrom/ssh_exporter 2723 icon_filename: ssh.png 2724 categories: 2725 - data-collection.authentication-and-authorization 2726 keywords: [] 2727 overview: 2728 <<: *overview 2729 data_collection: 2730 metrics_description: | 2731 Monitor SSH server metrics for efficient secure shell server management and performance. 2732 method_description: | 2733 Metrics are gathered by periodically sending HTTP requests to [SSH Exporter](https://github.com/Nordstrom/ssh_exporter). 2734 setup: 2735 <<: *setup 2736 prerequisites: 2737 list: 2738 - title: Install Exporter 2739 description: | 2740 Install [SSH Exporter](https://github.com/Nordstrom/ssh_exporter) by following the instructions mentioned in the exporter README. 2741 - <<: *module 2742 meta: 2743 <<: *meta 2744 id: collector-go.d.plugin-prometheus-ssl 2745 most_popular: false 2746 community: true 2747 monitored_instance: 2748 name: SSL Certificate 2749 link: https://github.com/ribbybibby/ssl_exporter 2750 icon_filename: ssl.svg 2751 categories: 2752 - data-collection.security-systems 2753 keywords: [] 2754 overview: 2755 <<: *overview 2756 data_collection: 2757 metrics_description: | 2758 Track SSL/TLS certificate metrics for efficient web security and certificate management. 2759 method_description: | 2760 Metrics are gathered by periodically sending HTTP requests to [SSL Certificate exporter](https://github.com/ribbybibby/ssl_exporter). 2761 setup: 2762 <<: *setup 2763 prerequisites: 2764 list: 2765 - title: Install Exporter 2766 description: | 2767 Install [SSL Certificate exporter](https://github.com/ribbybibby/ssl_exporter) by following the instructions mentioned in the exporter README. 2768 - <<: *module 2769 meta: 2770 <<: *meta 2771 id: collector-go.d.plugin-prometheus-starlink 2772 most_popular: false 2773 community: true 2774 monitored_instance: 2775 name: Starlink (SpaceX) 2776 link: https://github.com/danopstech/starlink_exporter 2777 icon_filename: starlink.svg 2778 categories: 2779 - data-collection.networking-stack-and-network-interfaces 2780 keywords: [] 2781 overview: 2782 <<: *overview 2783 data_collection: 2784 metrics_description: | 2785 Monitor SpaceX Starlink satellite internet metrics for efficient internet service management and performance. 2786 method_description: | 2787 Metrics are gathered by periodically sending HTTP requests to [Starlink Exporter (SpaceX)](https://github.com/danopstech/starlink_exporter). 2788 setup: 2789 <<: *setup 2790 prerequisites: 2791 list: 2792 - title: Install Exporter 2793 description: | 2794 Install [Starlink Exporter (SpaceX)](https://github.com/danopstech/starlink_exporter) by following the instructions mentioned in the exporter README. 2795 - <<: *module 2796 meta: 2797 <<: *meta 2798 id: collector-go.d.plugin-prometheus-statuspage 2799 most_popular: false 2800 community: true 2801 monitored_instance: 2802 name: StatusPage 2803 link: https://github.com/vladvasiliu/statuspage-exporter 2804 icon_filename: statuspage.png 2805 categories: 2806 - data-collection.notifications 2807 keywords: [] 2808 overview: 2809 <<: *overview 2810 data_collection: 2811 metrics_description: | 2812 Monitor StatusPage.io incident and status metrics for efficient incident management and communication. 2813 method_description: | 2814 Metrics are gathered by periodically sending HTTP requests to [StatusPage Exporter](https://github.com/vladvasiliu/statuspage-exporter). 2815 setup: 2816 <<: *setup 2817 prerequisites: 2818 list: 2819 - title: Install Exporter 2820 description: | 2821 Install [StatusPage Exporter](https://github.com/vladvasiliu/statuspage-exporter) by following the instructions mentioned in the exporter README. 2822 - <<: *module 2823 meta: 2824 <<: *meta 2825 id: collector-go.d.plugin-prometheus-tacas 2826 most_popular: false 2827 community: true 2828 monitored_instance: 2829 name: TACACS 2830 link: https://github.com/devon-mar/tacacs-exporter 2831 icon_filename: tacacs.png 2832 categories: 2833 - data-collection.authentication-and-authorization 2834 keywords: [] 2835 overview: 2836 <<: *overview 2837 data_collection: 2838 metrics_description: | 2839 Track Terminal Access Controller Access-Control System (TACACS) protocol metrics for efficient network authentication and authorization management. 2840 method_description: | 2841 Metrics are gathered by periodically sending HTTP requests to [TACACS Exporter](https://github.com/devon-mar/tacacs-exporter). 2842 setup: 2843 <<: *setup 2844 prerequisites: 2845 list: 2846 - title: Install Exporter 2847 description: | 2848 Install [TACACS Exporter](https://github.com/devon-mar/tacacs-exporter) by following the instructions mentioned in the exporter README. 2849 - <<: *module 2850 meta: 2851 <<: *meta 2852 id: collector-go.d.plugin-prometheus-tesla_vehicle 2853 most_popular: false 2854 community: true 2855 monitored_instance: 2856 name: Tesla vehicle 2857 link: https://github.com/wywywywy/tesla-prometheus-exporter 2858 icon_filename: tesla.png 2859 categories: 2860 - data-collection.iot-devices 2861 keywords: [] 2862 overview: 2863 <<: *overview 2864 data_collection: 2865 metrics_description: | 2866 Track Tesla vehicle metrics for efficient electric vehicle management and monitoring. 2867 method_description: | 2868 Metrics are gathered by periodically sending HTTP requests to [Tesla exporter](https://github.com/wywywywy/tesla-prometheus-exporter). 2869 setup: 2870 <<: *setup 2871 prerequisites: 2872 list: 2873 - title: Install Exporter 2874 description: | 2875 Install [Tesla exporter](https://github.com/wywywywy/tesla-prometheus-exporter) by following the instructions mentioned in the exporter README. 2876 - <<: *module 2877 meta: 2878 <<: *meta 2879 id: collector-go.d.plugin-prometheus-tesla_powerwall 2880 most_popular: false 2881 community: true 2882 monitored_instance: 2883 name: Tesla Powerwall 2884 link: https://github.com/foogod/powerwall_exporter 2885 icon_filename: tesla.png 2886 categories: 2887 - data-collection.iot-devices 2888 keywords: [] 2889 overview: 2890 <<: *overview 2891 data_collection: 2892 metrics_description: | 2893 Monitor Tesla Powerwall metrics for efficient home energy storage and management. 2894 method_description: | 2895 Metrics are gathered by periodically sending HTTP requests to [Tesla Powerwall Exporter](https://github.com/foogod/powerwall_exporter). 2896 setup: 2897 <<: *setup 2898 prerequisites: 2899 list: 2900 - title: Install Exporter 2901 description: | 2902 Install [Tesla Powerwall Exporter](https://github.com/foogod/powerwall_exporter) by following the instructions mentioned in the exporter README. 2903 - <<: *module 2904 meta: 2905 <<: *meta 2906 id: collector-go.d.plugin-prometheus-twitch 2907 most_popular: false 2908 community: true 2909 monitored_instance: 2910 name: Twitch 2911 link: https://github.com/damoun/twitch_exporter 2912 icon_filename: twitch.svg 2913 categories: 2914 - data-collection.media-streaming-servers 2915 keywords: [] 2916 overview: 2917 <<: *overview 2918 data_collection: 2919 metrics_description: | 2920 Track Twitch streaming platform metrics for efficient live streaming management and performance. 2921 method_description: | 2922 Metrics are gathered by periodically sending HTTP requests to [Twitch exporter](https://github.com/damoun/twitch_exporter). 2923 setup: 2924 <<: *setup 2925 prerequisites: 2926 list: 2927 - title: Install Exporter 2928 description: | 2929 Install [Twitch exporter](https://github.com/damoun/twitch_exporter) by following the instructions mentioned in the exporter README. 2930 - <<: *module 2931 meta: 2932 <<: *meta 2933 id: collector-go.d.plugin-prometheus-ubiquity_ufiber 2934 most_popular: false 2935 community: true 2936 monitored_instance: 2937 name: Ubiquiti UFiber OLT 2938 link: https://github.com/swoga/ufiber-exporter 2939 icon_filename: ubiquiti.png 2940 categories: 2941 - data-collection.networking-stack-and-network-interfaces 2942 keywords: [] 2943 overview: 2944 <<: *overview 2945 data_collection: 2946 metrics_description: | 2947 Track Ubiquiti UFiber GPON (Gigabit Passive Optical Network) device metrics for efficient fiber-optic network management and performance. 2948 method_description: | 2949 Metrics are gathered by periodically sending HTTP requests to [ufiber-exporter](https://github.com/swoga/ufiber-exporter). 2950 setup: 2951 <<: *setup 2952 prerequisites: 2953 list: 2954 - title: Install Exporter 2955 description: | 2956 Install [ufiber-exporter](https://github.com/swoga/ufiber-exporter) by following the instructions mentioned in the exporter README. 2957 - <<: *module 2958 meta: 2959 <<: *meta 2960 id: collector-go.d.plugin-prometheus-uptimerobot 2961 most_popular: false 2962 community: true 2963 monitored_instance: 2964 name: Uptimerobot 2965 link: https://github.com/wosc/prometheus-uptimerobot 2966 icon_filename: uptimerobot.svg 2967 categories: 2968 - data-collection.synthetic-checks 2969 keywords: [] 2970 overview: 2971 <<: *overview 2972 data_collection: 2973 metrics_description: | 2974 Monitor UptimeRobot website uptime monitoring metrics for efficient website availability tracking and management. 2975 method_description: | 2976 Metrics are gathered by periodically sending HTTP requests to [Uptimerobot Exporter](https://github.com/wosc/prometheus-uptimerobot). 2977 setup: 2978 <<: *setup 2979 prerequisites: 2980 list: 2981 - title: Install Exporter 2982 description: | 2983 Install [Uptimerobot Exporter](https://github.com/wosc/prometheus-uptimerobot) by following the instructions mentioned in the exporter README. 2984 - <<: *module 2985 meta: 2986 <<: *meta 2987 id: collector-go.d.plugin-prometheus-hashicorp_vault 2988 most_popular: false 2989 community: true 2990 monitored_instance: 2991 name: HashiCorp Vault secrets 2992 link: https://github.com/tomtom-international/vault-assessment-prometheus-exporter 2993 icon_filename: vault.svg 2994 categories: 2995 - data-collection.authentication-and-authorization 2996 keywords: [] 2997 overview: 2998 <<: *overview 2999 data_collection: 3000 metrics_description: | 3001 Track HashiCorp Vault security assessment metrics for efficient secrets management and security. 3002 method_description: | 3003 Metrics are gathered by periodically sending HTTP requests to [Vault Assessment Prometheus Exporter](https://github.com/tomtom-international/vault-assessment-prometheus-exporter). 3004 setup: 3005 <<: *setup 3006 prerequisites: 3007 list: 3008 - title: Install Exporter 3009 description: | 3010 Install [Vault Assessment Prometheus Exporter](https://github.com/tomtom-international/vault-assessment-prometheus-exporter) by following the instructions mentioned in the exporter README. 3011 - <<: *module 3012 meta: 3013 <<: *meta 3014 id: collector-go.d.plugin-prometheus-vault_pki 3015 most_popular: false 3016 community: true 3017 monitored_instance: 3018 name: Vault PKI 3019 link: https://github.com/aarnaud/vault-pki-exporter 3020 icon_filename: vault.svg 3021 categories: 3022 - data-collection.security-systems 3023 keywords: [] 3024 overview: 3025 <<: *overview 3026 data_collection: 3027 metrics_description: | 3028 Monitor HashiCorp Vault Public Key Infrastructure (PKI) metrics for efficient certificate management and security. 3029 method_description: | 3030 Metrics are gathered by periodically sending HTTP requests to [Vault PKI Exporter](https://github.com/aarnaud/vault-pki-exporter). 3031 setup: 3032 <<: *setup 3033 prerequisites: 3034 list: 3035 - title: Install Exporter 3036 description: | 3037 Install [Vault PKI Exporter](https://github.com/aarnaud/vault-pki-exporter) by following the instructions mentioned in the exporter README. 3038 - <<: *module 3039 meta: 3040 <<: *meta 3041 id: collector-go.d.plugin-prometheus-vertica 3042 most_popular: false 3043 community: true 3044 monitored_instance: 3045 name: Vertica 3046 link: https://github.com/vertica/vertica-prometheus-exporter 3047 icon_filename: vertica.svg 3048 categories: 3049 - data-collection.database-servers 3050 keywords: [] 3051 overview: 3052 <<: *overview 3053 data_collection: 3054 metrics_description: | 3055 Monitor Vertica analytics database platform metrics for efficient database performance and management. 3056 method_description: | 3057 Metrics are gathered by periodically sending HTTP requests to [vertica-prometheus-exporter](https://github.com/vertica/vertica-prometheus-exporter). 3058 setup: 3059 <<: *setup 3060 prerequisites: 3061 list: 3062 - title: Install Exporter 3063 description: | 3064 Install [vertica-prometheus-exporter](https://github.com/vertica/vertica-prometheus-exporter) by following the instructions mentioned in the exporter README. 3065 - <<: *module 3066 meta: 3067 <<: *meta 3068 id: collector-go.d.plugin-prometheus-vscode 3069 most_popular: false 3070 community: true 3071 monitored_instance: 3072 name: VSCode 3073 link: https://github.com/guicaulada/vscode-exporter 3074 icon_filename: vscode.svg 3075 categories: 3076 - data-collection.apm 3077 keywords: [] 3078 overview: 3079 <<: *overview 3080 data_collection: 3081 metrics_description: | 3082 Track Visual Studio Code editor metrics for efficient development environment management and performance. 3083 method_description: | 3084 Metrics are gathered by periodically sending HTTP requests to [VSCode Exporter](https://github.com/guicaulada/vscode-exporter). 3085 setup: 3086 <<: *setup 3087 prerequisites: 3088 list: 3089 - title: Install Exporter 3090 description: | 3091 Install [VSCode Exporter](https://github.com/guicaulada/vscode-exporter) by following the instructions mentioned in the exporter README. 3092 - <<: *module 3093 meta: 3094 <<: *meta 3095 id: collector-go.d.plugin-prometheus-airthings_waveplus 3096 most_popular: false 3097 community: true 3098 monitored_instance: 3099 name: Airthings Waveplus air sensor 3100 link: https://github.com/jeremybz/waveplus_exporter 3101 icon_filename: airthings.svg 3102 categories: 3103 - data-collection.iot-devices 3104 keywords: [] 3105 overview: 3106 <<: *overview 3107 data_collection: 3108 metrics_description: | 3109 Track Waveplus radon sensor metrics for efficient indoor air quality monitoring and management. 3110 method_description: | 3111 Metrics are gathered by periodically sending HTTP requests to [Waveplus Radon Sensor Exporter](https://github.com/jeremybz/waveplus_exporter). 3112 setup: 3113 <<: *setup 3114 prerequisites: 3115 list: 3116 - title: Install Exporter 3117 description: | 3118 Install [Waveplus Radon Sensor Exporter](https://github.com/jeremybz/waveplus_exporter) by following the instructions mentioned in the exporter README. 3119 3120 - <<: *module 3121 meta: 3122 <<: *meta 3123 id: collector-go.d.plugin-prometheus-xmpp_blackbox 3124 most_popular: false 3125 community: true 3126 monitored_instance: 3127 name: XMPP Server 3128 link: https://github.com/horazont/xmpp-blackbox-exporter 3129 icon_filename: xmpp.svg 3130 categories: 3131 - data-collection.message-brokers 3132 keywords: [] 3133 overview: 3134 <<: *overview 3135 data_collection: 3136 metrics_description: | 3137 Monitor XMPP (Extensible Messaging and Presence Protocol) server metrics for efficient messaging and communication management. 3138 method_description: | 3139 Metrics are gathered by periodically sending HTTP requests to [XMPP Server Exporter](https://github.com/horazont/xmpp-blackbox-exporter). 3140 setup: 3141 <<: *setup 3142 prerequisites: 3143 list: 3144 - title: Install Exporter 3145 description: | 3146 Install [XMPP Server Exporter](https://github.com/horazont/xmpp-blackbox-exporter) by following the instructions mentioned in the exporter README. 3147 3148 - <<: *module 3149 meta: 3150 <<: *meta 3151 id: collector-go.d.plugin-prometheus-4d_server 3152 most_popular: false 3153 community: true 3154 monitored_instance: 3155 name: 4D Server 3156 link: https://github.com/ThomasMaul/Prometheus_4D_Exporter 3157 icon_filename: 4d_server.png 3158 categories: 3159 - data-collection.database-servers 3160 keywords: [] 3161 overview: 3162 <<: *overview 3163 data_collection: 3164 metrics_description: | 3165 Monitor 4D Server performance metrics for efficient application management and optimization. 3166 method_description: | 3167 Metrics are gathered by periodically sending HTTP requests to [4D Server exporter](https://github.com/ThomasMaul/Prometheus_4D_Exporter). 3168 setup: 3169 <<: *setup 3170 prerequisites: 3171 list: 3172 - title: Install Exporter 3173 description: | 3174 Install [4D Server exporter](https://github.com/ThomasMaul/Prometheus_4D_Exporter) by following the instructions mentioned in the exporter README. 3175 - <<: *module 3176 meta: 3177 <<: *meta 3178 id: collector-go.d.plugin-prometheus-8430ft-modem 3179 most_popular: false 3180 community: true 3181 monitored_instance: 3182 name: 8430FT modem 3183 link: https://github.com/dernasherbrezon/8430ft_exporter 3184 icon_filename: mtc.svg 3185 categories: 3186 - data-collection.networking-stack-and-network-interfaces 3187 keywords: [] 3188 overview: 3189 <<: *overview 3190 data_collection: 3191 metrics_description: | 3192 Keep track of vital metrics from the MTS 8430FT modem for streamlined network performance and diagnostics. 3193 method_description: | 3194 Metrics are gathered by periodically sending HTTP requests to [8430FT Exporter](https://github.com/dernasherbrezon/8430ft_exporter). 3195 setup: 3196 <<: *setup 3197 prerequisites: 3198 list: 3199 - title: Install Exporter 3200 description: | 3201 Install [8430FT Exporter](https://github.com/dernasherbrezon/8430ft_exporter) by following the instructions mentioned in the exporter README. 3202 - <<: *module 3203 meta: 3204 <<: *meta 3205 id: collector-go.d.plugin-prometheus-steam_a2s 3206 most_popular: false 3207 community: true 3208 monitored_instance: 3209 name: Steam 3210 link: https://github.com/armsnyder/a2s-exporter 3211 icon_filename: a2s.png 3212 categories: 3213 - data-collection.gaming 3214 keywords: [] 3215 overview: 3216 <<: *overview 3217 data_collection: 3218 metrics_description: | 3219 Gain insights into Steam A2S-supported game servers for performance and availability through real-time metric monitoring. 3220 method_description: | 3221 Metrics are gathered by periodically sending HTTP requests to [A2S Exporter](https://github.com/armsnyder/a2s-exporter). 3222 setup: 3223 <<: *setup 3224 prerequisites: 3225 list: 3226 - title: Install Exporter 3227 description: | 3228 Install [A2S Exporter](https://github.com/armsnyder/a2s-exporter) by following the instructions mentioned in the exporter README. 3229 - <<: *module 3230 meta: 3231 <<: *meta 3232 id: collector-go.d.plugin-prometheus-akami_edgedns 3233 most_popular: false 3234 community: true 3235 monitored_instance: 3236 name: Akamai Edge DNS Traffic 3237 link: https://github.com/akamai/akamai-edgedns-traffic-exporter 3238 icon_filename: akamai.svg 3239 categories: 3240 - data-collection.dns-and-dhcp-servers 3241 keywords: [] 3242 overview: 3243 <<: *overview 3244 data_collection: 3245 metrics_description: | 3246 Track and analyze Akamai Edge DNS traffic for enhanced performance and security. 3247 method_description: | 3248 Metrics are gathered by periodically sending HTTP requests to [Akamai Edge DNS Traffic Exporter](https://github.com/akamai/akamai-edgedns-traffic-exporter). 3249 setup: 3250 <<: *setup 3251 prerequisites: 3252 list: 3253 - title: Install Exporter 3254 description: | 3255 Install [Akamai Edge DNS Traffic Exporter](https://github.com/akamai/akamai-edgedns-traffic-exporter) by following the instructions mentioned in the exporter README. 3256 - <<: *module 3257 meta: 3258 <<: *meta 3259 id: collector-go.d.plugin-prometheus-akami_gtm 3260 most_popular: false 3261 community: true 3262 monitored_instance: 3263 name: Akamai Global Traffic Management 3264 link: https://github.com/akamai/akamai-gtm-metrics-exporter 3265 icon_filename: akamai.svg 3266 categories: 3267 - data-collection.cloud-provider-managed 3268 keywords: [] 3269 overview: 3270 <<: *overview 3271 data_collection: 3272 metrics_description: | 3273 Monitor vital metrics of Akamai Global Traffic Management (GTM) for optimized load balancing and failover. 3274 method_description: | 3275 Metrics are gathered by periodically sending HTTP requests to [Akamai Global Traffic Management Metrics Exporter](https://github.com/akamai/akamai-gtm-metrics-exporter). 3276 setup: 3277 <<: *setup 3278 prerequisites: 3279 list: 3280 - title: Install Exporter 3281 description: | 3282 Install [Akamai Global Traffic Management Metrics Exporter](https://github.com/akamai/akamai-gtm-metrics-exporter) by following the instructions mentioned in the exporter README. 3283 - <<: *module 3284 meta: 3285 <<: *meta 3286 id: collector-go.d.plugin-prometheus-alamos_fe2 3287 most_popular: false 3288 community: true 3289 monitored_instance: 3290 name: Alamos FE2 server 3291 link: https://github.com/codemonauts/prometheus-fe2-exporter 3292 icon_filename: alamos_fe2.png 3293 categories: 3294 - data-collection.apm 3295 keywords: [] 3296 overview: 3297 <<: *overview 3298 data_collection: 3299 metrics_description: | 3300 Keep tabs on Alamos FE2 systems for improved performance and management. 3301 method_description: | 3302 Metrics are gathered by periodically sending HTTP requests to [Alamos FE2 Exporter](https://github.com/codemonauts/prometheus-fe2-exporter). 3303 setup: 3304 <<: *setup 3305 prerequisites: 3306 list: 3307 - title: Install Exporter 3308 description: | 3309 Install [Alamos FE2 Exporter](https://github.com/codemonauts/prometheus-fe2-exporter) by following the instructions mentioned in the exporter README. 3310 - <<: *module 3311 meta: 3312 <<: *meta 3313 id: collector-go.d.plugin-prometheus-altaro_backup 3314 most_popular: false 3315 community: true 3316 monitored_instance: 3317 name: Altaro Backup 3318 link: https://github.com/raph2i/altaro_backup_exporter 3319 icon_filename: altaro.svg 3320 categories: 3321 - data-collection.storage-mount-points-and-filesystems 3322 keywords: [] 3323 overview: 3324 <<: *overview 3325 data_collection: 3326 metrics_description: | 3327 Track Altaro Backup performance metrics to ensure smooth data protection and recovery operations. 3328 method_description: | 3329 Metrics are gathered by periodically sending HTTP requests to [Altaro Backup Exporter](https://github.com/raph2i/altaro_backup_exporter). 3330 setup: 3331 <<: *setup 3332 prerequisites: 3333 list: 3334 - title: Install Exporter 3335 description: | 3336 Install [Altaro Backup Exporter](https://github.com/raph2i/altaro_backup_exporter) by following the instructions mentioned in the exporter README. 3337 - <<: *module 3338 meta: 3339 <<: *meta 3340 id: collector-go.d.plugin-prometheus-amd_smi 3341 most_popular: false 3342 community: true 3343 monitored_instance: 3344 name: AMD CPU & GPU 3345 link: https://github.com/amd/amd_smi_exporter 3346 icon_filename: amd.svg 3347 categories: 3348 - data-collection.hardware-devices-and-sensors 3349 keywords: [] 3350 overview: 3351 <<: *overview 3352 data_collection: 3353 metrics_description: | 3354 Monitor AMD System Management Interface performance for optimized hardware management. 3355 method_description: | 3356 Metrics are gathered by periodically sending HTTP requests to [AMD SMI Exporter](https://github.com/amd/amd_smi_exporter). 3357 setup: 3358 <<: *setup 3359 prerequisites: 3360 list: 3361 - title: Install Exporter 3362 description: | 3363 Install [AMD SMI Exporter](https://github.com/amd/amd_smi_exporter) by following the instructions mentioned in the exporter README. 3364 - <<: *module 3365 meta: 3366 <<: *meta 3367 id: collector-go.d.plugin-prometheus-aaisp 3368 most_popular: false 3369 community: true 3370 monitored_instance: 3371 name: Andrews & Arnold line status 3372 link: https://github.com/daveio/aaisp-exporter 3373 icon_filename: andrewsarnold.jpg 3374 categories: 3375 - data-collection.networking-stack-and-network-interfaces 3376 keywords: [] 3377 overview: 3378 <<: *overview 3379 data_collection: 3380 metrics_description: | 3381 Track Andrews & Arnold Ltd (AAISP) metrics for improved network performance and diagnostics. 3382 method_description: | 3383 Metrics are gathered by periodically sending HTTP requests to [Andrews & Arnold line status exporter](https://github.com/daveio/aaisp-exporter). 3384 setup: 3385 <<: *setup 3386 prerequisites: 3387 list: 3388 - title: Install Exporter 3389 description: | 3390 Install [Andrews & Arnold line status exporter](https://github.com/daveio/aaisp-exporter) by following the instructions mentioned in the exporter README. 3391 - <<: *module 3392 meta: 3393 <<: *meta 3394 id: collector-go.d.plugin-prometheus-apicast 3395 most_popular: false 3396 community: true 3397 monitored_instance: 3398 name: APIcast 3399 link: https://github.com/3scale/apicast 3400 icon_filename: apicast.png 3401 categories: 3402 - data-collection.web-servers-and-web-proxies 3403 keywords: [] 3404 overview: 3405 <<: *overview 3406 data_collection: 3407 metrics_description: | 3408 Monitor APIcast performance metrics to optimize API gateway operations and management. 3409 method_description: | 3410 Metrics are gathered by periodically sending HTTP requests to [APIcast](https://github.com/3scale/apicast). 3411 setup: 3412 <<: *setup 3413 prerequisites: 3414 list: 3415 - title: Install Exporter 3416 description: | 3417 Install [APIcast](https://github.com/3scale/apicast) by following the instructions mentioned in the exporter README. 3418 - <<: *module 3419 meta: 3420 <<: *meta 3421 id: collector-go.d.plugin-prometheus-apple_timemachine 3422 most_popular: false 3423 community: true 3424 monitored_instance: 3425 name: Apple Time Machine 3426 link: https://github.com/znerol/prometheus-timemachine-exporter 3427 icon_filename: apple.svg 3428 categories: 3429 - data-collection.macos-systems 3430 keywords: [] 3431 overview: 3432 <<: *overview 3433 data_collection: 3434 metrics_description: | 3435 Track Apple Time Machine backup metrics for efficient data protection and recovery. 3436 method_description: | 3437 Metrics are gathered by periodically sending HTTP requests to [Apple Time Machine Exporter](https://github.com/znerol/prometheus-timemachine-exporter). 3438 setup: 3439 <<: *setup 3440 prerequisites: 3441 list: 3442 - title: Install Exporter 3443 description: | 3444 Install [Apple Time Machine Exporter](https://github.com/znerol/prometheus-timemachine-exporter) by following the instructions mentioned in the exporter README. 3445 - <<: *module 3446 meta: 3447 <<: *meta 3448 id: collector-go.d.plugin-prometheus-arm_hwcpipe 3449 most_popular: false 3450 community: true 3451 monitored_instance: 3452 name: ARM HWCPipe 3453 link: https://github.com/ylz-at/arm-hwcpipe-exporter 3454 icon_filename: arm.svg 3455 categories: 3456 - data-collection.hardware-devices-and-sensors 3457 keywords: [] 3458 overview: 3459 <<: *overview 3460 data_collection: 3461 metrics_description: | 3462 Keep track of ARM running Android devices and get metrics for efficient performance optimization. 3463 method_description: | 3464 Metrics are gathered by periodically sending HTTP requests to [ARM HWCPipe Exporter](https://github.com/ylz-at/arm-hwcpipe-exporter). 3465 setup: 3466 <<: *setup 3467 prerequisites: 3468 list: 3469 - title: Install Exporter 3470 description: | 3471 Install [ARM HWCPipe Exporter](https://github.com/ylz-at/arm-hwcpipe-exporter) by following the instructions mentioned in the exporter README. 3472 - <<: *module 3473 meta: 3474 <<: *meta 3475 id: collector-go.d.plugin-prometheus-arvancloud_cdn 3476 most_popular: false 3477 community: true 3478 monitored_instance: 3479 name: ArvanCloud CDN 3480 link: https://github.com/arvancloud/ar-prometheus-exporter 3481 icon_filename: arvancloud.png 3482 categories: 3483 - data-collection.cloud-provider-managed 3484 keywords: 3485 - cloud services 3486 - cloud computing 3487 - scalability 3488 overview: 3489 <<: *overview 3490 data_collection: 3491 metrics_description: | 3492 Track and analyze ArvanCloud CDN and cloud services performance metrics for optimized delivery and management. 3493 method_description: | 3494 Metrics are gathered by periodically sending HTTP requests to [ArvanCloud exporter](https://github.com/arvancloud/ar-prometheus-exporter). 3495 setup: 3496 <<: *setup 3497 prerequisites: 3498 list: 3499 - title: Install Exporter 3500 description: | 3501 Install [ArvanCloud exporter](https://github.com/arvancloud/ar-prometheus-exporter) by following the instructions mentioned in the exporter README. 3502 - <<: *module 3503 meta: 3504 <<: *meta 3505 id: collector-go.d.plugin-prometheus-audisto 3506 most_popular: false 3507 community: true 3508 monitored_instance: 3509 name: Audisto 3510 link: https://github.com/ZeitOnline/audisto_exporter 3511 icon_filename: audisto.svg 3512 categories: 3513 - data-collection.apm 3514 keywords: [] 3515 overview: 3516 <<: *overview 3517 data_collection: 3518 metrics_description: | 3519 Monitor Audisto SEO and website metrics for improved search performance and optimization. 3520 method_description: | 3521 Metrics are gathered by periodically sending HTTP requests to [Audisto exporter](https://github.com/ZeitOnline/audisto_exporter). 3522 setup: 3523 <<: *setup 3524 prerequisites: 3525 list: 3526 - title: Install Exporter 3527 description: | 3528 Install [Audisto exporter](https://github.com/ZeitOnline/audisto_exporter) by following the instructions mentioned in the exporter README. 3529 - <<: *module 3530 meta: 3531 <<: *meta 3532 id: collector-go.d.plugin-prometheus-authlog 3533 most_popular: false 3534 community: true 3535 monitored_instance: 3536 name: AuthLog 3537 link: https://github.com/woblerr/authlog_exporter 3538 icon_filename: linux.png 3539 categories: 3540 - data-collection.logs-servers 3541 keywords: [] 3542 overview: 3543 <<: *overview 3544 data_collection: 3545 metrics_description: | 3546 Monitor authentication logs for security insights and efficient access management. 3547 method_description: | 3548 Metrics are gathered by periodically sending HTTP requests to [AuthLog Exporter](https://github.com/woblerr/authlog_exporter). 3549 setup: 3550 <<: *setup 3551 prerequisites: 3552 list: 3553 - title: Install Exporter 3554 description: | 3555 Install [AuthLog Exporter](https://github.com/woblerr/authlog_exporter) by following the instructions mentioned in the exporter README. 3556 - <<: *module 3557 meta: 3558 <<: *meta 3559 id: collector-go.d.plugin-prometheus-aws_ec2_spot 3560 most_popular: false 3561 community: true 3562 monitored_instance: 3563 name: AWS EC2 Spot Instance 3564 link: https://github.com/patcadelina/ec2-spot-exporter 3565 icon_filename: aws-ec2.png 3566 categories: 3567 - data-collection.cloud-provider-managed 3568 keywords: 3569 - cloud services 3570 - cloud computing 3571 - aws services 3572 overview: 3573 <<: *overview 3574 data_collection: 3575 metrics_description: | 3576 Monitor AWS EC2 Spot instances'' performance metrics for efficient resource allocation and cost optimization. 3577 method_description: | 3578 Metrics are gathered by periodically sending HTTP requests to [AWS EC2 Spot Exporter](https://github.com/patcadelina/ec2-spot-exporter). 3579 setup: 3580 <<: *setup 3581 prerequisites: 3582 list: 3583 - title: Install Exporter 3584 description: | 3585 Install [AWS EC2 Spot Exporter](https://github.com/patcadelina/ec2-spot-exporter) by following the instructions mentioned in the exporter README. 3586 - <<: *module 3587 meta: 3588 <<: *meta 3589 id: collector-go.d.plugin-prometheus-aws_quota 3590 most_popular: false 3591 community: true 3592 monitored_instance: 3593 name: AWS Quota 3594 link: https://github.com/emylincon/aws_quota_exporter 3595 icon_filename: aws.svg 3596 categories: 3597 - data-collection.cloud-provider-managed 3598 keywords: 3599 - cloud services 3600 - cloud computing 3601 - aws services 3602 overview: 3603 <<: *overview 3604 data_collection: 3605 metrics_description: | 3606 Monitor AWS service quotas for effective resource usage and cost management. 3607 method_description: | 3608 Metrics are gathered by periodically sending HTTP requests to [aws_quota_exporter](https://github.com/emylincon/aws_quota_exporter). 3609 setup: 3610 <<: *setup 3611 prerequisites: 3612 list: 3613 - title: Install Exporter 3614 description: | 3615 Install [aws_quota_exporter](https://github.com/emylincon/aws_quota_exporter) by following the instructions mentioned in the exporter README. 3616 - <<: *module 3617 meta: 3618 <<: *meta 3619 id: collector-go.d.plugin-prometheus-bobcat 3620 most_popular: false 3621 community: true 3622 monitored_instance: 3623 name: Bobcat Miner 300 3624 link: https://github.com/pperzyna/bobcat_exporter 3625 icon_filename: bobcat.jpg 3626 categories: 3627 - data-collection.iot-devices 3628 keywords: [] 3629 overview: 3630 <<: *overview 3631 data_collection: 3632 metrics_description: | 3633 Monitor Bobcat equipment metrics for optimized performance and maintenance management. 3634 method_description: | 3635 Metrics are gathered by periodically sending HTTP requests to [Bobcat Exporter](https://github.com/pperzyna/bobcat_exporter). 3636 setup: 3637 <<: *setup 3638 prerequisites: 3639 list: 3640 - title: Install Exporter 3641 description: | 3642 Install [Bobcat Exporter](https://github.com/pperzyna/bobcat_exporter) by following the instructions mentioned in the exporter README. 3643 3644 - <<: *module 3645 meta: 3646 <<: *meta 3647 id: collector-go.d.plugin-prometheus-bosh 3648 most_popular: false 3649 community: true 3650 monitored_instance: 3651 name: BOSH 3652 link: https://github.com/bosh-prometheus/bosh_exporter 3653 icon_filename: bosh.png 3654 categories: 3655 - data-collection.provisioning-systems 3656 keywords: [] 3657 overview: 3658 <<: *overview 3659 data_collection: 3660 metrics_description: | 3661 Keep an eye on BOSH deployment metrics for improved cloud orchestration and resource management. 3662 method_description: | 3663 Metrics are gathered by periodically sending HTTP requests to [BOSH exporter](https://github.com/bosh-prometheus/bosh_exporter). 3664 setup: 3665 <<: *setup 3666 prerequisites: 3667 list: 3668 - title: Install Exporter 3669 description: | 3670 Install [BOSH exporter](https://github.com/bosh-prometheus/bosh_exporter) by following the instructions mentioned in the exporter README. 3671 - <<: *module 3672 meta: 3673 <<: *meta 3674 id: collector-go.d.plugin-prometheus-bpftrace 3675 most_popular: false 3676 community: true 3677 monitored_instance: 3678 name: bpftrace variables 3679 link: https://github.com/andreasgerstmayr/bpftrace_exporter 3680 icon_filename: bpftrace.png 3681 categories: 3682 - data-collection.apm 3683 keywords: [] 3684 overview: 3685 <<: *overview 3686 data_collection: 3687 metrics_description: | 3688 Track bpftrace metrics for advanced performance analysis and troubleshooting. 3689 method_description: | 3690 Metrics are gathered by periodically sending HTTP requests to [bpftrace exporter](https://github.com/andreasgerstmayr/bpftrace_exporter). 3691 setup: 3692 <<: *setup 3693 prerequisites: 3694 list: 3695 - title: Install Exporter 3696 description: | 3697 Install [bpftrace exporter](https://github.com/andreasgerstmayr/bpftrace_exporter) by following the instructions mentioned in the exporter README. 3698 - <<: *module 3699 meta: 3700 <<: *meta 3701 id: collector-go.d.plugin-prometheus-bungeecord 3702 most_popular: false 3703 community: true 3704 monitored_instance: 3705 name: BungeeCord 3706 link: https://github.com/weihao/bungeecord-prometheus-exporter 3707 icon_filename: bungee.png 3708 categories: 3709 - data-collection.gaming 3710 keywords: [] 3711 overview: 3712 <<: *overview 3713 data_collection: 3714 metrics_description: | 3715 Track BungeeCord proxy server metrics for efficient load balancing and performance management. 3716 method_description: | 3717 Metrics are gathered by periodically sending HTTP requests to [BungeeCord Prometheus Exporter](https://github.com/weihao/bungeecord-prometheus-exporter). 3718 setup: 3719 <<: *setup 3720 prerequisites: 3721 list: 3722 - title: Install Exporter 3723 description: | 3724 Install [BungeeCord Prometheus Exporter](https://github.com/weihao/bungeecord-prometheus-exporter) by following the instructions mentioned in the exporter README. 3725 - <<: *module 3726 meta: 3727 <<: *meta 3728 id: collector-go.d.plugin-prometheus-celery 3729 most_popular: false 3730 community: true 3731 monitored_instance: 3732 name: Celery 3733 link: https://github.com/ZeitOnline/celery_redis_prometheus 3734 icon_filename: celery.png 3735 categories: 3736 - data-collection.task-queues 3737 keywords: [] 3738 overview: 3739 <<: *overview 3740 data_collection: 3741 metrics_description: | 3742 Keep an eye on Celery task queue metrics for optimized task processing and resource management. 3743 method_description: | 3744 Metrics are gathered by periodically sending HTTP requests to [Celery Exporter](https://github.com/ZeitOnline/celery_redis_prometheus). 3745 setup: 3746 <<: *setup 3747 prerequisites: 3748 list: 3749 - title: Install Exporter 3750 description: | 3751 Install [Celery Exporter](https://github.com/ZeitOnline/celery_redis_prometheus) by following the instructions mentioned in the exporter README. 3752 - <<: *module 3753 meta: 3754 <<: *meta 3755 id: collector-go.d.plugin-prometheus-checkpoint 3756 most_popular: false 3757 community: true 3758 monitored_instance: 3759 name: Checkpoint device 3760 link: https://github.com/RespiroConsulting/CheckPointExporter 3761 icon_filename: checkpoint.png 3762 categories: 3763 - data-collection.networking-stack-and-network-interfaces 3764 keywords: [] 3765 overview: 3766 <<: *overview 3767 data_collection: 3768 metrics_description: | 3769 Track Check Point firewall and security metrics for enhanced network protection and management. 3770 method_description: | 3771 Metrics are gathered by periodically sending HTTP requests to [Checkpoint exporter](https://github.com/RespiroConsulting/CheckPointExporter). 3772 setup: 3773 <<: *setup 3774 prerequisites: 3775 list: 3776 - title: Install Exporter 3777 description: | 3778 Install [Checkpoint exporter](https://github.com/RespiroConsulting/CheckPointExporter) by following the instructions mentioned in the exporter README. 3779 - <<: *module 3780 meta: 3781 <<: *meta 3782 id: collector-go.d.plugin-prometheus-chia 3783 most_popular: false 3784 community: true 3785 monitored_instance: 3786 name: Chia 3787 link: https://github.com/chia-network/chia-exporter 3788 icon_filename: chia.png 3789 categories: 3790 - data-collection.blockchain-servers 3791 keywords: [] 3792 overview: 3793 <<: *overview 3794 data_collection: 3795 metrics_description: | 3796 Track Chia blockchain metrics for optimized farming and resource allocation. 3797 method_description: | 3798 Metrics are gathered by periodically sending HTTP requests to [Chia Exporter](https://github.com/chia-network/chia-exporter). 3799 setup: 3800 <<: *setup 3801 prerequisites: 3802 list: 3803 - title: Install Exporter 3804 description: | 3805 Install [Chia Exporter](https://github.com/chia-network/chia-exporter) by following the instructions mentioned in the exporter README. 3806 - <<: *module 3807 meta: 3808 <<: *meta 3809 id: collector-go.d.plugin-prometheus-clm5ip 3810 most_popular: false 3811 community: true 3812 monitored_instance: 3813 name: Christ Elektronik CLM5IP power panel 3814 link: https://github.com/christmann/clm5ip_exporter/ 3815 icon_filename: christelec.png 3816 categories: 3817 - data-collection.iot-devices 3818 keywords: [] 3819 overview: 3820 <<: *overview 3821 data_collection: 3822 metrics_description: | 3823 Monitor Christ Elektronik CLM5IP device metrics for efficient performance and diagnostics. 3824 method_description: | 3825 Metrics are gathered by periodically sending HTTP requests to [Christ Elektronik CLM5IP Exporter](https://github.com/christmann/clm5ip_exporter/). 3826 setup: 3827 <<: *setup 3828 prerequisites: 3829 list: 3830 - title: Install Exporter 3831 description: | 3832 Install [Christ Elektronik CLM5IP Exporter](https://github.com/christmann/clm5ip_exporter/) by following the instructions mentioned in the exporter README. 3833 - <<: *module 3834 meta: 3835 <<: *meta 3836 id: collector-go.d.plugin-prometheus-clamd 3837 most_popular: false 3838 community: true 3839 monitored_instance: 3840 name: ClamAV daemon 3841 link: https://github.com/sergeymakinen/clamav_exporter 3842 icon_filename: clamav.png 3843 categories: 3844 - data-collection.security-systems 3845 keywords: [] 3846 overview: 3847 <<: *overview 3848 data_collection: 3849 metrics_description: | 3850 Track ClamAV antivirus metrics for enhanced threat detection and management. 3851 method_description: | 3852 Metrics are gathered by periodically sending HTTP requests to [ClamAV daemon stats exporter](https://github.com/sergeymakinen/clamav_exporter). 3853 setup: 3854 <<: *setup 3855 prerequisites: 3856 list: 3857 - title: Install Exporter 3858 description: | 3859 Install [ClamAV daemon stats exporter](https://github.com/sergeymakinen/clamav_exporter) by following the instructions mentioned in the exporter README. 3860 - <<: *module 3861 meta: 3862 <<: *meta 3863 id: collector-go.d.plugin-prometheus-clamscan 3864 most_popular: false 3865 community: true 3866 monitored_instance: 3867 name: Clamscan results 3868 link: https://github.com/FortnoxAB/clamscan-exporter 3869 icon_filename: clamav.png 3870 categories: 3871 - data-collection.security-systems 3872 keywords: [] 3873 overview: 3874 <<: *overview 3875 data_collection: 3876 metrics_description: | 3877 Monitor ClamAV scanning performance metrics for efficient malware detection and analysis. 3878 method_description: | 3879 Metrics are gathered by periodically sending HTTP requests to [clamscan-exporter](https://github.com/FortnoxAB/clamscan-exporter). 3880 setup: 3881 <<: *setup 3882 prerequisites: 3883 list: 3884 - title: Install Exporter 3885 description: | 3886 Install [clamscan-exporter](https://github.com/FortnoxAB/clamscan-exporter) by following the instructions mentioned in the exporter README. 3887 - <<: *module 3888 meta: 3889 <<: *meta 3890 id: collector-go.d.plugin-prometheus-clash 3891 most_popular: false 3892 community: true 3893 monitored_instance: 3894 name: Clash 3895 link: https://github.com/elonzh/clash_exporter 3896 icon_filename: clash.png 3897 categories: 3898 - data-collection.web-servers-and-web-proxies 3899 keywords: [] 3900 overview: 3901 <<: *overview 3902 data_collection: 3903 metrics_description: | 3904 Keep an eye on Clash proxy server metrics for optimized network performance and management. 3905 method_description: | 3906 Metrics are gathered by periodically sending HTTP requests to [Clash exporter](https://github.com/elonzh/clash_exporter). 3907 setup: 3908 <<: *setup 3909 prerequisites: 3910 list: 3911 - title: Install Exporter 3912 description: | 3913 Install [Clash exporter](https://github.com/elonzh/clash_exporter) by following the instructions mentioned in the exporter README. 3914 - <<: *module 3915 meta: 3916 <<: *meta 3917 id: collector-go.d.plugin-prometheus-cloud_foundry 3918 most_popular: false 3919 community: true 3920 monitored_instance: 3921 name: Cloud Foundry 3922 link: https://github.com/bosh-prometheus/cf_exporter 3923 icon_filename: cloud-foundry.svg 3924 categories: 3925 - data-collection.provisioning-systems 3926 keywords: 3927 - cloud services 3928 - cloud computing 3929 - scalability 3930 overview: 3931 <<: *overview 3932 data_collection: 3933 metrics_description: | 3934 Track Cloud Foundry platform metrics for optimized application deployment and management. 3935 method_description: | 3936 Metrics are gathered by periodically sending HTTP requests to [Cloud Foundry exporter](https://github.com/bosh-prometheus/cf_exporter). 3937 setup: 3938 <<: *setup 3939 prerequisites: 3940 list: 3941 - title: Install Exporter 3942 description: | 3943 Install [Cloud Foundry exporter](https://github.com/bosh-prometheus/cf_exporter) by following the instructions mentioned in the exporter README. 3944 - <<: *module 3945 meta: 3946 <<: *meta 3947 id: collector-go.d.plugin-prometheus-cloud_foundry_firebase 3948 most_popular: false 3949 community: true 3950 monitored_instance: 3951 name: Cloud Foundry Firehose 3952 link: https://github.com/bosh-prometheus/firehose_exporter 3953 icon_filename: cloud-foundry.svg 3954 categories: 3955 - data-collection.provisioning-systems 3956 keywords: 3957 - cloud services 3958 - cloud computing 3959 - scalability 3960 overview: 3961 <<: *overview 3962 data_collection: 3963 metrics_description: | 3964 Monitor Cloud Foundry Firehose metrics for comprehensive platform diagnostics and management. 3965 method_description: | 3966 Metrics are gathered by periodically sending HTTP requests to [Cloud Foundry Firehose exporter](https://github.com/bosh-prometheus/firehose_exporter). 3967 setup: 3968 <<: *setup 3969 prerequisites: 3970 list: 3971 - title: Install Exporter 3972 description: | 3973 Install [Cloud Foundry Firehose exporter](https://github.com/bosh-prometheus/firehose_exporter) by following the instructions mentioned in the exporter README. 3974 - <<: *module 3975 meta: 3976 <<: *meta 3977 id: collector-go.d.plugin-prometheus-akami_cloudmonitor 3978 most_popular: false 3979 community: true 3980 monitored_instance: 3981 name: Akami Cloudmonitor 3982 link: https://github.com/ExpressenAB/cloudmonitor_exporter 3983 icon_filename: akamai.svg 3984 categories: 3985 - data-collection.cloud-provider-managed 3986 keywords: 3987 - cloud services 3988 - cloud computing 3989 - scalability 3990 overview: 3991 <<: *overview 3992 data_collection: 3993 metrics_description: | 3994 Monitor Akamai cloudmonitor provider metrics for comprehensive cloud performance management. 3995 method_description: | 3996 Metrics are gathered by periodically sending HTTP requests to [Cloudmonitor exporter](https://github.com/ExpressenAB/cloudmonitor_exporter). 3997 setup: 3998 <<: *setup 3999 prerequisites: 4000 list: 4001 - title: Install Exporter 4002 description: | 4003 Install [Cloudmonitor exporter](https://github.com/ExpressenAB/cloudmonitor_exporter) by following the instructions mentioned in the exporter README. 4004 4005 - <<: *module 4006 meta: 4007 <<: *meta 4008 id: collector-go.d.plugin-prometheus-lustre 4009 most_popular: false 4010 community: true 4011 monitored_instance: 4012 name: Lustre metadata 4013 link: https://github.com/GSI-HPC/prometheus-cluster-exporter 4014 icon_filename: lustre.png 4015 categories: 4016 - data-collection.cloud-provider-managed 4017 keywords: [] 4018 overview: 4019 <<: *overview 4020 data_collection: 4021 metrics_description: | 4022 Keep tabs on Lustre clustered file system for efficient management and performance. 4023 method_description: | 4024 Metrics are gathered by periodically sending HTTP requests to [Cluster Exporter](https://github.com/GSI-HPC/prometheus-cluster-exporter). 4025 setup: 4026 <<: *setup 4027 prerequisites: 4028 list: 4029 - title: Install Exporter 4030 description: | 4031 Install [Cluster Exporter](https://github.com/GSI-HPC/prometheus-cluster-exporter) by following the instructions mentioned in the exporter README. 4032 - <<: *module 4033 meta: 4034 <<: *meta 4035 id: collector-go.d.plugin-prometheus-cmon 4036 most_popular: false 4037 community: true 4038 monitored_instance: 4039 name: ClusterControl CMON 4040 link: https://github.com/severalnines/cmon_exporter 4041 icon_filename: cluster-control.svg 4042 categories: 4043 - data-collection.database-servers 4044 keywords: [] 4045 overview: 4046 <<: *overview 4047 data_collection: 4048 metrics_description: | 4049 Track CMON metrics for Severalnines Cluster Control for efficient monitoring and management of database operations. 4050 method_description: | 4051 Metrics are gathered by periodically sending HTTP requests to [CMON Exporter](https://github.com/severalnines/cmon_exporter). 4052 setup: 4053 <<: *setup 4054 prerequisites: 4055 list: 4056 - title: Install Exporter 4057 description: | 4058 Install [CMON Exporter](https://github.com/severalnines/cmon_exporter) by following the instructions mentioned in the exporter README. 4059 - <<: *module 4060 meta: 4061 <<: *meta 4062 id: collector-go.d.plugin-prometheus-collectd 4063 most_popular: false 4064 community: true 4065 monitored_instance: 4066 name: Collectd 4067 link: https://github.com/prometheus/collectd_exporter 4068 icon_filename: collectd.png 4069 categories: 4070 - data-collection.observability 4071 keywords: [] 4072 overview: 4073 <<: *overview 4074 data_collection: 4075 metrics_description: | 4076 Monitor system and application metrics with Collectd for comprehensive performance analysis. 4077 method_description: | 4078 Metrics are gathered by periodically sending HTTP requests to [Collectd exporter](https://github.com/prometheus/collectd_exporter). 4079 setup: 4080 <<: *setup 4081 prerequisites: 4082 list: 4083 - title: Install Exporter 4084 description: | 4085 Install [Collectd exporter](https://github.com/prometheus/collectd_exporter) by following the instructions mentioned in the exporter README. 4086 - <<: *module 4087 meta: 4088 <<: *meta 4089 id: collector-go.d.plugin-prometheus-shell_cmd 4090 most_popular: false 4091 community: true 4092 monitored_instance: 4093 name: Shell command 4094 link: https://github.com/tomwilkie/prom-run 4095 icon_filename: crunner.svg 4096 categories: 4097 - data-collection.generic-data-collection 4098 keywords: [] 4099 overview: 4100 <<: *overview 4101 data_collection: 4102 metrics_description: | 4103 Track custom command output metrics for tailored monitoring and management. 4104 method_description: | 4105 Metrics are gathered by periodically sending HTTP requests to [Command runner exporter](https://github.com/tomwilkie/prom-run). 4106 setup: 4107 <<: *setup 4108 prerequisites: 4109 list: 4110 - title: Install Exporter 4111 description: | 4112 Install [Command runner exporter](https://github.com/tomwilkie/prom-run) by following the instructions mentioned in the exporter README. 4113 - <<: *module 4114 meta: 4115 <<: *meta 4116 id: collector-go.d.plugin-prometheus-ftbeerpi 4117 most_popular: false 4118 community: true 4119 monitored_instance: 4120 name: CraftBeerPi 4121 link: https://github.com/jo-hannes/craftbeerpi_exporter 4122 icon_filename: craftbeer.png 4123 categories: 4124 - data-collection.iot-devices 4125 keywords: [] 4126 overview: 4127 <<: *overview 4128 data_collection: 4129 metrics_description: | 4130 Keep an eye on CraftBeerPi homebrewing metrics for optimized brewing process management. 4131 method_description: | 4132 Metrics are gathered by periodically sending HTTP requests to [CraftBeerPi exporter](https://github.com/jo-hannes/craftbeerpi_exporter). 4133 setup: 4134 <<: *setup 4135 prerequisites: 4136 list: 4137 - title: Install Exporter 4138 description: | 4139 Install [CraftBeerPi exporter](https://github.com/jo-hannes/craftbeerpi_exporter) by following the instructions mentioned in the exporter README. 4140 - <<: *module 4141 meta: 4142 <<: *meta 4143 id: collector-go.d.plugin-prometheus-crypto 4144 most_popular: false 4145 community: true 4146 monitored_instance: 4147 name: Crypto exchanges 4148 link: https://github.com/ix-ai/crypto-exporter 4149 icon_filename: crypto.png 4150 categories: 4151 - data-collection.blockchain-servers 4152 keywords: [] 4153 overview: 4154 <<: *overview 4155 data_collection: 4156 metrics_description: | 4157 Track cryptocurrency market metrics for informed investment and trading decisions. 4158 method_description: | 4159 Metrics are gathered by periodically sending HTTP requests to [Crypto exporter](https://github.com/ix-ai/crypto-exporter). 4160 setup: 4161 <<: *setup 4162 prerequisites: 4163 list: 4164 - title: Install Exporter 4165 description: | 4166 Install [Crypto exporter](https://github.com/ix-ai/crypto-exporter) by following the instructions mentioned in the exporter README. 4167 4168 - <<: *module 4169 meta: 4170 id: collector-go.d.plugin-prometheus-cryptowatch 4171 <<: *meta 4172 most_popular: false 4173 community: true 4174 monitored_instance: 4175 name: Cryptowatch 4176 link: https://github.com/nbarrientos/cryptowat_exporter 4177 icon_filename: cryptowatch.png 4178 categories: 4179 - data-collection.blockchain-servers 4180 keywords: [] 4181 overview: 4182 <<: *overview 4183 data_collection: 4184 metrics_description: | 4185 Keep tabs on Cryptowatch market data metrics for comprehensive cryptocurrency market analysis. 4186 method_description: | 4187 Metrics are gathered by periodically sending HTTP requests to [Cryptowat Exporter](https://github.com/nbarrientos/cryptowat_exporter). 4188 setup: 4189 <<: *setup 4190 prerequisites: 4191 list: 4192 - title: Install Exporter 4193 description: | 4194 Install [Cryptowat Exporter](https://github.com/nbarrientos/cryptowat_exporter) by following the instructions mentioned in the exporter README. 4195 - <<: *module 4196 meta: 4197 <<: *meta 4198 id: collector-go.d.plugin-prometheus-csgo 4199 most_popular: false 4200 community: true 4201 monitored_instance: 4202 name: CS:GO 4203 link: https://github.com/kinduff/csgo_exporter 4204 icon_filename: csgo.svg 4205 categories: 4206 - data-collection.gaming 4207 keywords: [] 4208 overview: 4209 <<: *overview 4210 data_collection: 4211 metrics_description: | 4212 Monitor Counter-Strike: Global Offensive server metrics for improved game performance and management. 4213 method_description: | 4214 Metrics are gathered by periodically sending HTTP requests to [CS:GO Exporter](https://github.com/kinduff/csgo_exporter). 4215 setup: 4216 <<: *setup 4217 prerequisites: 4218 list: 4219 - title: Install Exporter 4220 description: | 4221 Install [CS:GO Exporter](https://github.com/kinduff/csgo_exporter) by following the instructions mentioned in the exporter README. 4222 - <<: *module 4223 meta: 4224 <<: *meta 4225 id: collector-go.d.plugin-prometheus-certificate_transparency 4226 most_popular: false 4227 community: true 4228 monitored_instance: 4229 name: Certificate Transparency 4230 link: https://github.com/Hsn723/ct-exporter 4231 icon_filename: ct.png 4232 categories: 4233 - data-collection.security-systems 4234 keywords: [] 4235 overview: 4236 <<: *overview 4237 data_collection: 4238 metrics_description: | 4239 Track certificate transparency log metrics for enhanced 4240 SSL/TLS certificate management and security. 4241 method_description: | 4242 Metrics are gathered by periodically sending HTTP requests to [ct-exporter](https://github.com/Hsn723/ct-exporter). 4243 setup: 4244 <<: *setup 4245 prerequisites: 4246 list: 4247 - title: Install Exporter 4248 description: | 4249 Install [ct-exporter](https://github.com/Hsn723/ct-exporter) by following the instructions mentioned in the exporter README. 4250 - <<: *module 4251 meta: 4252 <<: *meta 4253 id: collector-go.d.plugin-prometheus-custom 4254 most_popular: false 4255 community: true 4256 monitored_instance: 4257 name: Custom Exporter 4258 link: https://github.com/orange-cloudfoundry/custom_exporter 4259 icon_filename: customdata.png 4260 categories: 4261 - data-collection.generic-data-collection 4262 keywords: [] 4263 overview: 4264 <<: *overview 4265 data_collection: 4266 metrics_description: | 4267 Create and monitor custom metrics tailored to your specific use case and requirements. 4268 method_description: | 4269 Metrics are gathered by periodically sending HTTP requests to [Custom Exporter](https://github.com/orange-cloudfoundry/custom_exporter). 4270 setup: 4271 <<: *setup 4272 prerequisites: 4273 list: 4274 - title: Install Exporter 4275 description: | 4276 Install [Custom Exporter](https://github.com/orange-cloudfoundry/custom_exporter) by following the instructions mentioned in the exporter README. 4277 - <<: *module 4278 meta: 4279 <<: *meta 4280 id: collector-go.d.plugin-prometheus-cvmfs 4281 most_popular: false 4282 community: true 4283 monitored_instance: 4284 name: CVMFS clients 4285 link: https://github.com/guilbaults/cvmfs-exporter 4286 icon_filename: cvmfs.png 4287 categories: 4288 - data-collection.storage-mount-points-and-filesystems 4289 keywords: [] 4290 overview: 4291 <<: *overview 4292 data_collection: 4293 metrics_description: | 4294 Track CernVM File System metrics for optimized distributed file system performance and management. 4295 method_description: | 4296 Metrics are gathered by periodically sending HTTP requests to [CVMFS exporter](https://github.com/guilbaults/cvmfs-exporter). 4297 setup: 4298 <<: *setup 4299 prerequisites: 4300 list: 4301 - title: Install Exporter 4302 description: | 4303 Install [CVMFS exporter](https://github.com/guilbaults/cvmfs-exporter) by following the instructions mentioned in the exporter README. 4304 - <<: *module 4305 meta: 4306 <<: *meta 4307 id: collector-go.d.plugin-prometheus-ddwrt 4308 most_popular: false 4309 community: true 4310 monitored_instance: 4311 name: DDWRT Routers 4312 link: https://github.com/camelusferus/ddwrt_collector 4313 icon_filename: ddwrt.png 4314 categories: 4315 - data-collection.networking-stack-and-network-interfaces 4316 keywords: [] 4317 overview: 4318 <<: *overview 4319 data_collection: 4320 metrics_description: | 4321 Keep tabs on DD-WRT router metrics for efficient network management and performance. 4322 method_description: | 4323 Metrics are gathered by periodically sending HTTP requests to [ddwrt-collector](https://github.com/camelusferus/ddwrt_collector). 4324 setup: 4325 <<: *setup 4326 prerequisites: 4327 list: 4328 - title: Install Exporter 4329 description: | 4330 Install [ddwrt-collector](https://github.com/camelusferus/ddwrt_collector) by following the instructions mentioned in the exporter README. 4331 - <<: *module 4332 meta: 4333 id: collector-go.d.plugin-prometheus-dell_emc_xtremio 4334 <<: *meta 4335 most_popular: false 4336 community: true 4337 monitored_instance: 4338 name: Dell EMC XtremIO cluster 4339 link: https://github.com/cthiel42/prometheus-xtremio-exporter 4340 icon_filename: dell.svg 4341 categories: 4342 - data-collection.storage-mount-points-and-filesystems 4343 keywords: [] 4344 overview: 4345 <<: *overview 4346 data_collection: 4347 metrics_description: | 4348 Keep an eye on Dell/EMC XtremIO storage metrics for optimized data management and performance. 4349 method_description: | 4350 Metrics are gathered by periodically sending HTTP requests to [Dell/EMC XtremIO Exporter](https://github.com/cthiel42/prometheus-xtremio-exporter). 4351 setup: 4352 <<: *setup 4353 prerequisites: 4354 list: 4355 - title: Install Exporter 4356 description: | 4357 Install [Dell/EMC XtremIO Exporter](https://github.com/cthiel42/prometheus-xtremio-exporter) by following the instructions mentioned in the exporter README. 4358 - <<: *module 4359 meta: 4360 <<: *meta 4361 id: collector-go.d.plugin-prometheus-dependency_track 4362 most_popular: false 4363 community: true 4364 monitored_instance: 4365 name: Dependency-Track 4366 link: https://github.com/jetstack/dependency-track-exporter 4367 icon_filename: dependency-track.png 4368 categories: 4369 - data-collection.apm 4370 keywords: [] 4371 overview: 4372 <<: *overview 4373 data_collection: 4374 metrics_description: | 4375 Monitor Dependency-Track metrics for efficient vulnerability management and software supply chain analysis. 4376 method_description: | 4377 Metrics are gathered by periodically sending HTTP requests to [Dependency-Track Exporter](https://github.com/jetstack/dependency-track-exporter). 4378 setup: 4379 <<: *setup 4380 prerequisites: 4381 list: 4382 - title: Install Exporter 4383 description: | 4384 Install [Dependency-Track Exporter](https://github.com/jetstack/dependency-track-exporter) by following the instructions mentioned in the exporter README. 4385 - <<: *module 4386 meta: 4387 id: collector-go.d.plugin-prometheus-dmarc 4388 <<: *meta 4389 most_popular: false 4390 community: true 4391 monitored_instance: 4392 name: DMARC 4393 link: https://github.com/jgosmann/dmarc-metrics-exporter 4394 icon_filename: dmarc.png 4395 categories: 4396 - data-collection.mail-servers 4397 keywords: 4398 - email authentication 4399 - policy 4400 - reporting 4401 overview: 4402 <<: *overview 4403 data_collection: 4404 metrics_description: | 4405 Track DMARC email authentication metrics for improved email security and deliverability. 4406 method_description: | 4407 Metrics are gathered by periodically sending HTTP requests to [dmarc-metrics-exporter](https://github.com/jgosmann/dmarc-metrics-exporter). 4408 setup: 4409 <<: *setup 4410 prerequisites: 4411 list: 4412 - title: Install Exporter 4413 description: | 4414 Install [dmarc-metrics-exporter](https://github.com/jgosmann/dmarc-metrics-exporter) by following the instructions mentioned in the exporter README. 4415 - <<: *module 4416 meta: 4417 id: collector-go.d.plugin-prometheus-dnsbl 4418 <<: *meta 4419 most_popular: false 4420 community: true 4421 monitored_instance: 4422 name: DNSBL 4423 link: https://github.com/Luzilla/dnsbl_exporter/ 4424 icon_filename: dnsbl.png 4425 categories: 4426 - data-collection.dns-and-dhcp-servers 4427 keywords: [] 4428 overview: 4429 <<: *overview 4430 data_collection: 4431 metrics_description: | 4432 Monitor DNSBL metrics for efficient domain reputation and security management. 4433 method_description: | 4434 Metrics are gathered by periodically sending HTTP requests to [dnsbl-exporter](https://github.com/Luzilla/dnsbl_exporter/). 4435 setup: 4436 <<: *setup 4437 prerequisites: 4438 list: 4439 - title: Install Exporter 4440 description: | 4441 Install [dnsbl-exporter](https://github.com/Luzilla/dnsbl_exporter/) by following the instructions mentioned in the exporter README. 4442 4443 4444 - <<: *module 4445 meta: 4446 id: collector-go.d.plugin-prometheus-bird 4447 <<: *meta 4448 most_popular: false 4449 community: true 4450 monitored_instance: 4451 name: Bird Routing Daemon 4452 link: https://github.com/czerwonk/bird_exporter 4453 icon_filename: bird.png 4454 categories: 4455 - data-collection.networking-stack-and-network-interfaces 4456 keywords: [] 4457 overview: 4458 <<: *overview 4459 data_collection: 4460 metrics_description: | 4461 Keep an eye on Bird Routing Daemon metrics for optimized network routing and management. 4462 method_description: | 4463 Metrics are gathered by periodically sending HTTP requests to [Bird Routing Daemon Exporter](https://github.com/czerwonk/bird_exporter). 4464 setup: 4465 <<: *setup 4466 prerequisites: 4467 list: 4468 - title: Install Exporter 4469 description: | 4470 Install [Bird Routing Daemon Exporter](https://github.com/czerwonk/bird_exporter) by following the instructions mentioned in the exporter README. 4471 - <<: *module 4472 meta: 4473 <<: *meta 4474 id: collector-go.d.plugin-prometheus-elgato_keylight 4475 most_popular: false 4476 community: true 4477 monitored_instance: 4478 name: Elgato Key Light devices. 4479 link: https://github.com/mdlayher/keylight_exporter 4480 icon_filename: elgato.svg 4481 categories: 4482 - data-collection.iot-devices 4483 keywords: [] 4484 overview: 4485 <<: *overview 4486 data_collection: 4487 metrics_description: | 4488 Keep tabs on Elgato Key Light metrics for optimized lighting control and management. 4489 method_description: | 4490 Metrics are gathered by periodically sending HTTP requests to [Elgato Key Light exporter](https://github.com/mdlayher/keylight_exporter). 4491 setup: 4492 <<: *setup 4493 prerequisites: 4494 list: 4495 - title: Install Exporter 4496 description: | 4497 Install [Elgato Key Light exporter](https://github.com/mdlayher/keylight_exporter) by following the instructions mentioned in the exporter README. 4498 - <<: *module 4499 meta: 4500 <<: *meta 4501 id: collector-go.d.plugin-prometheus-energomera 4502 most_popular: false 4503 community: true 4504 monitored_instance: 4505 name: Energomera smart power meters 4506 link: https://github.com/peak-load/energomera_exporter 4507 icon_filename: energomera.png 4508 categories: 4509 - data-collection.iot-devices 4510 keywords: [] 4511 overview: 4512 <<: *overview 4513 data_collection: 4514 metrics_description: | 4515 Track Energomera electricity meter metrics for efficient energy management and monitoring. 4516 method_description: | 4517 Metrics are gathered by periodically sending HTTP requests to [Energomera electricity meter exporter](https://github.com/peak-load/energomera_exporter). 4518 setup: 4519 <<: *setup 4520 prerequisites: 4521 list: 4522 - title: Install Exporter 4523 description: | 4524 Install [energomera-exporter Energomera electricity meter exporter](https://github.com/peak-load/energomera_exporter) by following the instructions mentioned in the exporter README. 4525 - <<: *module 4526 meta: 4527 <<: *meta 4528 id: collector-go.d.plugin-prometheus-excel 4529 most_popular: false 4530 community: true 4531 monitored_instance: 4532 name: Excel spreadsheet 4533 link: https://github.com/MarcusCalidus/excel-exporter 4534 icon_filename: excel.png 4535 categories: 4536 - data-collection.generic-data-collection 4537 keywords: [] 4538 overview: 4539 <<: *overview 4540 data_collection: 4541 metrics_description: | 4542 Export Prometheus metrics to Excel for versatile data analysis and reporting. 4543 method_description: | 4544 Metrics are gathered by periodically sending HTTP requests to [Excel Exporter](https://github.com/MarcusCalidus/excel-exporter). 4545 setup: 4546 <<: *setup 4547 prerequisites: 4548 list: 4549 - title: Install Exporter 4550 description: | 4551 Install [Excel Exporter](https://github.com/MarcusCalidus/excel-exporter) by following the instructions mentioned in the exporter README. 4552 4553 - <<: *module 4554 meta: 4555 <<: *meta 4556 id: collector-go.d.plugin-prometheus-fastd 4557 most_popular: false 4558 community: true 4559 monitored_instance: 4560 name: Fastd 4561 link: https://github.com/freifunk-darmstadt/fastd-exporter 4562 icon_filename: fastd.png 4563 categories: 4564 - data-collection.vpns 4565 keywords: [] 4566 overview: 4567 <<: *overview 4568 data_collection: 4569 metrics_description: | 4570 Monitor Fastd VPN metrics for efficient virtual private network management and performance. 4571 method_description: | 4572 Metrics are gathered by periodically sending HTTP requests to [Fastd Exporter](https://github.com/freifunk-darmstadt/fastd-exporter). 4573 setup: 4574 <<: *setup 4575 prerequisites: 4576 list: 4577 - title: Install Exporter 4578 description: | 4579 Install [Fastd Exporter](https://github.com/freifunk-darmstadt/fastd-exporter) by following the instructions mentioned in the exporter README. 4580 - <<: *module 4581 meta: 4582 <<: *meta 4583 id: collector-go.d.plugin-prometheus-freifunk 4584 most_popular: false 4585 community: true 4586 monitored_instance: 4587 name: Freifunk network 4588 link: https://github.com/xperimental/freifunk-exporter 4589 icon_filename: freifunk.png 4590 categories: 4591 - data-collection.networking-stack-and-network-interfaces 4592 keywords: [] 4593 overview: 4594 <<: *overview 4595 data_collection: 4596 metrics_description: | 4597 Keep tabs on Freifunk community network metrics for optimized network performance and management. 4598 method_description: | 4599 Metrics are gathered by periodically sending HTTP requests to [Freifunk Exporter](https://github.com/xperimental/freifunk-exporter). 4600 setup: 4601 <<: *setup 4602 prerequisites: 4603 list: 4604 - title: Install Exporter 4605 description: | 4606 Install [Freifunk Exporter](https://github.com/xperimental/freifunk-exporter) by following the instructions mentioned in the exporter README. 4607 - <<: *module 4608 meta: 4609 <<: *meta 4610 id: collector-go.d.plugin-prometheus-fritzbox 4611 most_popular: false 4612 community: true 4613 monitored_instance: 4614 name: Fritzbox network devices 4615 link: https://github.com/pdreker/fritz_exporter 4616 icon_filename: avm.png 4617 categories: 4618 - data-collection.networking-stack-and-network-interfaces 4619 keywords: [] 4620 overview: 4621 <<: *overview 4622 data_collection: 4623 metrics_description: | 4624 Track AVM Fritzbox router metrics for efficient home network management and performance. 4625 method_description: | 4626 Metrics are gathered by periodically sending HTTP requests to [Fritzbox exporter](https://github.com/pdreker/fritz_exporter). 4627 setup: 4628 <<: *setup 4629 prerequisites: 4630 list: 4631 - title: Install Exporter 4632 description: | 4633 Install [Fritzbox exporter](https://github.com/pdreker/fritz_exporter) by following the instructions mentioned in the exporter README. 4634 - <<: *module 4635 meta: 4636 <<: *meta 4637 id: collector-go.d.plugin-prometheus-frrouting 4638 most_popular: false 4639 community: true 4640 monitored_instance: 4641 name: FRRouting 4642 link: https://github.com/tynany/frr_exporter 4643 icon_filename: frrouting.png 4644 categories: 4645 - data-collection.networking-stack-and-network-interfaces 4646 keywords: [] 4647 overview: 4648 <<: *overview 4649 data_collection: 4650 metrics_description: | 4651 Monitor Free Range Routing (FRR) metrics for optimized network routing and management. 4652 method_description: | 4653 Metrics are gathered by periodically sending HTTP requests to [FRRouting Exporter](https://github.com/tynany/frr_exporter). 4654 setup: 4655 <<: *setup 4656 prerequisites: 4657 list: 4658 - title: Install Exporter 4659 description: | 4660 Install [FRRouting Exporter](https://github.com/tynany/frr_exporter) by following the instructions mentioned in the exporter README. 4661 - <<: *module 4662 meta: 4663 <<: *meta 4664 id: collector-go.d.plugin-prometheus-generic_cli 4665 most_popular: false 4666 community: true 4667 monitored_instance: 4668 name: Generic Command Line Output 4669 link: https://github.com/MarioMartReq/generic-exporter 4670 icon_filename: cli.svg 4671 categories: 4672 - data-collection.generic-data-collection 4673 keywords: [] 4674 overview: 4675 <<: *overview 4676 data_collection: 4677 metrics_description: | 4678 Track custom command line output metrics for tailored monitoring and management. 4679 method_description: | 4680 Metrics are gathered by periodically sending HTTP requests to [Generic Command Line Output Exporter](https://github.com/MarioMartReq/generic-exporter). 4681 setup: 4682 <<: *setup 4683 prerequisites: 4684 list: 4685 - title: Install Exporter 4686 description: | 4687 Install [Generic Command Line Output Exporter](https://github.com/MarioMartReq/generic-exporter) by following the instructions mentioned in the exporter README. 4688 - <<: *module 4689 meta: 4690 <<: *meta 4691 id: collector-go.d.plugin-prometheus-github_ratelimit 4692 most_popular: false 4693 community: true 4694 monitored_instance: 4695 name: GitHub API rate limit 4696 link: https://github.com/lunarway/github-ratelimit-exporter 4697 icon_filename: github.svg 4698 categories: 4699 - data-collection.other 4700 keywords: [] 4701 overview: 4702 <<: *overview 4703 data_collection: 4704 metrics_description: | 4705 Monitor GitHub API rate limit metrics for efficient 4706 API usage and management. 4707 method_description: | 4708 Metrics are gathered by periodically sending HTTP requests to [GitHub API rate limit Exporter](https://github.com/lunarway/github-ratelimit-exporter). 4709 setup: 4710 <<: *setup 4711 prerequisites: 4712 list: 4713 - title: Install Exporter 4714 description: | 4715 Install [GitHub API rate limit Exporter](https://github.com/lunarway/github-ratelimit-exporter) by following the instructions mentioned in the exporter README. 4716 - <<: *module 4717 meta: 4718 <<: *meta 4719 id: collector-go.d.plugin-prometheus-gpsd 4720 most_popular: false 4721 community: true 4722 monitored_instance: 4723 name: gpsd 4724 link: https://github.com/natesales/gpsd-exporter 4725 icon_filename: gpsd.png 4726 categories: 4727 - data-collection.apm 4728 keywords: [] 4729 overview: 4730 <<: *overview 4731 data_collection: 4732 metrics_description: | 4733 Monitor GPSD (GPS daemon) metrics for efficient GPS data management and performance. 4734 method_description: | 4735 Metrics are gathered by periodically sending HTTP requests to [gpsd exporter](https://github.com/natesales/gpsd-exporter). 4736 setup: 4737 <<: *setup 4738 prerequisites: 4739 list: 4740 - title: Install Exporter 4741 description: | 4742 Install [gpsd exporter](https://github.com/natesales/gpsd-exporter) by following the instructions mentioned in the exporter README. 4743 - <<: *module 4744 meta: 4745 <<: *meta 4746 id: collector-go.d.plugin-prometheus-gtp 4747 most_popular: false 4748 community: true 4749 monitored_instance: 4750 name: GTP 4751 link: https://github.com/wmnsk/gtp_exporter 4752 icon_filename: gtpu.png 4753 categories: 4754 - data-collection.telephony-servers 4755 keywords: [] 4756 overview: 4757 <<: *overview 4758 data_collection: 4759 metrics_description: | 4760 Keep an eye on GTP (GPRS Tunneling Protocol) metrics for optimized mobile data communication and performance. 4761 method_description: | 4762 Metrics are gathered by periodically sending HTTP requests to [GTP Exporter](https://github.com/wmnsk/gtp_exporter). 4763 setup: 4764 <<: *setup 4765 prerequisites: 4766 list: 4767 - title: Install Exporter 4768 description: | 4769 Install [GTP Exporter](https://github.com/wmnsk/gtp_exporter) by following the instructions mentioned in the exporter README. 4770 - <<: *module 4771 meta: 4772 <<: *meta 4773 id: collector-go.d.plugin-prometheus-halon 4774 most_popular: false 4775 community: true 4776 monitored_instance: 4777 name: Halon 4778 link: https://github.com/tobiasbp/halon_exporter 4779 icon_filename: halon.svg 4780 categories: 4781 - data-collection.mail-servers 4782 keywords: [] 4783 overview: 4784 <<: *overview 4785 data_collection: 4786 metrics_description: | 4787 Monitor Halon email security and delivery metrics for optimized email management and protection. 4788 method_description: | 4789 Metrics are gathered by periodically sending HTTP requests to [Halon exporter](https://github.com/tobiasbp/halon_exporter). 4790 setup: 4791 <<: *setup 4792 prerequisites: 4793 list: 4794 - title: Install Exporter 4795 description: | 4796 Install [Halon exporter](https://github.com/tobiasbp/halon_exporter) by following the instructions mentioned in the exporter README. 4797 - <<: *module 4798 meta: 4799 <<: *meta 4800 id: collector-go.d.plugin-prometheus-hasura_graphql 4801 most_popular: false 4802 community: true 4803 monitored_instance: 4804 name: Hasura GraphQL Server 4805 link: https://github.com/zolamk/hasura-exporter 4806 icon_filename: hasura.svg 4807 categories: 4808 - data-collection.database-servers 4809 keywords: [] 4810 overview: 4811 <<: *overview 4812 data_collection: 4813 metrics_description: | 4814 Keep tabs on Hasura GraphQL engine metrics for optimized 4815 API performance and management. 4816 method_description: | 4817 Metrics are gathered by periodically sending HTTP requests to [Hasura Exporter](https://github.com/zolamk/hasura-exporter). 4818 setup: 4819 <<: *setup 4820 prerequisites: 4821 list: 4822 - title: Install Exporter 4823 description: | 4824 Install [Hasura Exporter](https://github.com/zolamk/hasura-exporter) by following the instructions mentioned in the exporter README. 4825 - <<: *module 4826 meta: 4827 <<: *meta 4828 id: collector-go.d.plugin-prometheus-hdsentinel 4829 most_popular: false 4830 community: true 4831 monitored_instance: 4832 name: HDSentinel 4833 link: https://github.com/qusielle/hdsentinel-exporter 4834 icon_filename: harddisk.svg 4835 categories: 4836 - data-collection.storage-mount-points-and-filesystems 4837 keywords: [] 4838 overview: 4839 <<: *overview 4840 data_collection: 4841 metrics_description: | 4842 Monitor Hard Disk Sentinel metrics for efficient storage device health management and diagnostics. 4843 method_description: | 4844 Metrics are gathered by periodically sending HTTP requests to [HDSentinel Exporter](https://github.com/qusielle/hdsentinel-exporter). 4845 setup: 4846 <<: *setup 4847 prerequisites: 4848 list: 4849 - title: Install Exporter 4850 description: | 4851 Install [HDSentinel Exporter](https://github.com/qusielle/hdsentinel-exporter) by following the instructions mentioned in the exporter README. 4852 - <<: *module 4853 meta: 4854 <<: *meta 4855 id: collector-go.d.plugin-prometheus-helium_hotspot 4856 most_popular: false 4857 community: true 4858 monitored_instance: 4859 name: Helium hotspot 4860 link: https://github.com/tedder/helium_hotspot_exporter 4861 icon_filename: helium.svg 4862 categories: 4863 - data-collection.iot-devices 4864 keywords: [] 4865 overview: 4866 <<: *overview 4867 data_collection: 4868 metrics_description: | 4869 Track Helium hotspot metrics for optimized LoRaWAN network management and performance. 4870 method_description: | 4871 Metrics are gathered by periodically sending HTTP requests to [Helium hotspot exporter](https://github.com/tedder/helium_hotspot_exporter). 4872 setup: 4873 <<: *setup 4874 prerequisites: 4875 list: 4876 - title: Install Exporter 4877 description: | 4878 Install [Helium hotspot exporter](https://github.com/tedder/helium_hotspot_exporter) by following the instructions mentioned in the exporter README. 4879 - <<: *module 4880 meta: 4881 <<: *meta 4882 id: collector-go.d.plugin-prometheus-helium_miner 4883 most_popular: false 4884 community: true 4885 monitored_instance: 4886 name: Helium miner (validator) 4887 link: https://github.com/tedder/miner_exporter 4888 icon_filename: helium.svg 4889 categories: 4890 - data-collection.blockchain-servers 4891 keywords: [] 4892 overview: 4893 <<: *overview 4894 data_collection: 4895 metrics_description: | 4896 Monitor Helium miner and validator metrics for efficient blockchain performance and management. 4897 method_description: | 4898 Metrics are gathered by periodically sending HTTP requests to [Helium miner (validator) exporter](https://github.com/tedder/miner_exporter). 4899 setup: 4900 <<: *setup 4901 prerequisites: 4902 list: 4903 - title: Install Exporter 4904 description: | 4905 Install [Helium miner (validator) exporter](https://github.com/tedder/miner_exporter) by following the instructions mentioned in the exporter README. 4906 4907 - <<: *module 4908 meta: 4909 <<: *meta 4910 id: collector-go.d.plugin-prometheus-hhvm 4911 most_popular: false 4912 community: true 4913 monitored_instance: 4914 name: HHVM 4915 link: https://github.com/wikimedia/operations-software-hhvm_exporter 4916 icon_filename: hhvm.svg 4917 categories: 4918 - data-collection.web-servers-and-web-proxies 4919 keywords: [] 4920 overview: 4921 <<: *overview 4922 data_collection: 4923 metrics_description: | 4924 Monitor HipHop Virtual Machine metrics for efficient 4925 PHP execution and performance. 4926 method_description: | 4927 Metrics are gathered by periodically sending HTTP requests to [HHVM Exporter](https://github.com/wikimedia/operations-software-hhvm_exporter). 4928 setup: 4929 <<: *setup 4930 prerequisites: 4931 list: 4932 - title: Install Exporter 4933 description: | 4934 Install [HHVM Exporter](https://github.com/wikimedia/operations-software-hhvm_exporter) by following the instructions mentioned in the exporter README. 4935 - <<: *module 4936 meta: 4937 <<: *meta 4938 id: collector-go.d.plugin-prometheus-hilink 4939 most_popular: false 4940 community: true 4941 monitored_instance: 4942 name: Huawei devices 4943 link: https://github.com/eliecharra/hilink-exporter 4944 icon_filename: huawei.svg 4945 categories: 4946 - data-collection.networking-stack-and-network-interfaces 4947 keywords: [] 4948 overview: 4949 <<: *overview 4950 data_collection: 4951 metrics_description: | 4952 Keep tabs on Huawei HiLink device metrics for optimized connectivity and performance. 4953 method_description: | 4954 Metrics are gathered by periodically sending HTTP requests to [Huawei Hilink exporter](https://github.com/eliecharra/hilink-exporter). 4955 setup: 4956 <<: *setup 4957 prerequisites: 4958 list: 4959 - title: Install Exporter 4960 description: | 4961 Install [Huawei Hilink exporter](https://github.com/eliecharra/hilink-exporter) by following the instructions mentioned in the exporter README. 4962 - <<: *module 4963 meta: 4964 <<: *meta 4965 id: collector-go.d.plugin-prometheus-hitron_cgm 4966 most_popular: false 4967 community: true 4968 monitored_instance: 4969 name: Hitron CGN series CPE 4970 link: https://github.com/yrro/hitron-exporter 4971 icon_filename: hitron.svg 4972 categories: 4973 - data-collection.networking-stack-and-network-interfaces 4974 keywords: [] 4975 overview: 4976 <<: *overview 4977 data_collection: 4978 metrics_description: | 4979 Monitor Hitron CGNV4 gateway metrics for efficient network management and performance. 4980 method_description: | 4981 Metrics are gathered by periodically sending HTTP requests to [Hitron CGNV4 exporter](https://github.com/yrro/hitron-exporter). 4982 setup: 4983 <<: *setup 4984 prerequisites: 4985 list: 4986 - title: Install Exporter 4987 description: | 4988 Install [Hitron CGNV4 exporter](https://github.com/yrro/hitron-exporter) by following the instructions mentioned in the exporter README. 4989 - <<: *module 4990 meta: 4991 <<: *meta 4992 id: collector-go.d.plugin-prometheus-hitron_coda 4993 most_popular: false 4994 community: true 4995 monitored_instance: 4996 name: Hitron CODA Cable Modem 4997 link: https://github.com/hairyhenderson/hitron_coda_exporter 4998 icon_filename: hitron.svg 4999 categories: 5000 - data-collection.networking-stack-and-network-interfaces 5001 keywords: [] 5002 overview: 5003 <<: *overview 5004 data_collection: 5005 metrics_description: | 5006 Track Hitron CODA cable modem metrics for optimized internet connectivity and performance. 5007 method_description: | 5008 Metrics are gathered by periodically sending HTTP requests to [Hitron CODA Cable Modem Exporter](https://github.com/hairyhenderson/hitron_coda_exporter). 5009 setup: 5010 <<: *setup 5011 prerequisites: 5012 list: 5013 - title: Install Exporter 5014 description: | 5015 Install [Hitron CODA Cable Modem Exporter](https://github.com/hairyhenderson/hitron_coda_exporter) by following the instructions mentioned in the exporter README. 5016 - <<: *module 5017 meta: 5018 <<: *meta 5019 id: collector-go.d.plugin-prometheus-homebridge 5020 most_popular: false 5021 community: true 5022 monitored_instance: 5023 name: Homebridge 5024 link: https://github.com/lstrojny/homebridge-prometheus-exporter 5025 icon_filename: homebridge.svg 5026 categories: 5027 - data-collection.iot-devices 5028 keywords: [] 5029 overview: 5030 <<: *overview 5031 data_collection: 5032 metrics_description: | 5033 Monitor Homebridge smart home metrics for efficient home automation management and performance. 5034 method_description: | 5035 Metrics are gathered by periodically sending HTTP requests to [Homebridge Prometheus Exporter](https://github.com/lstrojny/homebridge-prometheus-exporter). 5036 setup: 5037 <<: *setup 5038 prerequisites: 5039 list: 5040 - title: Install Exporter 5041 description: | 5042 Install [Homebridge Prometheus Exporter](https://github.com/lstrojny/homebridge-prometheus-exporter) by following the instructions mentioned in the exporter README. 5043 - <<: *module 5044 meta: 5045 <<: *meta 5046 id: collector-go.d.plugin-prometheus-homey 5047 most_popular: false 5048 community: true 5049 monitored_instance: 5050 name: Homey 5051 link: https://github.com/rickardp/homey-prometheus-exporter 5052 icon_filename: homey.svg 5053 categories: 5054 - data-collection.iot-devices 5055 keywords: [] 5056 overview: 5057 <<: *overview 5058 data_collection: 5059 metrics_description: | 5060 Track Homey smart home controller metrics for efficient home automation and performance. 5061 method_description: | 5062 Metrics are gathered by periodically sending HTTP requests to [Homey Exporter](https://github.com/rickardp/homey-prometheus-exporter). 5063 setup: 5064 <<: *setup 5065 prerequisites: 5066 list: 5067 - title: Install Exporter 5068 description: | 5069 Install [Homey Exporter](https://github.com/rickardp/homey-prometheus-exporter) by following the instructions mentioned in the exporter README. 5070 - <<: *module 5071 meta: 5072 <<: *meta 5073 id: collector-go.d.plugin-prometheus-ibm_cex 5074 most_popular: false 5075 community: true 5076 monitored_instance: 5077 name: IBM CryptoExpress (CEX) cards 5078 link: https://github.com/ibm-s390-cloud/k8s-cex-dev-plugin 5079 icon_filename: ibm.svg 5080 categories: 5081 - data-collection.hardware-devices-and-sensors 5082 keywords: [] 5083 overview: 5084 <<: *overview 5085 data_collection: 5086 metrics_description: | 5087 Track IBM Z Crypto Express device metrics for optimized cryptographic performance and management. 5088 method_description: | 5089 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). 5090 setup: 5091 <<: *setup 5092 prerequisites: 5093 list: 5094 - title: Install Exporter 5095 description: | 5096 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. 5097 - <<: *module 5098 meta: 5099 <<: *meta 5100 id: collector-go.d.plugin-prometheus-ibm_zhmc 5101 most_popular: false 5102 community: true 5103 monitored_instance: 5104 name: IBM Z Hardware Management Console 5105 link: https://github.com/zhmcclient/zhmc-prometheus-exporter 5106 icon_filename: ibm.svg 5107 categories: 5108 - data-collection.hardware-devices-and-sensors 5109 keywords: [] 5110 overview: 5111 <<: *overview 5112 data_collection: 5113 metrics_description: | 5114 Monitor IBM Z Hardware Management Console metrics for efficient mainframe management and performance. 5115 method_description: | 5116 Metrics are gathered by periodically sending HTTP requests to [IBM Z HMC Exporter](https://github.com/zhmcclient/zhmc-prometheus-exporter). 5117 setup: 5118 <<: *setup 5119 prerequisites: 5120 list: 5121 - title: Install Exporter 5122 description: | 5123 Install [IBM Z HMC Exporter](https://github.com/zhmcclient/zhmc-prometheus-exporter) by following the instructions mentioned in the exporter README. 5124 - <<: *module 5125 meta: 5126 <<: *meta 5127 id: collector-go.d.plugin-prometheus-iota 5128 most_popular: false 5129 community: true 5130 monitored_instance: 5131 name: IOTA full node 5132 link: https://github.com/crholliday/iota-prom-exporter 5133 icon_filename: iota.svg 5134 categories: 5135 - data-collection.blockchain-servers 5136 keywords: [] 5137 overview: 5138 <<: *overview 5139 data_collection: 5140 metrics_description: | 5141 Keep an eye on IOTA cryptocurrency network metrics for efficient blockchain performance and management. 5142 method_description: | 5143 Metrics are gathered by periodically sending HTTP requests to [IOTA Exporter](https://github.com/crholliday/iota-prom-exporter). 5144 setup: 5145 <<: *setup 5146 prerequisites: 5147 list: 5148 - title: Install Exporter 5149 description: | 5150 Install [IOTA Exporter](https://github.com/crholliday/iota-prom-exporter) by following the instructions mentioned in the exporter README. 5151 - <<: *module 5152 meta: 5153 <<: *meta 5154 id: collector-go.d.plugin-prometheus-iqair 5155 most_popular: false 5156 community: true 5157 monitored_instance: 5158 name: iqAir AirVisual air quality monitors 5159 link: https://github.com/Packetslave/iqair_exporter 5160 icon_filename: iqair.svg 5161 categories: 5162 - data-collection.iot-devices 5163 keywords: [] 5164 overview: 5165 <<: *overview 5166 data_collection: 5167 metrics_description: | 5168 Monitor air quality data from IQAir devices for efficient environmental monitoring and analysis. 5169 method_description: | 5170 Metrics are gathered by periodically sending HTTP requests to [IQair Exporter](https://github.com/Packetslave/iqair_exporter). 5171 setup: 5172 <<: *setup 5173 prerequisites: 5174 list: 5175 - title: Install Exporter 5176 description: | 5177 Install [IQair Exporter](https://github.com/Packetslave/iqair_exporter) by following the instructions mentioned in the exporter README. 5178 - <<: *module 5179 meta: 5180 <<: *meta 5181 id: collector-go.d.plugin-prometheus-jarvis 5182 most_popular: false 5183 community: true 5184 monitored_instance: 5185 name: Jarvis Standing Desk 5186 link: https://github.com/hairyhenderson/jarvis_exporter/ 5187 icon_filename: jarvis.jpg 5188 categories: 5189 - data-collection.iot-devices 5190 keywords: [] 5191 overview: 5192 <<: *overview 5193 data_collection: 5194 metrics_description: | 5195 Track Jarvis standing desk usage metrics for efficient workspace ergonomics and management. 5196 method_description: | 5197 Metrics are gathered by periodically sending HTTP requests to [Jarvis Standing Desk Exporter](https://github.com/hairyhenderson/jarvis_exporter/). 5198 setup: 5199 <<: *setup 5200 prerequisites: 5201 list: 5202 - title: Install Exporter 5203 description: | 5204 Install [Jarvis Standing Desk Exporter](https://github.com/hairyhenderson/jarvis_exporter/) by following the instructions mentioned in the exporter README. 5205 5206 - <<: *module 5207 meta: 5208 <<: *meta 5209 id: collector-go.d.plugin-prometheus-enclosure 5210 most_popular: false 5211 community: true 5212 monitored_instance: 5213 name: Generic storage enclosure tool 5214 link: https://github.com/Gandi/jbod-rs 5215 icon_filename: storage-enclosure.svg 5216 categories: 5217 - data-collection.storage-mount-points-and-filesystems 5218 keywords: [] 5219 overview: 5220 <<: *overview 5221 data_collection: 5222 metrics_description: | 5223 Monitor storage enclosure metrics for efficient storage device management and performance. 5224 method_description: | 5225 Metrics are gathered by periodically sending HTTP requests to [jbod - Generic storage enclosure tool](https://github.com/Gandi/jbod-rs). 5226 setup: 5227 <<: *setup 5228 prerequisites: 5229 list: 5230 - title: Install Exporter 5231 description: | 5232 Install [jbod - Generic storage enclosure tool](https://github.com/Gandi/jbod-rs) by following the instructions mentioned in the exporter README. 5233 - <<: *module 5234 meta: 5235 <<: *meta 5236 id: collector-go.d.plugin-prometheus-jetbrains_fls 5237 most_popular: false 5238 community: true 5239 monitored_instance: 5240 name: JetBrains Floating License Server 5241 link: https://github.com/mkreu/jetbrains-fls-exporter 5242 icon_filename: jetbrains.png 5243 categories: 5244 - data-collection.generic-data-collection 5245 keywords: [] 5246 overview: 5247 <<: *overview 5248 data_collection: 5249 metrics_description: | 5250 Monitor JetBrains floating license server metrics for efficient software licensing management. 5251 method_description: | 5252 Metrics are gathered by periodically sending HTTP requests to [JetBrains Floating License Server Export](https://github.com/mkreu/jetbrains-fls-exporter). 5253 setup: 5254 <<: *setup 5255 prerequisites: 5256 list: 5257 - title: Install Exporter 5258 description: | 5259 Install [JetBrains Floating License Server Export](https://github.com/mkreu/jetbrains-fls-exporter) by following the instructions mentioned in the exporter README. 5260 - <<: *module 5261 meta: 5262 <<: *meta 5263 id: collector-go.d.plugin-prometheus-journald 5264 most_popular: false 5265 community: true 5266 monitored_instance: 5267 name: journald 5268 link: https://github.com/dead-claudia/journald-exporter 5269 icon_filename: linux.png 5270 categories: 5271 - data-collection.logs-servers 5272 keywords: [] 5273 overview: 5274 <<: *overview 5275 data_collection: 5276 metrics_description: | 5277 Keep an eye on systemd-journald metrics for efficient log management and analysis. 5278 method_description: | 5279 Metrics are gathered by periodically sending HTTP requests to [journald-exporter](https://github.com/dead-claudia/journald-exporter). 5280 setup: 5281 <<: *setup 5282 prerequisites: 5283 list: 5284 - title: Install Exporter 5285 description: | 5286 Install [journald-exporter](https://github.com/dead-claudia/journald-exporter) by following the instructions mentioned in the exporter README. 5287 - <<: *module 5288 meta: 5289 <<: *meta 5290 id: collector-go.d.plugin-prometheus-kafka_connect 5291 most_popular: false 5292 community: true 5293 monitored_instance: 5294 name: Kafka Connect 5295 link: https://github.com/findelabs/kafka-connect-exporter-rs 5296 icon_filename: kafka.svg 5297 categories: 5298 - data-collection.message-brokers 5299 keywords: 5300 - big data 5301 - stream processing 5302 - message broker 5303 overview: 5304 <<: *overview 5305 data_collection: 5306 metrics_description: | 5307 Keep tabs on Kafka Connect metrics for efficient data streaming and integration. 5308 method_description: | 5309 Metrics are gathered by periodically sending HTTP requests to [Kafka Connect exporter](https://github.com/findelabs/kafka-connect-exporter-rs). 5310 setup: 5311 <<: *setup 5312 prerequisites: 5313 list: 5314 - title: Install Exporter 5315 description: | 5316 Install [Kafka Connect exporter](https://github.com/findelabs/kafka-connect-exporter-rs) by following the instructions mentioned in the exporter README. 5317 - <<: *module 5318 meta: 5319 <<: *meta 5320 id: collector-go.d.plugin-prometheus-kannel 5321 most_popular: false 5322 community: true 5323 monitored_instance: 5324 name: Kannel 5325 link: https://github.com/apostvav/kannel_exporter 5326 icon_filename: kannel.png 5327 categories: 5328 - data-collection.telephony-servers 5329 keywords: [] 5330 overview: 5331 <<: *overview 5332 data_collection: 5333 metrics_description: | 5334 Keep tabs on Kannel SMS gateway and WAP gateway metrics for efficient mobile communication and performance. 5335 method_description: | 5336 Metrics are gathered by periodically sending HTTP requests to [Kannel Exporter](https://github.com/apostvav/kannel_exporter). 5337 setup: 5338 <<: *setup 5339 prerequisites: 5340 list: 5341 - title: Install Exporter 5342 description: | 5343 Install [Kannel Exporter](https://github.com/apostvav/kannel_exporter) by following the instructions mentioned in the exporter README. 5344 - <<: *module 5345 meta: 5346 <<: *meta 5347 id: collector-go.d.plugin-prometheus-keepalived 5348 most_popular: false 5349 community: true 5350 monitored_instance: 5351 name: Keepalived 5352 link: https://github.com/gen2brain/keepalived_exporter 5353 icon_filename: keepalived.png 5354 categories: 5355 - data-collection.networking-stack-and-network-interfaces 5356 keywords: [] 5357 overview: 5358 <<: *overview 5359 data_collection: 5360 metrics_description: | 5361 Track Keepalived metrics for efficient high-availability and load balancing management. 5362 method_description: | 5363 Metrics are gathered by periodically sending HTTP requests to [Keepalived Exporter](https://github.com/gen2brain/keepalived_exporter). 5364 setup: 5365 <<: *setup 5366 prerequisites: 5367 list: 5368 - title: Install Exporter 5369 description: | 5370 Install [Keepalived Exporter](https://github.com/gen2brain/keepalived_exporter) by following the instructions mentioned in the exporter README. 5371 - <<: *module 5372 meta: 5373 <<: *meta 5374 id: collector-go.d.plugin-prometheus-korral 5375 most_popular: false 5376 community: true 5377 monitored_instance: 5378 name: Kubernetes Cluster Cloud Cost 5379 link: https://github.com/agilestacks/korral 5380 icon_filename: kubernetes.svg 5381 categories: 5382 - data-collection.kubernetes 5383 keywords: 5384 - cloud services 5385 - cloud computing 5386 - scalability 5387 overview: 5388 <<: *overview 5389 data_collection: 5390 metrics_description: | 5391 Keep an eye on Kubernetes cloud cost metrics for efficient cloud resource management and budgeting. 5392 method_description: | 5393 Metrics are gathered by periodically sending HTTP requests to [Kubernetes Cloud Cost Exporter](https://github.com/agilestacks/korral). 5394 setup: 5395 <<: *setup 5396 prerequisites: 5397 list: 5398 - title: Install Exporter 5399 description: | 5400 Install [Kubernetes Cloud Cost Exporter](https://github.com/agilestacks/korral) by following the instructions mentioned in the exporter README. 5401 - <<: *module 5402 meta: 5403 <<: *meta 5404 id: collector-go.d.plugin-prometheus-lagerist 5405 most_popular: false 5406 community: true 5407 monitored_instance: 5408 name: Lagerist Disk latency 5409 link: https://github.com/Svedrin/lagerist 5410 icon_filename: linux.png 5411 categories: 5412 - data-collection.storage-mount-points-and-filesystems 5413 keywords: [] 5414 overview: 5415 <<: *overview 5416 data_collection: 5417 metrics_description: | 5418 Track disk latency metrics for efficient storage performance and diagnostics. 5419 method_description: | 5420 Metrics are gathered by periodically sending HTTP requests to [Lagerist Disk latency exporter](https://github.com/Svedrin/lagerist). 5421 setup: 5422 <<: *setup 5423 prerequisites: 5424 list: 5425 - title: Install Exporter 5426 description: | 5427 Install [Lagerist Disk latency exporter](https://github.com/Svedrin/lagerist) by following the instructions mentioned in the exporter README. 5428 - <<: *module 5429 meta: 5430 <<: *meta 5431 id: collector-go.d.plugin-prometheus-ldap 5432 most_popular: false 5433 community: true 5434 monitored_instance: 5435 name: LDAP 5436 link: https://github.com/titisan/ldap_exporter 5437 icon_filename: ldap.png 5438 categories: 5439 - data-collection.authentication-and-authorization 5440 keywords: [] 5441 overview: 5442 <<: *overview 5443 data_collection: 5444 metrics_description: | 5445 Keep an eye on Lightweight Directory Access Protocol (LDAP) metrics for efficient directory service management and performance. 5446 method_description: | 5447 Metrics are gathered by periodically sending HTTP requests to [LDAP Exporter](https://github.com/titisan/ldap_exporter). 5448 setup: 5449 <<: *setup 5450 prerequisites: 5451 list: 5452 - title: Install Exporter 5453 description: | 5454 Install [LDAP Exporter](https://github.com/titisan/ldap_exporter) by following the instructions mentioned in the exporter README. 5455 - <<: *module 5456 meta: 5457 <<: *meta 5458 id: collector-go.d.plugin-prometheus-lynis 5459 most_popular: false 5460 community: true 5461 monitored_instance: 5462 name: Lynis audit reports 5463 link: https://github.com/MauveSoftware/lynis_exporter 5464 icon_filename: lynis.png 5465 categories: 5466 - data-collection.security-systems 5467 keywords: [] 5468 overview: 5469 <<: *overview 5470 data_collection: 5471 metrics_description: | 5472 Track Lynis security auditing tool metrics for efficient system security and compliance management. 5473 method_description: | 5474 Metrics are gathered by periodically sending HTTP requests to [lynis_exporter](https://github.com/MauveSoftware/lynis_exporter). 5475 setup: 5476 <<: *setup 5477 prerequisites: 5478 list: 5479 - title: Install Exporter 5480 description: | 5481 Install [lynis_exporter](https://github.com/MauveSoftware/lynis_exporter) by following the instructions mentioned in the exporter README. 5482 - <<: *module 5483 meta: 5484 <<: *meta 5485 id: collector-go.d.plugin-prometheus-machbase 5486 most_popular: false 5487 community: true 5488 monitored_instance: 5489 name: Machbase 5490 link: https://github.com/MACHBASE/prometheus-machbase-exporter 5491 icon_filename: machbase.png 5492 categories: 5493 - data-collection.database-servers 5494 keywords: [] 5495 overview: 5496 <<: *overview 5497 data_collection: 5498 metrics_description: | 5499 Monitor Machbase time-series database metrics for efficient data storage and query performance. 5500 method_description: | 5501 Metrics are gathered by periodically sending HTTP requests to [Machbase Exporter](https://github.com/MACHBASE/prometheus-machbase-exporter). 5502 setup: 5503 <<: *setup 5504 prerequisites: 5505 list: 5506 - title: Install Exporter 5507 description: | 5508 Install [Machbase Exporter](https://github.com/MACHBASE/prometheus-machbase-exporter) by following the instructions mentioned in the exporter README. 5509 - <<: *module 5510 meta: 5511 <<: *meta 5512 id: collector-go.d.plugin-prometheus-maildir 5513 most_popular: false 5514 community: true 5515 monitored_instance: 5516 name: Maildir 5517 link: https://github.com/cherti/mailexporter 5518 icon_filename: mailserver.svg 5519 categories: 5520 - data-collection.mail-servers 5521 keywords: [] 5522 overview: 5523 <<: *overview 5524 data_collection: 5525 metrics_description: | 5526 Track mail server metrics for optimized email management and performance. 5527 method_description: | 5528 Metrics are gathered by periodically sending HTTP requests to [mailexporter](https://github.com/cherti/mailexporter). 5529 setup: 5530 <<: *setup 5531 prerequisites: 5532 list: 5533 - title: Install Exporter 5534 description: | 5535 Install [mailexporter](https://github.com/cherti/mailexporter) by following the instructions mentioned in the exporter README. 5536 - <<: *module 5537 meta: 5538 <<: *meta 5539 id: collector-go.d.plugin-prometheus-meilisearch 5540 most_popular: false 5541 community: true 5542 monitored_instance: 5543 name: Meilisearch 5544 link: https://github.com/scottaglia/meilisearch_exporter 5545 icon_filename: meilisearch.svg 5546 categories: 5547 - data-collection.search-engines 5548 keywords: [] 5549 overview: 5550 <<: *overview 5551 data_collection: 5552 metrics_description: | 5553 Track Meilisearch search engine metrics for efficient search performance and management. 5554 method_description: | 5555 Metrics are gathered by periodically sending HTTP requests to [Meilisearch Exporter](https://github.com/scottaglia/meilisearch_exporter). 5556 setup: 5557 <<: *setup 5558 prerequisites: 5559 list: 5560 - title: Install Exporter 5561 description: | 5562 Install [Meilisearch Exporter](https://github.com/scottaglia/meilisearch_exporter) by following the instructions mentioned in the exporter README. 5563 - <<: *module 5564 meta: 5565 <<: *meta 5566 id: collector-go.d.plugin-prometheus-memcached 5567 most_popular: false 5568 community: true 5569 monitored_instance: 5570 name: Memcached (community) 5571 link: https://github.com/prometheus/memcached_exporter 5572 icon_filename: memcached.svg 5573 categories: 5574 - data-collection.database-servers 5575 keywords: [] 5576 overview: 5577 <<: *overview 5578 data_collection: 5579 metrics_description: | 5580 Monitor Memcached in-memory key-value store metrics for efficient caching performance and management. 5581 method_description: | 5582 Metrics are gathered by periodically sending HTTP requests to [Memcached exporter](https://github.com/prometheus/memcached_exporter). 5583 setup: 5584 <<: *setup 5585 prerequisites: 5586 list: 5587 - title: Install Exporter 5588 description: | 5589 Install [Memcached exporter](https://github.com/prometheus/memcached_exporter) by following the instructions mentioned in the exporter README. 5590 - <<: *module 5591 meta: 5592 id: collector-go.d.plugin-prometheus-meraki 5593 <<: *meta 5594 most_popular: false 5595 community: true 5596 monitored_instance: 5597 name: Meraki dashboard 5598 link: https://github.com/TheHolm/meraki-dashboard-promethus-exporter 5599 icon_filename: meraki.png 5600 categories: 5601 - data-collection.networking-stack-and-network-interfaces 5602 keywords: [] 5603 overview: 5604 <<: *overview 5605 data_collection: 5606 metrics_description: | 5607 Keep tabs on Cisco Meraki cloud-managed networking device metrics for efficient network management and performance. 5608 method_description: | 5609 Metrics are gathered by periodically sending HTTP requests to [Meraki dashboard data exporter using API](https://github.com/TheHolm/meraki-dashboard-promethus-exporter). 5610 setup: 5611 <<: *setup 5612 prerequisites: 5613 list: 5614 - title: Install Exporter 5615 description: | 5616 Install [Meraki dashboard data exporter using API](https://github.com/TheHolm/meraki-dashboard-promethus-exporter) by following the instructions mentioned in the exporter README. 5617 - <<: *module 5618 meta: 5619 <<: *meta 5620 id: collector-go.d.plugin-prometheus-mesos 5621 most_popular: false 5622 community: true 5623 monitored_instance: 5624 name: Mesos 5625 link: http://github.com/mesosphere/mesos_exporter 5626 icon_filename: mesos.svg 5627 categories: 5628 #- data-collection.provisioning-systems 5629 - data-collection.task-queues 5630 keywords: [] 5631 overview: 5632 <<: *overview 5633 data_collection: 5634 metrics_description: | 5635 Monitor Apache Mesos cluster manager metrics for efficient resource management and performance. 5636 method_description: | 5637 Metrics are gathered by periodically sending HTTP requests to [Mesos exporter](http://github.com/mesosphere/mesos_exporter). 5638 setup: 5639 <<: *setup 5640 prerequisites: 5641 list: 5642 - title: Install Exporter 5643 description: | 5644 Install [Mesos exporter](http://github.com/mesosphere/mesos_exporter) by following the instructions mentioned in the exporter README. 5645 - <<: *module 5646 meta: 5647 <<: *meta 5648 id: collector-go.d.plugin-prometheus-xiaomi_mi_flora 5649 most_popular: false 5650 community: true 5651 monitored_instance: 5652 name: Xiaomi Mi Flora 5653 link: https://github.com/xperimental/flowercare-exporter 5654 icon_filename: xiaomi.svg 5655 categories: 5656 - data-collection.iot-devices 5657 keywords: [] 5658 overview: 5659 <<: *overview 5660 data_collection: 5661 metrics_description: | 5662 Keep tabs on MiFlora plant monitor metrics for efficient plant care and growth management. 5663 method_description: | 5664 Metrics are gathered by periodically sending HTTP requests to [MiFlora / Flower Care Exporter](https://github.com/xperimental/flowercare-exporter). 5665 setup: 5666 <<: *setup 5667 prerequisites: 5668 list: 5669 - title: Install Exporter 5670 description: | 5671 Install [MiFlora / Flower Care Exporter](https://github.com/xperimental/flowercare-exporter) by following the instructions mentioned in the exporter README. 5672 - <<: *module 5673 meta: 5674 <<: *meta 5675 id: collector-go.d.plugin-prometheus-modbus_rtu 5676 most_popular: false 5677 community: true 5678 monitored_instance: 5679 name: Modbus protocol 5680 link: https://github.com/dernasherbrezon/modbusrtu_exporter 5681 icon_filename: modbus.svg 5682 categories: 5683 - data-collection.iot-devices 5684 keywords: 5685 - database 5686 - dbms 5687 - data storage 5688 overview: 5689 <<: *overview 5690 data_collection: 5691 metrics_description: | 5692 Track Modbus RTU protocol metrics for efficient industrial automation and control performance. 5693 method_description: | 5694 Metrics are gathered by periodically sending HTTP requests to [modbusrtu_exporter](https://github.com/dernasherbrezon/modbusrtu_exporter). 5695 setup: 5696 <<: *setup 5697 prerequisites: 5698 list: 5699 - title: Install Exporter 5700 description: | 5701 Install [modbusrtu_exporter](https://github.com/dernasherbrezon/modbusrtu_exporter) by following the instructions mentioned in the exporter README. 5702 - <<: *module 5703 meta: 5704 <<: *meta 5705 id: collector-go.d.plugin-prometheus-mogilefs 5706 most_popular: false 5707 community: true 5708 monitored_instance: 5709 name: MogileFS 5710 link: https://github.com/KKBOX/mogilefs-exporter 5711 icon_filename: filesystem.svg 5712 categories: 5713 - data-collection.storage-mount-points-and-filesystems 5714 keywords: [] 5715 overview: 5716 <<: *overview 5717 data_collection: 5718 metrics_description: | 5719 Monitor MogileFS distributed file system metrics for efficient storage management and performance. 5720 method_description: | 5721 Metrics are gathered by periodically sending HTTP requests to [MogileFS Exporter](https://github.com/KKBOX/mogilefs-exporter). 5722 setup: 5723 <<: *setup 5724 prerequisites: 5725 list: 5726 - title: Install Exporter 5727 description: | 5728 Install [MogileFS Exporter](https://github.com/KKBOX/mogilefs-exporter) by following the instructions mentioned in the exporter README. 5729 - <<: *module 5730 meta: 5731 <<: *meta 5732 id: collector-go.d.plugin-prometheus-monnit_mqtt 5733 most_popular: false 5734 community: true 5735 monitored_instance: 5736 name: Monnit Sensors MQTT 5737 link: https://github.com/braxton9460/monnit-mqtt-exporter 5738 icon_filename: monnit.svg 5739 categories: 5740 - data-collection.iot-devices 5741 keywords: [] 5742 overview: 5743 <<: *overview 5744 data_collection: 5745 metrics_description: | 5746 Track Monnit sensor data via MQTT for efficient IoT device monitoring and management. 5747 method_description: | 5748 Metrics are gathered by periodically sending HTTP requests to [Monnit Sensors MQTT Exporter WIP](https://github.com/braxton9460/monnit-mqtt-exporter). 5749 setup: 5750 <<: *setup 5751 prerequisites: 5752 list: 5753 - title: Install Exporter 5754 description: | 5755 Install [Monnit Sensors MQTT Exporter WIP](https://github.com/braxton9460/monnit-mqtt-exporter) by following the instructions mentioned in the exporter README. 5756 - <<: *module 5757 meta: 5758 <<: *meta 5759 id: collector-go.d.plugin-prometheus-mtail 5760 most_popular: false 5761 community: true 5762 monitored_instance: 5763 name: mtail 5764 link: https://github.com/google/mtail 5765 icon_filename: mtail.png 5766 categories: 5767 - data-collection.logs-servers 5768 keywords: [] 5769 overview: 5770 <<: *overview 5771 data_collection: 5772 metrics_description: | 5773 Monitor log data metrics using mtail log data extractor and parser. 5774 method_description: | 5775 Metrics are gathered by periodically sending HTTP requests to [mtail](https://github.com/google/mtail). 5776 setup: 5777 <<: *setup 5778 prerequisites: 5779 list: 5780 - title: Install Exporter 5781 description: | 5782 Install [mtail](https://github.com/google/mtail) by following the instructions mentioned in the exporter README. 5783 - <<: *module 5784 meta: 5785 <<: *meta 5786 id: collector-go.d.plugin-prometheus-naemon 5787 most_popular: false 5788 community: true 5789 monitored_instance: 5790 name: Naemon 5791 link: https://github.com/Griesbacher/Iapetos 5792 icon_filename: naemon.svg 5793 categories: 5794 - data-collection.observability 5795 keywords: [] 5796 overview: 5797 <<: *overview 5798 data_collection: 5799 metrics_description: | 5800 Monitor Naemon or Nagios network monitoring metrics for efficient IT infrastructure management and performance. 5801 method_description: | 5802 Metrics are gathered by periodically sending HTTP requests to [Naemon / Nagios Exporter](https://github.com/Griesbacher/Iapetos). 5803 setup: 5804 <<: *setup 5805 prerequisites: 5806 list: 5807 - title: Install Exporter 5808 description: | 5809 Install [Naemon / Nagios Exporter](https://github.com/Griesbacher/Iapetos) by following the instructions mentioned in the exporter README. 5810 - <<: *module 5811 meta: 5812 <<: *meta 5813 id: collector-go.d.plugin-prometheus-nagios 5814 most_popular: false 5815 community: true 5816 monitored_instance: 5817 name: Nagios 5818 link: https://github.com/wbollock/nagios_exporter 5819 icon_filename: nagios.png 5820 categories: 5821 - data-collection.observability 5822 keywords: [] 5823 overview: 5824 <<: *overview 5825 data_collection: 5826 metrics_description: | 5827 Keep tabs on Nagios network monitoring metrics for efficient 5828 IT infrastructure management and performance. 5829 method_description: | 5830 Metrics are gathered by periodically sending HTTP requests to [Nagios exporter](https://github.com/wbollock/nagios_exporter). 5831 setup: 5832 <<: *setup 5833 prerequisites: 5834 list: 5835 - title: Install Exporter 5836 description: | 5837 Install [Nagios exporter](https://github.com/wbollock/nagios_exporter) by following the instructions mentioned in the exporter README. 5838 - <<: *module 5839 meta: 5840 <<: *meta 5841 id: collector-go.d.plugin-prometheus-nature_remo 5842 most_popular: false 5843 community: true 5844 monitored_instance: 5845 name: Nature Remo E lite devices 5846 link: https://github.com/kenfdev/remo-exporter 5847 icon_filename: nature-remo.png 5848 categories: 5849 - data-collection.iot-devices 5850 keywords: [] 5851 overview: 5852 <<: *overview 5853 data_collection: 5854 metrics_description: | 5855 Monitor Nature Remo E series smart home device metrics for efficient home automation and energy management. 5856 method_description: | 5857 Metrics are gathered by periodically sending HTTP requests to [Nature Remo E series Exporter](https://github.com/kenfdev/remo-exporter). 5858 setup: 5859 <<: *setup 5860 prerequisites: 5861 list: 5862 - title: Install Exporter 5863 description: | 5864 Install [Nature Remo E series Exporter](https://github.com/kenfdev/remo-exporter) by following the instructions mentioned in the exporter README. 5865 - <<: *module 5866 meta: 5867 <<: *meta 5868 id: collector-go.d.plugin-prometheus-netatmo 5869 most_popular: false 5870 community: true 5871 monitored_instance: 5872 name: Netatmo sensors 5873 link: https://github.com/xperimental/netatmo-exporter 5874 icon_filename: netatmo.svg 5875 categories: 5876 - data-collection.iot-devices 5877 keywords: 5878 - network monitoring 5879 - network performance 5880 - traffic analysis 5881 overview: 5882 <<: *overview 5883 data_collection: 5884 metrics_description: | 5885 Keep an eye on Netatmo smart home device metrics for efficient home automation and energy management. 5886 method_description: | 5887 Metrics are gathered by periodically sending HTTP requests to [Netatmo exporter](https://github.com/xperimental/netatmo-exporter). 5888 setup: 5889 <<: *setup 5890 prerequisites: 5891 list: 5892 - title: Install Exporter 5893 description: | 5894 Install [Netatmo exporter](https://github.com/xperimental/netatmo-exporter) by following the instructions mentioned in the exporter README. 5895 - <<: *module 5896 meta: 5897 <<: *meta 5898 id: collector-go.d.plugin-prometheus-netflow 5899 most_popular: false 5900 community: true 5901 monitored_instance: 5902 name: NetFlow 5903 link: https://github.com/paihu/netflow_exporter 5904 icon_filename: netflow.png 5905 categories: 5906 - data-collection.networking-stack-and-network-interfaces 5907 keywords: 5908 - network monitoring 5909 - network performance 5910 - traffic analysis 5911 overview: 5912 <<: *overview 5913 data_collection: 5914 metrics_description: | 5915 Track NetFlow network traffic metrics for efficient network monitoring and performance. 5916 method_description: | 5917 Metrics are gathered by periodically sending HTTP requests to [netflow exporter](https://github.com/paihu/netflow_exporter). 5918 setup: 5919 <<: *setup 5920 prerequisites: 5921 list: 5922 - title: Install Exporter 5923 description: | 5924 Install [netflow exporter](https://github.com/paihu/netflow_exporter) by following the instructions mentioned in the exporter README. 5925 - <<: *module 5926 meta: 5927 <<: *meta 5928 id: collector-go.d.plugin-prometheus-nextcloud 5929 most_popular: false 5930 community: true 5931 monitored_instance: 5932 name: Nextcloud servers 5933 link: https://github.com/xperimental/nextcloud-exporter 5934 icon_filename: nextcloud.png 5935 categories: 5936 - data-collection.cloud-provider-managed 5937 keywords: 5938 - cloud services 5939 - cloud computing 5940 - scalability 5941 overview: 5942 <<: *overview 5943 data_collection: 5944 metrics_description: | 5945 Keep an eye on Nextcloud cloud storage metrics for efficient file hosting and management. 5946 method_description: | 5947 Metrics are gathered by periodically sending HTTP requests to [Nextcloud exporter](https://github.com/xperimental/nextcloud-exporter). 5948 setup: 5949 <<: *setup 5950 prerequisites: 5951 list: 5952 - title: Install Exporter 5953 description: | 5954 Install [Nextcloud exporter](https://github.com/xperimental/nextcloud-exporter) by following the instructions mentioned in the exporter README. 5955 - <<: *module 5956 meta: 5957 <<: *meta 5958 id: collector-go.d.plugin-prometheus-nextdns 5959 most_popular: false 5960 community: true 5961 monitored_instance: 5962 name: NextDNS 5963 link: https://github.com/raylas/nextdns-exporter 5964 icon_filename: nextdns.png 5965 categories: 5966 - data-collection.dns-and-dhcp-servers 5967 keywords: [] 5968 overview: 5969 <<: *overview 5970 data_collection: 5971 metrics_description: | 5972 Track NextDNS DNS resolver and security platform metrics for efficient DNS management and security. 5973 method_description: | 5974 Metrics are gathered by periodically sending HTTP requests to [nextdns-exporter](https://github.com/raylas/nextdns-exporter). 5975 setup: 5976 <<: *setup 5977 prerequisites: 5978 list: 5979 - title: Install Exporter 5980 description: | 5981 Install [nextdns-exporter](https://github.com/raylas/nextdns-exporter) by following the instructions mentioned in the exporter README. 5982 - <<: *module 5983 meta: 5984 <<: *meta 5985 id: collector-go.d.plugin-prometheus-nftables 5986 most_popular: false 5987 community: true 5988 monitored_instance: 5989 name: nftables 5990 link: https://github.com/Sheridan/nftables_exporter 5991 icon_filename: nftables.png 5992 categories: 5993 - data-collection.linux-systems.firewall-metrics 5994 keywords: [] 5995 overview: 5996 <<: *overview 5997 data_collection: 5998 metrics_description: | 5999 Monitor nftables firewall metrics for efficient network security and management. 6000 method_description: | 6001 Metrics are gathered by periodically sending HTTP requests to [nftables_exporter](https://github.com/Sheridan/nftables_exporter). 6002 setup: 6003 <<: *setup 6004 prerequisites: 6005 list: 6006 - title: Install Exporter 6007 description: | 6008 Install [nftables_exporter](https://github.com/Sheridan/nftables_exporter) by following the instructions mentioned in the exporter README. 6009 - <<: *module 6010 meta: 6011 <<: *meta 6012 id: collector-go.d.plugin-prometheus-ibm_aix_njmon 6013 most_popular: false 6014 community: true 6015 monitored_instance: 6016 name: IBM AIX systems Njmon 6017 link: https://github.com/crooks/njmon_exporter 6018 icon_filename: ibm.svg 6019 categories: 6020 - data-collection.apm 6021 keywords: [] 6022 overview: 6023 <<: *overview 6024 data_collection: 6025 metrics_description: | 6026 Keep an eye on NJmon system performance monitoring metrics for efficient IT infrastructure management and performance. 6027 method_description: | 6028 Metrics are gathered by periodically sending HTTP requests to [NJmon](https://github.com/crooks/njmon_exporter). 6029 setup: 6030 <<: *setup 6031 prerequisites: 6032 list: 6033 - title: Install Exporter 6034 description: | 6035 Install [NJmon](https://github.com/crooks/njmon_exporter) by following the instructions mentioned in the exporter README. 6036 - <<: *module 6037 meta: 6038 <<: *meta 6039 id: collector-go.d.plugin-prometheus-nrpe 6040 most_popular: false 6041 community: true 6042 monitored_instance: 6043 name: NRPE daemon 6044 link: https://github.com/canonical/nrpe_exporter 6045 icon_filename: nrpelinux.png 6046 categories: 6047 - data-collection.apm 6048 keywords: [] 6049 overview: 6050 <<: *overview 6051 data_collection: 6052 metrics_description: | 6053 Monitor Nagios Remote Plugin Executor (NRPE) metrics for efficient system and network monitoring. 6054 method_description: | 6055 Metrics are gathered by periodically sending HTTP requests to [NRPE exporter](https://github.com/canonical/nrpe_exporter). 6056 setup: 6057 <<: *setup 6058 prerequisites: 6059 list: 6060 - title: Install Exporter 6061 description: | 6062 Install [NRPE exporter](https://github.com/canonical/nrpe_exporter) by following the instructions mentioned in the exporter README. 6063 - <<: *module 6064 meta: 6065 <<: *meta 6066 id: collector-go.d.plugin-prometheus-mikrotik 6067 most_popular: false 6068 community: true 6069 monitored_instance: 6070 name: MikroTik devices 6071 link: https://github.com/swoga/mikrotik-exporter 6072 icon_filename: mikrotik.png 6073 categories: 6074 - data-collection.networking-stack-and-network-interfaces 6075 keywords: [] 6076 overview: 6077 <<: *overview 6078 data_collection: 6079 metrics_description: | 6080 Keep tabs on MikroTik RouterOS metrics for efficient network device management and performance. 6081 method_description: | 6082 Metrics are gathered by periodically sending HTTP requests to [mikrotik-exporter](https://github.com/swoga/mikrotik-exporter). 6083 setup: 6084 <<: *setup 6085 prerequisites: 6086 list: 6087 - title: Install Exporter 6088 description: | 6089 Install [nshttpd/mikrotik-exporter, swoga/m](https://github.com/swoga/mikrotik-exporter) by following the instructions mentioned in the exporter README. 6090 - <<: *module 6091 meta: 6092 <<: *meta 6093 id: collector-go.d.plugin-prometheus-nsxt 6094 most_popular: false 6095 community: true 6096 monitored_instance: 6097 name: NSX-T 6098 link: https://github.com/jk8s/nsxt_exporter 6099 icon_filename: vmware-nsx.svg 6100 categories: 6101 - data-collection.containers-and-vms 6102 keywords: [] 6103 overview: 6104 <<: *overview 6105 data_collection: 6106 metrics_description: | 6107 Track VMware NSX-T software-defined networking metrics for efficient network virtualization and security management. 6108 method_description: | 6109 Metrics are gathered by periodically sending HTTP requests to [NSX-T Exporter](https://github.com/jk8s/nsxt_exporter). 6110 setup: 6111 <<: *setup 6112 prerequisites: 6113 list: 6114 - title: Install Exporter 6115 description: | 6116 Install [NSX-T Exporter](https://github.com/jk8s/nsxt_exporter) by following the instructions mentioned in the exporter README. 6117 - <<: *module 6118 meta: 6119 id: collector-go.d.plugin-prometheus-nvml 6120 <<: *meta 6121 most_popular: false 6122 community: true 6123 monitored_instance: 6124 name: NVML 6125 link: https://github.com/oko/nvml-exporter-rs 6126 icon_filename: nvidia.svg 6127 categories: 6128 - data-collection.hardware-devices-and-sensors 6129 keywords: [] 6130 overview: 6131 <<: *overview 6132 data_collection: 6133 metrics_description: | 6134 Keep an eye on NVIDIA Management Library (NVML) GPU metrics for efficient GPU performance and management. 6135 method_description: | 6136 Metrics are gathered by periodically sending HTTP requests to [NVML exporter](https://github.com/oko/nvml-exporter-rs). 6137 setup: 6138 <<: *setup 6139 prerequisites: 6140 list: 6141 - title: Install Exporter 6142 description: | 6143 Install [NVML exporter](https://github.com/oko/nvml-exporter-rs) by following the instructions mentioned in the exporter README. 6144 - <<: *module 6145 meta: 6146 <<: *meta 6147 id: collector-go.d.plugin-prometheus-obs_studio 6148 most_popular: false 6149 community: true 6150 monitored_instance: 6151 name: OBS Studio 6152 link: https://github.com/lukegb/obs_studio_exporter 6153 icon_filename: obs-studio.png 6154 categories: 6155 - data-collection.media-streaming-servers 6156 keywords: [] 6157 overview: 6158 <<: *overview 6159 data_collection: 6160 metrics_description: | 6161 Track OBS Studio live streaming and recording software metrics for efficient video production and performance. 6162 method_description: | 6163 Metrics are gathered by periodically sending HTTP requests to [OBS Studio Exporter](https://github.com/lukegb/obs_studio_exporter). 6164 setup: 6165 <<: *setup 6166 prerequisites: 6167 list: 6168 - title: Install Exporter 6169 description: | 6170 Install [OBS Studio Exporter](https://github.com/lukegb/obs_studio_exporter) by following the instructions mentioned in the exporter README. 6171 - <<: *module 6172 meta: 6173 <<: *meta 6174 id: collector-go.d.plugin-prometheus-odbc 6175 most_popular: false 6176 community: true 6177 monitored_instance: 6178 name: ODBC 6179 link: https://github.com/MACHBASE/prometheus-odbc-exporter 6180 icon_filename: odbc.svg 6181 categories: 6182 - data-collection.database-servers 6183 keywords: 6184 - database 6185 - dbms 6186 - data storage 6187 overview: 6188 <<: *overview 6189 data_collection: 6190 metrics_description: | 6191 Keep tabs on Open Database Connectivity (ODBC) metrics for efficient database connection and performance. 6192 method_description: | 6193 Metrics are gathered by periodically sending HTTP requests to [ODBC Exporter](https://github.com/MACHBASE/prometheus-odbc-exporter). 6194 setup: 6195 <<: *setup 6196 prerequisites: 6197 list: 6198 - title: Install Exporter 6199 description: | 6200 Install [ODBC Exporter](https://github.com/MACHBASE/prometheus-odbc-exporter) by following the instructions mentioned in the exporter README. 6201 - <<: *module 6202 meta: 6203 <<: *meta 6204 id: collector-go.d.plugin-prometheus-openhab 6205 most_popular: false 6206 community: true 6207 monitored_instance: 6208 name: OpenHAB 6209 link: https://github.com/pdreker/openhab_exporter 6210 icon_filename: openhab.svg 6211 categories: 6212 - data-collection.iot-devices 6213 keywords: [] 6214 overview: 6215 <<: *overview 6216 data_collection: 6217 metrics_description: | 6218 Track openHAB smart home automation system metrics for efficient home automation and energy management. 6219 method_description: | 6220 Metrics are gathered by periodically sending HTTP requests to [OpenHAB exporter](https://github.com/pdreker/openhab_exporter). 6221 setup: 6222 <<: *setup 6223 prerequisites: 6224 list: 6225 - title: Install Exporter 6226 description: | 6227 Install [OpenHAB exporter](https://github.com/pdreker/openhab_exporter) by following the instructions mentioned in the exporter README. 6228 6229 6230 - <<: *module 6231 meta: 6232 <<: *meta 6233 id: collector-go.d.plugin-prometheus-openrc 6234 most_popular: false 6235 community: true 6236 monitored_instance: 6237 name: OpenRC 6238 link: https://git.sr.ht/~tomleb/openrc-exporter 6239 icon_filename: linux.png 6240 categories: 6241 - data-collection.linux-systems 6242 keywords: [] 6243 overview: 6244 <<: *overview 6245 data_collection: 6246 metrics_description: | 6247 Keep tabs on OpenRC init system metrics for efficient system startup and service management. 6248 method_description: | 6249 Metrics are gathered by periodically sending HTTP requests to [openrc-exporter](https://git.sr.ht/~tomleb/openrc-exporter). 6250 setup: 6251 <<: *setup 6252 prerequisites: 6253 list: 6254 - title: Install Exporter 6255 description: | 6256 Install [openrc-exporter](https://git.sr.ht/~tomleb/openrc-exporter) by following the instructions mentioned in the exporter README. 6257 6258 - <<: *module 6259 meta: 6260 <<: *meta 6261 id: collector-go.d.plugin-prometheus-openrct2 6262 most_popular: false 6263 community: true 6264 monitored_instance: 6265 name: OpenRCT2 6266 link: https://github.com/terinjokes/openrct2-prometheus-exporter 6267 icon_filename: openRCT2.png 6268 categories: 6269 - data-collection.gaming 6270 keywords: [] 6271 overview: 6272 <<: *overview 6273 data_collection: 6274 metrics_description: | 6275 Track OpenRCT2 game metrics for efficient game server management and performance. 6276 method_description: | 6277 Metrics are gathered by periodically sending HTTP requests to [OpenRCT2 Prometheus Exporter](https://github.com/terinjokes/openrct2-prometheus-exporter). 6278 setup: 6279 <<: *setup 6280 prerequisites: 6281 list: 6282 - title: Install Exporter 6283 description: | 6284 Install [OpenRCT2 Prometheus Exporter](https://github.com/terinjokes/openrct2-prometheus-exporter) by following the instructions mentioned in the exporter README. 6285 - <<: *module 6286 meta: 6287 <<: *meta 6288 id: collector-go.d.plugin-prometheus-openroadm 6289 most_popular: false 6290 community: true 6291 monitored_instance: 6292 name: OpenROADM devices 6293 link: https://github.com/utdal/openroadm_exporter 6294 icon_filename: openroadm.png 6295 categories: 6296 - data-collection.networking-stack-and-network-interfaces 6297 keywords: 6298 - network monitoring 6299 - network performance 6300 - traffic analysis 6301 overview: 6302 <<: *overview 6303 data_collection: 6304 metrics_description: | 6305 Monitor OpenROADM optical transport network metrics using the NETCONF protocol for efficient network management and performance. 6306 method_description: | 6307 Metrics are gathered by periodically sending HTTP requests to [OpenROADM NETCONF Exporter WIP](https://github.com/utdal/openroadm_exporter). 6308 setup: 6309 <<: *setup 6310 prerequisites: 6311 list: 6312 - title: Install Exporter 6313 description: | 6314 Install [OpenROADM NETCONF Exporter WIP](https://github.com/utdal/openroadm_exporter) by following the instructions mentioned in the exporter README. 6315 - <<: *module 6316 meta: 6317 <<: *meta 6318 id: collector-go.d.plugin-prometheus-openweathermap 6319 most_popular: false 6320 community: true 6321 monitored_instance: 6322 name: OpenWeatherMap 6323 link: https://github.com/Tenzer/openweathermap-exporter 6324 icon_filename: openweather.png 6325 categories: 6326 - data-collection.generic-data-collection 6327 keywords: [] 6328 overview: 6329 <<: *overview 6330 data_collection: 6331 metrics_description: | 6332 Track OpenWeatherMap weather data and air pollution metrics for efficient environmental monitoring and analysis. 6333 method_description: | 6334 Metrics are gathered by periodically sending HTTP requests to [OpenWeatherMap Exporter](https://github.com/Tenzer/openweathermap-exporter). 6335 setup: 6336 <<: *setup 6337 prerequisites: 6338 list: 6339 - title: Install Exporter 6340 description: | 6341 Install [OpenWeatherMap Exporter](https://github.com/Tenzer/openweathermap-exporter) by following the instructions mentioned in the exporter README. 6342 - <<: *module 6343 meta: 6344 <<: *meta 6345 id: collector-go.d.plugin-prometheus-oracledb 6346 most_popular: false 6347 community: true 6348 monitored_instance: 6349 name: Oracle DB (community) 6350 link: https://github.com/iamseth/oracledb_exporter 6351 icon_filename: oracle.svg 6352 categories: 6353 - data-collection.database-servers 6354 keywords: 6355 - oracle 6356 - database 6357 - dbms 6358 - data storage 6359 overview: 6360 <<: *overview 6361 data_collection: 6362 metrics_description: | 6363 Track Oracle Database metrics for efficient database management and performance. 6364 method_description: | 6365 Metrics are gathered by periodically sending HTTP requests to [Oracle DB Exporter](https://github.com/iamseth/oracledb_exporter). 6366 setup: 6367 <<: *setup 6368 prerequisites: 6369 list: 6370 - title: Install Exporter 6371 description: | 6372 Install [Oracle DB Exporter](https://github.com/iamseth/oracledb_exporter) by following the instructions mentioned in the exporter README. 6373 - <<: *module 6374 meta: 6375 <<: *meta 6376 id: collector-go.d.plugin-prometheus-otrs 6377 most_popular: false 6378 community: true 6379 monitored_instance: 6380 name: OTRS 6381 link: https://github.com/JulianDroste/otrs_exporter 6382 icon_filename: otrs.png 6383 categories: 6384 - data-collection.notifications 6385 keywords: [] 6386 overview: 6387 <<: *overview 6388 data_collection: 6389 metrics_description: | 6390 Monitor OTRS (Open-Source Ticket Request System) metrics for efficient helpdesk management and performance. 6391 method_description: | 6392 Metrics are gathered by periodically sending HTTP requests to [OTRS Exporter](https://github.com/JulianDroste/otrs_exporter). 6393 setup: 6394 <<: *setup 6395 prerequisites: 6396 list: 6397 - title: Install Exporter 6398 description: | 6399 Install [OTRS Exporter](https://github.com/JulianDroste/otrs_exporter) by following the instructions mentioned in the exporter README. 6400 - <<: *module 6401 meta: 6402 <<: *meta 6403 id: collector-go.d.plugin-prometheus-dutch_electricity_smart_meter 6404 most_popular: false 6405 community: true 6406 monitored_instance: 6407 name: Dutch Electricity Smart Meter 6408 link: https://github.com/TobiasDeBruijn/prometheus-p1-exporter 6409 icon_filename: dutch-electricity.png 6410 categories: 6411 - data-collection.iot-devices 6412 keywords: [] 6413 overview: 6414 <<: *overview 6415 data_collection: 6416 metrics_description: | 6417 Keep tabs on Dutch smart meter P1 port metrics for efficient energy management and monitoring. 6418 method_description: | 6419 Metrics are gathered by periodically sending HTTP requests to [P1Exporter - Dutch Electricity Smart Meter Exporter](https://github.com/TobiasDeBruijn/prometheus-p1-exporter). 6420 setup: 6421 <<: *setup 6422 prerequisites: 6423 list: 6424 - title: Install Exporter 6425 description: | 6426 Install [P1Exporter - Dutch Electricity Smart Meter Exporter](https://github.com/TobiasDeBruijn/prometheus-p1-exporter) by following the instructions mentioned in the exporter README. 6427 6428 - <<: *module 6429 meta: 6430 <<: *meta 6431 id: collector-go.d.plugin-prometheus-patroni 6432 most_popular: false 6433 community: true 6434 monitored_instance: 6435 name: Patroni 6436 link: https://github.com/gopaytech/patroni_exporter 6437 icon_filename: patroni.png 6438 categories: 6439 - data-collection.database-servers 6440 keywords: [] 6441 overview: 6442 <<: *overview 6443 data_collection: 6444 metrics_description: | 6445 Keep tabs on Patroni PostgreSQL high-availability metrics for efficient database management and performance. 6446 method_description: | 6447 Metrics are gathered by periodically sending HTTP requests to [Patroni Exporter](https://github.com/gopaytech/patroni_exporter). 6448 setup: 6449 <<: *setup 6450 prerequisites: 6451 list: 6452 - title: Install Exporter 6453 description: | 6454 Install [Patroni Exporter](https://github.com/gopaytech/patroni_exporter) by following the instructions mentioned in the exporter README. 6455 - <<: *module 6456 meta: 6457 <<: *meta 6458 id: collector-go.d.plugin-prometheus-pws 6459 most_popular: false 6460 community: true 6461 monitored_instance: 6462 name: Personal Weather Station 6463 link: https://github.com/JohnOrthoefer/pws-exporter 6464 icon_filename: wunderground.png 6465 categories: 6466 - data-collection.iot-devices 6467 keywords: [] 6468 overview: 6469 <<: *overview 6470 data_collection: 6471 metrics_description: | 6472 Track personal weather station metrics for efficient weather monitoring and management. 6473 method_description: | 6474 Metrics are gathered by periodically sending HTTP requests to [Personal Weather Station Exporter](https://github.com/JohnOrthoefer/pws-exporter). 6475 setup: 6476 <<: *setup 6477 prerequisites: 6478 list: 6479 - title: Install Exporter 6480 description: | 6481 Install [Personal Weather Station Exporter](https://github.com/JohnOrthoefer/pws-exporter) by following the instructions mentioned in the exporter README. 6482 - <<: *module 6483 meta: 6484 <<: *meta 6485 id: collector-go.d.plugin-prometheus-pgbackrest 6486 most_popular: false 6487 community: true 6488 monitored_instance: 6489 name: pgBackRest 6490 link: https://github.com/woblerr/pgbackrest_exporter 6491 icon_filename: pgbackrest.png 6492 categories: 6493 - data-collection.database-servers 6494 keywords: [] 6495 overview: 6496 <<: *overview 6497 data_collection: 6498 metrics_description: | 6499 Monitor pgBackRest PostgreSQL backup metrics for efficient database backup and management. 6500 method_description: | 6501 Metrics are gathered by periodically sending HTTP requests to [pgBackRest Exporter](https://github.com/woblerr/pgbackrest_exporter). 6502 setup: 6503 <<: *setup 6504 prerequisites: 6505 list: 6506 - title: Install Exporter 6507 description: | 6508 Install [pgBackRest Exporter](https://github.com/woblerr/pgbackrest_exporter) by following the instructions mentioned in the exporter README. 6509 - <<: *module 6510 meta: 6511 <<: *meta 6512 id: collector-go.d.plugin-prometheus-pgpool2 6513 most_popular: false 6514 community: true 6515 monitored_instance: 6516 name: Pgpool-II 6517 link: https://github.com/pgpool/pgpool2_exporter 6518 icon_filename: pgpool2.png 6519 categories: 6520 - data-collection.database-servers 6521 keywords: [] 6522 overview: 6523 <<: *overview 6524 data_collection: 6525 metrics_description: | 6526 Track Pgpool-II PostgreSQL middleware metrics for efficient database connection management and performance. 6527 method_description: | 6528 Metrics are gathered by periodically sending HTTP requests to [Pgpool-II Exporter](https://github.com/pgpool/pgpool2_exporter). 6529 setup: 6530 <<: *setup 6531 prerequisites: 6532 list: 6533 - title: Install Exporter 6534 description: | 6535 Install [Pgpool-II Exporter](https://github.com/pgpool/pgpool2_exporter) by following the instructions mentioned in the exporter README. 6536 - <<: *module 6537 meta: 6538 <<: *meta 6539 id: collector-go.d.plugin-prometheus-pimoroni_enviro_plus 6540 most_popular: false 6541 community: true 6542 monitored_instance: 6543 name: Pimoroni Enviro+ 6544 link: https://github.com/terradolor/prometheus-enviro-exporter 6545 icon_filename: pimorino.png 6546 categories: 6547 - data-collection.iot-devices 6548 keywords: [] 6549 overview: 6550 <<: *overview 6551 data_collection: 6552 metrics_description: | 6553 Track Pimoroni Enviro+ air quality and environmental metrics for efficient environmental monitoring and analysis. 6554 method_description: | 6555 Metrics are gathered by periodically sending HTTP requests to [Pimoroni Enviro+ Exporter](https://github.com/terradolor/prometheus-enviro-exporter). 6556 setup: 6557 <<: *setup 6558 prerequisites: 6559 list: 6560 - title: Install Exporter 6561 description: | 6562 Install [Pimoroni Enviro+ Exporter](https://github.com/terradolor/prometheus-enviro-exporter) by following the instructions mentioned in the exporter README. 6563 - <<: *module 6564 meta: 6565 <<: *meta 6566 id: collector-go.d.plugin-prometheus-pingdom 6567 most_popular: false 6568 community: true 6569 monitored_instance: 6570 name: Pingdom 6571 link: https://github.com/veepee-oss/pingdom_exporter 6572 icon_filename: solarwinds.svg 6573 categories: 6574 - data-collection.synthetic-checks 6575 keywords: [] 6576 overview: 6577 <<: *overview 6578 data_collection: 6579 metrics_description: | 6580 Monitor Pingdom website monitoring service metrics for efficient website performance management and diagnostics. 6581 method_description: | 6582 Metrics are gathered by periodically sending HTTP requests to [Pingdom Exporter](https://github.com/veepee-oss/pingdom_exporter). 6583 setup: 6584 <<: *setup 6585 prerequisites: 6586 list: 6587 - title: Install Exporter 6588 description: | 6589 Install [Pingdom Exporter](https://github.com/veepee-oss/pingdom_exporter) by following the instructions mentioned in the exporter README. 6590 - <<: *module 6591 meta: 6592 <<: *meta 6593 id: collector-go.d.plugin-prometheus-dell_powermax 6594 most_popular: false 6595 community: true 6596 monitored_instance: 6597 name: Dell PowerMax 6598 link: https://github.com/kckecheng/powermax_exporter 6599 icon_filename: powermax.png 6600 categories: 6601 - data-collection.storage-mount-points-and-filesystems 6602 keywords: [] 6603 overview: 6604 <<: *overview 6605 data_collection: 6606 metrics_description: | 6607 Monitor Dell EMC PowerMax storage array metrics for efficient storage management and performance. 6608 method_description: | 6609 Metrics are gathered by periodically sending HTTP requests to [PowerMax Exporter](https://github.com/kckecheng/powermax_exporter). 6610 setup: 6611 <<: *setup 6612 prerequisites: 6613 list: 6614 - title: Install Exporter 6615 description: | 6616 Install [PowerMax Exporter](https://github.com/kckecheng/powermax_exporter) by following the instructions mentioned in the exporter README. 6617 - <<: *module 6618 meta: 6619 <<: *meta 6620 id: collector-go.d.plugin-prometheus-powerpal 6621 most_popular: false 6622 community: true 6623 monitored_instance: 6624 name: Powerpal devices 6625 link: https://github.com/aashley/powerpal_exporter 6626 icon_filename: powerpal.png 6627 categories: 6628 - data-collection.iot-devices 6629 keywords: [] 6630 overview: 6631 <<: *overview 6632 data_collection: 6633 metrics_description: | 6634 Keep an eye on Powerpal smart meter metrics for efficient energy management and monitoring. 6635 method_description: | 6636 Metrics are gathered by periodically sending HTTP requests to [Powerpal Exporter](https://github.com/aashley/powerpal_exporter). 6637 setup: 6638 <<: *setup 6639 prerequisites: 6640 list: 6641 - title: Install Exporter 6642 description: | 6643 Install [Powerpal Exporter](https://github.com/aashley/powerpal_exporter) by following the instructions mentioned in the exporter README. 6644 - <<: *module 6645 meta: 6646 <<: *meta 6647 id: collector-go.d.plugin-prometheus-proftpd 6648 most_popular: false 6649 community: true 6650 monitored_instance: 6651 name: ProFTPD 6652 link: https://github.com/transnano/proftpd_exporter 6653 icon_filename: proftpd.png 6654 categories: 6655 - data-collection.ftp-servers 6656 keywords: [] 6657 overview: 6658 <<: *overview 6659 data_collection: 6660 metrics_description: | 6661 Monitor ProFTPD FTP server metrics for efficient file transfer and server performance. 6662 method_description: | 6663 Metrics are gathered by periodically sending HTTP requests to [ProFTPD Exporter](https://github.com/transnano/proftpd_exporter). 6664 setup: 6665 <<: *setup 6666 prerequisites: 6667 list: 6668 - title: Install Exporter 6669 description: | 6670 Install [ProFTPD Exporter](https://github.com/transnano/proftpd_exporter) by following the instructions mentioned in the exporter README. 6671 - <<: *module 6672 meta: 6673 <<: *meta 6674 id: collector-go.d.plugin-prometheus-eaton_ups 6675 most_popular: false 6676 community: true 6677 monitored_instance: 6678 name: Eaton UPS 6679 link: https://github.com/psyinfra/prometheus-eaton-ups-exporter 6680 icon_filename: eaton.svg 6681 categories: 6682 - data-collection.ups 6683 keywords: [] 6684 overview: 6685 <<: *overview 6686 data_collection: 6687 metrics_description: | 6688 Monitor Eaton uninterruptible power supply (UPS) metrics for efficient power management and monitoring. 6689 method_description: | 6690 Metrics are gathered by periodically sending HTTP requests to [Prometheus Eaton UPS Exporter](https://github.com/psyinfra/prometheus-eaton-ups-exporter). 6691 setup: 6692 <<: *setup 6693 prerequisites: 6694 list: 6695 - title: Install Exporter 6696 description: | 6697 Install [Prometheus Eaton UPS Exporter](https://github.com/psyinfra/prometheus-eaton-ups-exporter) by following the instructions mentioned in the exporter README. 6698 - <<: *module 6699 meta: 6700 <<: *meta 6701 id: collector-go.d.plugin-prometheus-redis_queue 6702 most_popular: false 6703 community: true 6704 monitored_instance: 6705 name: Redis Queue 6706 link: https://github.com/mdawar/rq-exporter 6707 icon_filename: rq.png 6708 categories: 6709 - data-collection.message-brokers 6710 keywords: [] 6711 overview: 6712 <<: *overview 6713 data_collection: 6714 metrics_description: | 6715 Monitor Python RQ (Redis Queue) job queue metrics for efficient task management and performance. 6716 method_description: | 6717 Metrics are gathered by periodically sending HTTP requests to [Python RQ Exporter](https://github.com/mdawar/rq-exporter). 6718 setup: 6719 <<: *setup 6720 prerequisites: 6721 list: 6722 - title: Install Exporter 6723 description: | 6724 Install [Python RQ Exporter](https://github.com/mdawar/rq-exporter) by following the instructions mentioned in the exporter README. 6725 - <<: *module 6726 meta: 6727 <<: *meta 6728 id: collector-go.d.plugin-prometheus-radio_thermostat 6729 most_popular: false 6730 community: true 6731 monitored_instance: 6732 name: Radio Thermostat 6733 link: https://github.com/andrewlow/radio-thermostat-exporter 6734 icon_filename: radiots.png 6735 categories: 6736 - data-collection.iot-devices 6737 keywords: [] 6738 overview: 6739 <<: *overview 6740 data_collection: 6741 metrics_description: | 6742 Monitor Radio Thermostat smart thermostat metrics for efficient home automation and energy management. 6743 method_description: | 6744 Metrics are gathered by periodically sending HTTP requests to [Radio Thermostat Exporter](https://github.com/andrewlow/radio-thermostat-exporter). 6745 setup: 6746 <<: *setup 6747 prerequisites: 6748 list: 6749 - title: Install Exporter 6750 description: | 6751 Install [Radio Thermostat Exporter](https://github.com/andrewlow/radio-thermostat-exporter) by following the instructions mentioned in the exporter README. 6752 - <<: *module 6753 meta: 6754 <<: *meta 6755 id: collector-go.d.plugin-prometheus-rancher 6756 most_popular: false 6757 community: true 6758 monitored_instance: 6759 name: Rancher 6760 link: https://github.com/infinityworksltd/prometheus-rancher-exporter 6761 icon_filename: rancher.svg 6762 categories: 6763 - data-collection.kubernetes 6764 keywords: [] 6765 overview: 6766 <<: *overview 6767 data_collection: 6768 metrics_description: | 6769 Track Rancher container orchestration platform metrics for efficient container management and performance. 6770 method_description: | 6771 Metrics are gathered by periodically sending HTTP requests to [Rancher Exporter](https://github.com/infinityworksltd/prometheus-rancher-exporter). 6772 setup: 6773 <<: *setup 6774 prerequisites: 6775 list: 6776 - title: Install Exporter 6777 description: | 6778 Install [Rancher Exporter](https://github.com/infinityworksltd/prometheus-rancher-exporter) by following the instructions mentioned in the exporter README. 6779 - <<: *module 6780 meta: 6781 <<: *meta 6782 id: collector-go.d.plugin-prometheus-raritan_pdu 6783 most_popular: false 6784 community: true 6785 monitored_instance: 6786 name: Raritan PDU 6787 link: https://github.com/psyinfra/prometheus-raritan-pdu-exporter 6788 icon_filename: raritan.svg 6789 categories: 6790 - data-collection.hardware-devices-and-sensors 6791 keywords: [] 6792 overview: 6793 <<: *overview 6794 data_collection: 6795 metrics_description: | 6796 Monitor Raritan Power Distribution Unit (PDU) metrics for efficient power management and monitoring. 6797 method_description: | 6798 Metrics are gathered by periodically sending HTTP requests to [Raritan PDU Exporter](https://github.com/psyinfra/prometheus-raritan-pdu-exporter). 6799 setup: 6800 <<: *setup 6801 prerequisites: 6802 list: 6803 - title: Install Exporter 6804 description: | 6805 Install [Raritan PDU Exporter](https://github.com/psyinfra/prometheus-raritan-pdu-exporter) by following the instructions mentioned in the exporter README. 6806 - <<: *module 6807 meta: 6808 <<: *meta 6809 id: collector-go.d.plugin-prometheus-routeros 6810 most_popular: false 6811 community: true 6812 monitored_instance: 6813 name: Mikrotik RouterOS devices 6814 link: https://github.com/welbymcroberts/routeros_exporter 6815 icon_filename: routeros.png 6816 categories: 6817 - data-collection.networking-stack-and-network-interfaces 6818 keywords: [] 6819 overview: 6820 <<: *overview 6821 data_collection: 6822 metrics_description: | 6823 Track MikroTik RouterOS metrics for efficient network device management and performance. 6824 method_description: | 6825 Metrics are gathered by periodically sending HTTP requests to [RouterOS exporter](https://github.com/welbymcroberts/routeros_exporter). 6826 setup: 6827 <<: *setup 6828 prerequisites: 6829 list: 6830 - title: Install Exporter 6831 description: | 6832 Install [RouterOS exporter](https://github.com/welbymcroberts/routeros_exporter) by following the instructions mentioned in the exporter README. 6833 6834 - <<: *module 6835 meta: 6836 <<: *meta 6837 id: collector-go.d.plugin-prometheus-sabnzbd 6838 most_popular: false 6839 community: true 6840 monitored_instance: 6841 name: SABnzbd 6842 link: https://github.com/msroest/sabnzbd_exporter 6843 icon_filename: sabnzbd.png 6844 categories: 6845 - data-collection.media-streaming-servers 6846 keywords: [] 6847 overview: 6848 <<: *overview 6849 data_collection: 6850 metrics_description: | 6851 Monitor SABnzbd Usenet client metrics for efficient file downloads and resource management. 6852 method_description: | 6853 Metrics are gathered by periodically sending HTTP requests to [SABnzbd Exporter](https://github.com/msroest/sabnzbd_exporter). 6854 setup: 6855 <<: *setup 6856 prerequisites: 6857 list: 6858 - title: Install Exporter 6859 description: | 6860 Install [SABnzbd Exporter](https://github.com/msroest/sabnzbd_exporter) by following the instructions mentioned in the exporter README. 6861 - <<: *module 6862 meta: 6863 <<: *meta 6864 id: collector-go.d.plugin-prometheus-salicru_eqx 6865 most_popular: false 6866 community: true 6867 monitored_instance: 6868 name: Salicru EQX inverter 6869 link: https://github.com/alejandroscf/prometheus_salicru_exporter 6870 icon_filename: salicru.png 6871 categories: 6872 - data-collection.iot-devices 6873 keywords: [] 6874 overview: 6875 <<: *overview 6876 data_collection: 6877 metrics_description: | 6878 Keep tabs on Salicru EQX solar inverter metrics for efficient solar energy management and monitoring. 6879 method_description: | 6880 Metrics are gathered by periodically sending HTTP requests to [Salicru EQX inverter](https://github.com/alejandroscf/prometheus_salicru_exporter). 6881 setup: 6882 <<: *setup 6883 prerequisites: 6884 list: 6885 - title: Install Exporter 6886 description: | 6887 Install [Salicru EQX inverter](https://github.com/alejandroscf/prometheus_salicru_exporter) by following the instructions mentioned in the exporter README. 6888 - <<: *module 6889 meta: 6890 <<: *meta 6891 id: collector-go.d.plugin-prometheus-sense_energy 6892 most_popular: false 6893 community: true 6894 monitored_instance: 6895 name: Sense Energy 6896 link: https://github.com/ejsuncy/sense_energy_prometheus_exporter 6897 icon_filename: sense.png 6898 categories: 6899 - data-collection.iot-devices 6900 keywords: [] 6901 overview: 6902 <<: *overview 6903 data_collection: 6904 metrics_description: | 6905 Keep tabs on Sense Energy smart meter metrics for efficient energy management and monitoring. 6906 method_description: | 6907 Metrics are gathered by periodically sending HTTP requests to [Sense Energy exporter](https://github.com/ejsuncy/sense_energy_prometheus_exporter). 6908 setup: 6909 <<: *setup 6910 prerequisites: 6911 list: 6912 - title: Install Exporter 6913 description: | 6914 Install [Sense Energy exporter](https://github.com/ejsuncy/sense_energy_prometheus_exporter) by following the instructions mentioned in the exporter README. 6915 - <<: *module 6916 meta: 6917 <<: *meta 6918 id: collector-go.d.plugin-prometheus-servertech 6919 most_popular: false 6920 community: true 6921 monitored_instance: 6922 name: ServerTech 6923 link: https://github.com/tynany/servertech_exporter 6924 icon_filename: servertech.png 6925 categories: 6926 - data-collection.hardware-devices-and-sensors 6927 keywords: [] 6928 overview: 6929 <<: *overview 6930 data_collection: 6931 metrics_description: | 6932 Keep an eye on Server Technology power distribution unit (PDU) metrics for efficient power management and monitoring. 6933 method_description: | 6934 Metrics are gathered by periodically sending HTTP requests to [ServerTech Exporter](https://github.com/tynany/servertech_exporter). 6935 setup: 6936 <<: *setup 6937 prerequisites: 6938 list: 6939 - title: Install Exporter 6940 description: | 6941 Install [ServerTech Exporter](https://github.com/tynany/servertech_exporter) by following the instructions mentioned in the exporter README. 6942 - <<: *module 6943 meta: 6944 <<: *meta 6945 id: collector-go.d.plugin-prometheus-shelly 6946 most_popular: false 6947 community: true 6948 monitored_instance: 6949 name: Shelly humidity sensor 6950 link: https://github.com/aexel90/shelly_exporter 6951 icon_filename: shelly.jpg 6952 categories: 6953 - data-collection.iot-devices 6954 keywords: [] 6955 overview: 6956 <<: *overview 6957 data_collection: 6958 metrics_description: | 6959 Monitor Shelly smart home device metrics for efficient home automation and energy management. 6960 method_description: | 6961 Metrics are gathered by periodically sending HTTP requests to [Shelly Exporter](https://github.com/aexel90/shelly_exporter). 6962 setup: 6963 <<: *setup 6964 prerequisites: 6965 list: 6966 - title: Install Exporter 6967 description: | 6968 Install [Shelly Exporter](https://github.com/aexel90/shelly_exporter) by following the instructions mentioned in the exporter README. 6969 - <<: *module 6970 meta: 6971 <<: *meta 6972 id: collector-go.d.plugin-prometheus-sia 6973 most_popular: false 6974 community: true 6975 monitored_instance: 6976 name: Sia 6977 link: https://github.com/tbenz9/sia_exporter 6978 icon_filename: sia.png 6979 categories: 6980 - data-collection.blockchain-servers 6981 keywords: [] 6982 overview: 6983 <<: *overview 6984 data_collection: 6985 metrics_description: | 6986 Track Sia decentralized storage platform metrics for efficient storage management and performance. 6987 method_description: | 6988 Metrics are gathered by periodically sending HTTP requests to [Sia Exporter](https://github.com/tbenz9/sia_exporter). 6989 setup: 6990 <<: *setup 6991 prerequisites: 6992 list: 6993 - title: Install Exporter 6994 description: | 6995 Install [Sia Exporter](https://github.com/tbenz9/sia_exporter) by following the instructions mentioned in the exporter README. 6996 - <<: *module 6997 meta: 6998 <<: *meta 6999 id: collector-go.d.plugin-prometheus-s7_plc 7000 most_popular: false 7001 community: true 7002 monitored_instance: 7003 name: Siemens S7 PLC 7004 link: https://github.com/MarcusCalidus/s7-plc-exporter 7005 icon_filename: siemens.svg 7006 categories: 7007 - data-collection.hardware-devices-and-sensors 7008 keywords: [] 7009 overview: 7010 <<: *overview 7011 data_collection: 7012 metrics_description: | 7013 Monitor Siemens S7 Programmable Logic Controller (PLC) metrics for efficient industrial automation and control. 7014 method_description: | 7015 Metrics are gathered by periodically sending HTTP requests to [Siemens S7 PLC exporter](https://github.com/MarcusCalidus/s7-plc-exporter). 7016 setup: 7017 <<: *setup 7018 prerequisites: 7019 list: 7020 - title: Install Exporter 7021 description: | 7022 Install [Siemens S7 PLC exporter](https://github.com/MarcusCalidus/s7-plc-exporter) by following the instructions mentioned in the exporter README. 7023 - <<: *module 7024 meta: 7025 <<: *meta 7026 id: collector-go.d.plugin-prometheus-site24x7 7027 most_popular: false 7028 community: true 7029 monitored_instance: 7030 name: Site 24x7 7031 link: https://github.com/svenstaro/site24x7_exporter 7032 icon_filename: site24x7.svg 7033 categories: 7034 - data-collection.synthetic-checks 7035 keywords: [] 7036 overview: 7037 <<: *overview 7038 data_collection: 7039 metrics_description: | 7040 Monitor Site24x7 website and infrastructure monitoring metrics for efficient performance tracking and management. 7041 method_description: | 7042 Metrics are gathered by periodically sending HTTP requests to [site24x7 Exporter](https://github.com/svenstaro/site24x7_exporter). 7043 setup: 7044 <<: *setup 7045 prerequisites: 7046 list: 7047 - title: Install Exporter 7048 description: | 7049 Install [site24x7 Exporter](https://github.com/svenstaro/site24x7_exporter) by following the instructions mentioned in the exporter README. 7050 - <<: *module 7051 meta: 7052 <<: *meta 7053 id: collector-go.d.plugin-prometheus-sma_inverter 7054 most_popular: false 7055 community: true 7056 monitored_instance: 7057 name: SMA Inverters 7058 link: https://github.com/dr0ps/sma_inverter_exporter 7059 icon_filename: sma.png 7060 categories: 7061 - data-collection.iot-devices 7062 keywords: [] 7063 overview: 7064 <<: *overview 7065 data_collection: 7066 metrics_description: | 7067 Monitor SMA solar inverter metrics for efficient solar energy management and monitoring. 7068 method_description: | 7069 Metrics are gathered by periodically sending HTTP requests to [sma-exporter](https://github.com/dr0ps/sma_inverter_exporter). 7070 setup: 7071 <<: *setup 7072 prerequisites: 7073 list: 7074 - title: Install Exporter 7075 description: | 7076 Install [sma-exporter](https://github.com/dr0ps/sma_inverter_exporter) by following the instructions mentioned in the exporter README. 7077 - <<: *module 7078 meta: 7079 <<: *meta 7080 id: collector-go.d.plugin-prometheus-smartrg808ac 7081 most_popular: false 7082 community: true 7083 monitored_instance: 7084 name: SmartRG 808AC Cable Modem 7085 link: https://github.com/AdamIsrael/smartrg808ac_exporter 7086 icon_filename: smartr.jpeg 7087 categories: 7088 - data-collection.networking-stack-and-network-interfaces 7089 keywords: [] 7090 overview: 7091 <<: *overview 7092 data_collection: 7093 metrics_description: | 7094 Monitor SmartRG SR808ac router metrics for efficient network device management and performance. 7095 method_description: | 7096 Metrics are gathered by periodically sending HTTP requests to [smartrg808ac_exporter](https://github.com/AdamIsrael/smartrg808ac_exporter). 7097 setup: 7098 <<: *setup 7099 prerequisites: 7100 list: 7101 - title: Install Exporter 7102 description: | 7103 Install [smartrg808ac_exporter](https://github.com/AdamIsrael/smartrg808ac_exporter) by following the instructions mentioned in the exporter README. 7104 - <<: *module 7105 meta: 7106 <<: *meta 7107 id: collector-go.d.plugin-prometheus-sml 7108 most_popular: false 7109 community: true 7110 monitored_instance: 7111 name: Smart meters SML 7112 link: https://github.com/mweinelt/sml-exporter 7113 icon_filename: sml.png 7114 categories: 7115 - data-collection.iot-devices 7116 keywords: [] 7117 overview: 7118 <<: *overview 7119 data_collection: 7120 metrics_description: | 7121 Monitor Smart Message Language (SML) metrics for efficient smart metering and energy management. 7122 method_description: | 7123 Metrics are gathered by periodically sending HTTP requests to [SML Exporter](https://github.com/mweinelt/sml-exporter). 7124 setup: 7125 <<: *setup 7126 prerequisites: 7127 list: 7128 - title: Install Exporter 7129 description: | 7130 Install [SML Exporter](https://github.com/mweinelt/sml-exporter) by following the instructions mentioned in the exporter README. 7131 - <<: *module 7132 meta: 7133 <<: *meta 7134 id: collector-go.d.plugin-prometheus-softether 7135 most_popular: false 7136 community: true 7137 monitored_instance: 7138 name: SoftEther VPN Server 7139 link: https://github.com/dalance/softether_exporter 7140 icon_filename: softether.svg 7141 categories: 7142 - data-collection.vpns 7143 keywords: [] 7144 overview: 7145 <<: *overview 7146 data_collection: 7147 metrics_description: | 7148 Monitor SoftEther VPN Server metrics for efficient virtual private network (VPN) management and performance. 7149 method_description: | 7150 Metrics are gathered by periodically sending HTTP requests to [SoftEther Exporter](https://github.com/dalance/softether_exporter). 7151 setup: 7152 <<: *setup 7153 prerequisites: 7154 list: 7155 - title: Install Exporter 7156 description: | 7157 Install [SoftEther Exporter](https://github.com/dalance/softether_exporter) by following the instructions mentioned in the exporter README. 7158 - <<: *module 7159 meta: 7160 <<: *meta 7161 id: collector-go.d.plugin-prometheus-lsx 7162 most_popular: false 7163 community: true 7164 monitored_instance: 7165 name: Solar logging stick 7166 link: https://gitlab.com/bhavin192/lsx-exporter 7167 icon_filename: solar.png 7168 categories: 7169 - data-collection.iot-devices 7170 keywords: [] 7171 overview: 7172 <<: *overview 7173 data_collection: 7174 metrics_description: | 7175 Monitor solar energy metrics using a solar logging stick for efficient solar energy management and monitoring. 7176 method_description: | 7177 Metrics are gathered by periodically sending HTTP requests to [Solar logging stick exporter](https://gitlab.com/bhavin192/lsx-exporter). 7178 setup: 7179 <<: *setup 7180 prerequisites: 7181 list: 7182 - title: Install Exporter 7183 description: | 7184 Install [Solar logging stick exporter](https://gitlab.com/bhavin192/lsx-exporter) by following the instructions mentioned in the exporter README. 7185 - <<: *module 7186 meta: 7187 <<: *meta 7188 id: collector-go.d.plugin-prometheus-solaredge 7189 most_popular: false 7190 community: true 7191 monitored_instance: 7192 name: SolarEdge inverters 7193 link: https://github.com/dave92082/SolarEdge-Exporter 7194 icon_filename: solaredge.png 7195 categories: 7196 - data-collection.iot-devices 7197 keywords: [] 7198 overview: 7199 <<: *overview 7200 data_collection: 7201 metrics_description: | 7202 Track SolarEdge solar inverter metrics for efficient solar energy management and monitoring. 7203 method_description: | 7204 Metrics are gathered by periodically sending HTTP requests to [SolarEdge Exporter](https://github.com/dave92082/SolarEdge-Exporter). 7205 setup: 7206 <<: *setup 7207 prerequisites: 7208 list: 7209 - title: Install Exporter 7210 description: | 7211 Install [SolarEdge Exporter](https://github.com/dave92082/SolarEdge-Exporter) by following the instructions mentioned in the exporter README. 7212 - <<: *module 7213 meta: 7214 <<: *meta 7215 id: collector-go.d.plugin-prometheus-solis 7216 most_popular: false 7217 community: true 7218 monitored_instance: 7219 name: Solis Ginlong 5G inverters 7220 link: https://github.com/candlerb/solis_exporter 7221 icon_filename: solis.jpg 7222 categories: 7223 - data-collection.iot-devices 7224 keywords: [] 7225 overview: 7226 <<: *overview 7227 data_collection: 7228 metrics_description: | 7229 Monitor Solis solar inverter metrics for efficient solar energy management and monitoring. 7230 method_description: | 7231 Metrics are gathered by periodically sending HTTP requests to [Solis Exporter](https://github.com/candlerb/solis_exporter). 7232 setup: 7233 <<: *setup 7234 prerequisites: 7235 list: 7236 - title: Install Exporter 7237 description: | 7238 Install [Solis Exporter](https://github.com/candlerb/solis_exporter) by following the instructions mentioned in the exporter README. 7239 - <<: *module 7240 meta: 7241 <<: *meta 7242 id: collector-go.d.plugin-prometheus-sonic 7243 most_popular: false 7244 community: true 7245 monitored_instance: 7246 name: SONiC NOS 7247 link: https://github.com/kamelnetworks/sonic_exporter 7248 icon_filename: sonic.png 7249 categories: 7250 - data-collection.networking-stack-and-network-interfaces 7251 keywords: [] 7252 overview: 7253 <<: *overview 7254 data_collection: 7255 metrics_description: | 7256 Keep tabs on Software for Open Networking in the Cloud (SONiC) metrics for efficient network switch management and performance. 7257 method_description: | 7258 Metrics are gathered by periodically sending HTTP requests to [SONiC Exporter](https://github.com/kamelnetworks/sonic_exporter). 7259 setup: 7260 <<: *setup 7261 prerequisites: 7262 list: 7263 - title: Install Exporter 7264 description: | 7265 Install [SONiC Exporter](https://github.com/kamelnetworks/sonic_exporter) by following the instructions mentioned in the exporter README. 7266 - <<: *module 7267 meta: 7268 <<: *meta 7269 id: collector-go.d.plugin-prometheus-ibm_spectrum_virtualize 7270 most_popular: false 7271 community: true 7272 monitored_instance: 7273 name: IBM Spectrum Virtualize 7274 link: https://github.com/bluecmd/spectrum_virtualize_exporter 7275 icon_filename: ibm.svg 7276 categories: 7277 - data-collection.storage-mount-points-and-filesystems 7278 keywords: [] 7279 overview: 7280 <<: *overview 7281 data_collection: 7282 metrics_description: | 7283 Monitor IBM Spectrum Virtualize metrics for efficient storage virtualization and performance. 7284 method_description: | 7285 Metrics are gathered by periodically sending HTTP requests to [spectrum_virtualize_exporter](https://github.com/bluecmd/spectrum_virtualize_exporter). 7286 setup: 7287 <<: *setup 7288 prerequisites: 7289 list: 7290 - title: Install Exporter 7291 description: | 7292 Install [spectrum_virtualize_exporter](https://github.com/bluecmd/spectrum_virtualize_exporter) by following the instructions mentioned in the exporter README. 7293 - <<: *module 7294 meta: 7295 <<: *meta 7296 id: collector-go.d.plugin-prometheus-speedify 7297 most_popular: false 7298 community: true 7299 monitored_instance: 7300 name: Speedify CLI 7301 link: https://github.com/willshen/speedify_exporter 7302 icon_filename: speedify.png 7303 categories: 7304 - data-collection.vpns 7305 keywords: [] 7306 overview: 7307 <<: *overview 7308 data_collection: 7309 metrics_description: | 7310 Track Speedify VPN metrics for efficient virtual private network (VPN) management and performance. 7311 method_description: | 7312 Metrics are gathered by periodically sending HTTP requests to [Speedify Exporter](https://github.com/willshen/speedify_exporter). 7313 setup: 7314 <<: *setup 7315 prerequisites: 7316 list: 7317 - title: Install Exporter 7318 description: | 7319 Install [Speedify Exporter](https://github.com/willshen/speedify_exporter) by following the instructions mentioned in the exporter README. 7320 - <<: *module 7321 meta: 7322 <<: *meta 7323 id: collector-go.d.plugin-prometheus-sphinx 7324 most_popular: false 7325 community: true 7326 monitored_instance: 7327 name: Sphinx 7328 link: https://github.com/foxdalas/sphinx_exporter 7329 icon_filename: sphinx.png 7330 categories: 7331 - data-collection.search-engines 7332 keywords: [] 7333 overview: 7334 <<: *overview 7335 data_collection: 7336 metrics_description: | 7337 Monitor Sphinx search engine metrics for efficient search and indexing performance. 7338 method_description: | 7339 Metrics are gathered by periodically sending HTTP requests to [Sphinx Exporter](https://github.com/foxdalas/sphinx_exporter). 7340 setup: 7341 <<: *setup 7342 prerequisites: 7343 list: 7344 - title: Install Exporter 7345 description: | 7346 Install [Sphinx Exporter](https://github.com/foxdalas/sphinx_exporter) by following the instructions mentioned in the exporter README. 7347 - <<: *module 7348 meta: 7349 <<: *meta 7350 id: collector-go.d.plugin-prometheus-sql 7351 most_popular: false 7352 community: true 7353 monitored_instance: 7354 name: SQL Database agnostic 7355 link: https://github.com/free/sql_exporter 7356 icon_filename: sql.svg 7357 categories: 7358 - data-collection.database-servers 7359 keywords: 7360 - database 7361 - relational db 7362 - data querying 7363 overview: 7364 <<: *overview 7365 data_collection: 7366 metrics_description: | 7367 Query SQL databases for efficient database performance monitoring. 7368 method_description: | 7369 Metrics are gathered by periodically sending HTTP requests to [SQL Exporter](https://github.com/free/sql_exporter). 7370 setup: 7371 <<: *setup 7372 prerequisites: 7373 list: 7374 - title: Install Exporter 7375 description: | 7376 Install [SQL Exporter](https://github.com/free/sql_exporter) by following the instructions mentioned in the exporter README. 7377 - <<: *module 7378 meta: 7379 <<: *meta 7380 id: collector-go.d.plugin-prometheus-starwind_vsan 7381 most_popular: false 7382 community: true 7383 monitored_instance: 7384 name: Starwind VSAN VSphere Edition 7385 link: https://github.com/evoicefire/starwind-vsan-exporter 7386 icon_filename: starwind.svg 7387 categories: 7388 - data-collection.storage-mount-points-and-filesystems 7389 keywords: [] 7390 overview: 7391 <<: *overview 7392 data_collection: 7393 metrics_description: | 7394 Keep tabs on StarWind Virtual SAN metrics for efficient storage virtualization and performance. 7395 method_description: | 7396 Metrics are gathered by periodically sending HTTP requests to [Starwind vSAN Exporter](https://github.com/evoicefire/starwind-vsan-exporter). 7397 setup: 7398 <<: *setup 7399 prerequisites: 7400 list: 7401 - title: Install Exporter 7402 description: | 7403 Install [Starwind vSAN Exporter](https://github.com/evoicefire/starwind-vsan-exporter) by following the instructions mentioned in the exporter README. 7404 - <<: *module 7405 meta: 7406 <<: *meta 7407 id: collector-go.d.plugin-prometheus-storidge 7408 most_popular: false 7409 community: true 7410 monitored_instance: 7411 name: Storidge 7412 link: https://github.com/Storidge/cio-user-docs/blob/master/integrations/prometheus.md 7413 icon_filename: storidge.png 7414 categories: 7415 - data-collection.storage-mount-points-and-filesystems 7416 keywords: [] 7417 overview: 7418 <<: *overview 7419 data_collection: 7420 metrics_description: | 7421 Keep an eye on Storidge storage metrics for efficient storage management and performance. 7422 method_description: | 7423 Metrics are gathered by periodically sending HTTP requests to [Storidge exporter](https://github.com/Storidge/cio-user-docs/blob/master/integrations/prometheus.md). 7424 setup: 7425 <<: *setup 7426 prerequisites: 7427 list: 7428 - title: Install Exporter 7429 description: | 7430 Install [Storidge exporter](https://github.com/Storidge/cio-user-docs/blob/master/integrations/prometheus.md) by following the instructions mentioned in the exporter README. 7431 - <<: *module 7432 meta: 7433 <<: *meta 7434 id: collector-go.d.plugin-prometheus-stream_generic 7435 most_popular: false 7436 community: true 7437 monitored_instance: 7438 name: Stream 7439 link: https://github.com/carlpett/stream_exporter 7440 icon_filename: stream.png 7441 categories: 7442 - data-collection.media-streaming-servers 7443 keywords: [] 7444 overview: 7445 <<: *overview 7446 data_collection: 7447 metrics_description: | 7448 Monitor streaming metrics for efficient media streaming and performance. 7449 method_description: | 7450 Metrics are gathered by periodically sending HTTP requests to [Stream exporter](https://github.com/carlpett/stream_exporter). 7451 setup: 7452 <<: *setup 7453 prerequisites: 7454 list: 7455 - title: Install Exporter 7456 description: | 7457 Install [Stream exporter](https://github.com/carlpett/stream_exporter) by following the instructions mentioned in the exporter README. 7458 - <<: *module 7459 meta: 7460 <<: *meta 7461 id: collector-go.d.plugin-prometheus-strongswan 7462 most_popular: false 7463 community: true 7464 monitored_instance: 7465 name: strongSwan 7466 link: https://github.com/jlti-dev/ipsec_exporter 7467 icon_filename: strongswan.svg 7468 categories: 7469 - data-collection.vpns 7470 keywords: [] 7471 overview: 7472 <<: *overview 7473 data_collection: 7474 metrics_description: | 7475 Track strongSwan VPN and IPSec metrics using the vici interface for efficient virtual private network (VPN) management and performance. 7476 method_description: | 7477 Metrics are gathered by periodically sending HTTP requests to [strongSwan/IPSec/vici Exporter](https://github.com/jlti-dev/ipsec_exporter). 7478 setup: 7479 <<: *setup 7480 prerequisites: 7481 list: 7482 - title: Install Exporter 7483 description: | 7484 Install [strongSwan/IPSec/vici Exporter](https://github.com/jlti-dev/ipsec_exporter) by following the instructions mentioned in the exporter README. 7485 - <<: *module 7486 meta: 7487 id: collector-go.d.plugin-prometheus-sunspec 7488 <<: *meta 7489 most_popular: false 7490 community: true 7491 monitored_instance: 7492 name: Sunspec Solar Energy 7493 link: https://github.com/inosion/prometheus-sunspec-exporter 7494 icon_filename: sunspec.png 7495 categories: 7496 - data-collection.iot-devices 7497 keywords: [] 7498 overview: 7499 <<: *overview 7500 data_collection: 7501 metrics_description: | 7502 Monitor SunSpec Alliance solar energy metrics for efficient solar energy management and monitoring. 7503 method_description: | 7504 Metrics are gathered by periodically sending HTTP requests to [Sunspec Solar Energy Exporter](https://github.com/inosion/prometheus-sunspec-exporter). 7505 setup: 7506 <<: *setup 7507 prerequisites: 7508 list: 7509 - title: Install Exporter 7510 description: | 7511 Install [Sunspec Solar Energy Exporter](https://github.com/inosion/prometheus-sunspec-exporter) by following the instructions mentioned in the exporter README. 7512 - <<: *module 7513 meta: 7514 <<: *meta 7515 id: collector-go.d.plugin-prometheus-suricata 7516 most_popular: false 7517 community: true 7518 monitored_instance: 7519 name: Suricata 7520 link: https://github.com/corelight/suricata_exporter 7521 icon_filename: suricata.png 7522 categories: 7523 - data-collection.security-systems 7524 keywords: [] 7525 overview: 7526 <<: *overview 7527 data_collection: 7528 metrics_description: | 7529 Keep an eye on Suricata network intrusion detection and prevention system (IDS/IPS) metrics for efficient network security and performance. 7530 method_description: | 7531 Metrics are gathered by periodically sending HTTP requests to [Suricata Exporter](https://github.com/corelight/suricata_exporter). 7532 setup: 7533 <<: *setup 7534 prerequisites: 7535 list: 7536 - title: Install Exporter 7537 description: | 7538 Install [Suricata Exporter](https://github.com/corelight/suricata_exporter) by following the instructions mentioned in the exporter README. 7539 7540 7541 - <<: *module 7542 meta: 7543 <<: *meta 7544 id: collector-go.d.plugin-prometheus-synology_activebackup 7545 most_popular: false 7546 community: true 7547 monitored_instance: 7548 name: Synology ActiveBackup 7549 link: https://github.com/codemonauts/activebackup-prometheus-exporter 7550 icon_filename: synology.png 7551 categories: 7552 - data-collection.storage-mount-points-and-filesystems 7553 keywords: [] 7554 overview: 7555 <<: *overview 7556 data_collection: 7557 metrics_description: | 7558 Track Synology Active Backup metrics for efficient backup and data protection management. 7559 method_description: | 7560 Metrics are gathered by periodically sending HTTP requests to [Synology ActiveBackup Exporter](https://github.com/codemonauts/activebackup-prometheus-exporter). 7561 setup: 7562 <<: *setup 7563 prerequisites: 7564 list: 7565 - title: Install Exporter 7566 description: | 7567 Install [Synology ActiveBackup Exporter](https://github.com/codemonauts/activebackup-prometheus-exporter) by following the instructions mentioned in the exporter README. 7568 - <<: *module 7569 meta: 7570 id: collector-go.d.plugin-prometheus-sysload 7571 <<: *meta 7572 most_popular: false 7573 community: true 7574 monitored_instance: 7575 name: Sysload 7576 link: https://github.com/egmc/sysload_exporter 7577 icon_filename: sysload.png 7578 categories: 7579 - data-collection.apm 7580 keywords: [] 7581 overview: 7582 <<: *overview 7583 data_collection: 7584 metrics_description: | 7585 Monitor system load metrics for efficient system performance and resource management. 7586 method_description: | 7587 Metrics are gathered by periodically sending HTTP requests to [Sysload Exporter](https://github.com/egmc/sysload_exporter). 7588 setup: 7589 <<: *setup 7590 prerequisites: 7591 list: 7592 - title: Install Exporter 7593 description: | 7594 Install [Sysload Exporter](https://github.com/egmc/sysload_exporter) by following the instructions mentioned in the exporter README. 7595 - <<: *module 7596 meta: 7597 <<: *meta 7598 id: collector-go.d.plugin-prometheus-trex 7599 most_popular: false 7600 community: true 7601 monitored_instance: 7602 name: T-Rex NVIDIA GPU Miner 7603 link: https://github.com/dennisstritzke/trex_exporter 7604 icon_filename: trex.png 7605 categories: 7606 - data-collection.hardware-devices-and-sensors 7607 keywords: [] 7608 overview: 7609 <<: *overview 7610 data_collection: 7611 metrics_description: | 7612 Monitor T-Rex NVIDIA GPU miner metrics for efficient cryptocurrency mining and GPU performance. 7613 method_description: | 7614 Metrics are gathered by periodically sending HTTP requests to [T-Rex NVIDIA GPU Miner Exporter](https://github.com/dennisstritzke/trex_exporter). 7615 setup: 7616 <<: *setup 7617 prerequisites: 7618 list: 7619 - title: Install Exporter 7620 description: | 7621 Install [T-Rex NVIDIA GPU Miner Exporter](https://github.com/dennisstritzke/trex_exporter) by following the instructions mentioned in the exporter README. 7622 - <<: *module 7623 meta: 7624 id: collector-go.d.plugin-prometheus-tado 7625 <<: *meta 7626 most_popular: false 7627 community: true 7628 monitored_instance: 7629 name: Tado smart heating solution 7630 link: https://github.com/eko/tado-exporter 7631 icon_filename: tado.png 7632 categories: 7633 - data-collection.iot-devices 7634 keywords: [] 7635 overview: 7636 <<: *overview 7637 data_collection: 7638 metrics_description: | 7639 Monitor Tado smart thermostat metrics for efficient home heating and cooling management. 7640 method_description: | 7641 Metrics are gathered by periodically sending HTTP requests to [Tado\xB0 Exporter](https://github.com/eko/tado-exporter). 7642 setup: 7643 <<: *setup 7644 prerequisites: 7645 list: 7646 - title: Install Exporter 7647 description: | 7648 Install [Tado Exporter](https://github.com/eko/tado-exporter) by following the instructions mentioned in the exporter README. 7649 7650 - <<: *module 7651 meta: 7652 <<: *meta 7653 id: collector-go.d.plugin-prometheus-tankerkoenig 7654 most_popular: false 7655 community: true 7656 monitored_instance: 7657 name: Tankerkoenig API 7658 link: https://github.com/lukasmalkmus/tankerkoenig_exporter 7659 icon_filename: tanker.png 7660 categories: 7661 - data-collection.generic-data-collection 7662 keywords: [] 7663 overview: 7664 <<: *overview 7665 data_collection: 7666 metrics_description: | 7667 Track Tankerknig API fuel price metrics for efficient fuel price monitoring and management. 7668 method_description: | 7669 Metrics are gathered by periodically sending HTTP requests to [Tankerknig API Exporter](https://github.com/lukasmalkmus/tankerkoenig_exporter). 7670 setup: 7671 <<: *setup 7672 prerequisites: 7673 list: 7674 - title: Install Exporter 7675 description: | 7676 Install [Tankerknig API Exporter](https://github.com/lukasmalkmus/tankerkoenig_exporter) by following the instructions mentioned in the exporter README. 7677 - <<: *module 7678 meta: 7679 <<: *meta 7680 id: collector-go.d.plugin-prometheus-tesla_wall_connector 7681 most_popular: false 7682 community: true 7683 monitored_instance: 7684 name: Tesla Wall Connector 7685 link: https://github.com/benclapp/tesla_wall_connector_exporter 7686 icon_filename: tesla.png 7687 categories: 7688 - data-collection.iot-devices 7689 keywords: [] 7690 overview: 7691 <<: *overview 7692 data_collection: 7693 metrics_description: | 7694 Monitor Tesla Wall Connector charging station metrics for efficient electric vehicle charging management. 7695 method_description: | 7696 Metrics are gathered by periodically sending HTTP requests to [Tesla Wall Connector Exporter](https://github.com/benclapp/tesla_wall_connector_exporter). 7697 setup: 7698 <<: *setup 7699 prerequisites: 7700 list: 7701 - title: Install Exporter 7702 description: | 7703 Install [Tesla Wall Connector Exporter](https://github.com/benclapp/tesla_wall_connector_exporter) by following the instructions mentioned in the exporter README. 7704 - <<: *module 7705 meta: 7706 <<: *meta 7707 id: collector-go.d.plugin-prometheus-tplink_p110 7708 most_popular: false 7709 community: true 7710 monitored_instance: 7711 name: TP-Link P110 7712 link: https://github.com/ijohanne/prometheus-tplink-p110-exporter 7713 icon_filename: tplink.png 7714 categories: 7715 - data-collection.iot-devices 7716 keywords: [] 7717 overview: 7718 <<: *overview 7719 data_collection: 7720 metrics_description: | 7721 Track TP-Link P110 smart plug metrics for efficient energy management and monitoring. 7722 method_description: | 7723 Metrics are gathered by periodically sending HTTP requests to [TP-Link P110 Exporter](https://github.com/ijohanne/prometheus-tplink-p110-exporter). 7724 setup: 7725 <<: *setup 7726 prerequisites: 7727 list: 7728 - title: Install Exporter 7729 description: | 7730 Install [TP-Link P110 Exporter](https://github.com/ijohanne/prometheus-tplink-p110-exporter) by following the instructions mentioned in the exporter README. 7731 - <<: *module 7732 meta: 7733 <<: *meta 7734 id: collector-go.d.plugin-prometheus-traceroute 7735 most_popular: false 7736 community: true 7737 monitored_instance: 7738 name: Traceroute 7739 link: https://github.com/jeanfabrice/prometheus-tcptraceroute-exporter 7740 icon_filename: traceroute.png 7741 categories: 7742 - data-collection.networking-stack-and-network-interfaces 7743 keywords: [] 7744 overview: 7745 <<: *overview 7746 data_collection: 7747 metrics_description: | 7748 Export traceroute metrics for efficient network path analysis and performance monitoring. 7749 method_description: | 7750 Metrics are gathered by periodically sending HTTP requests to [traceroute exporter](https://github.com/jeanfabrice/prometheus-tcptraceroute-exporter). 7751 setup: 7752 <<: *setup 7753 prerequisites: 7754 list: 7755 - title: Install Exporter 7756 description: | 7757 Install [traceroute exporter](https://github.com/jeanfabrice/prometheus-tcptraceroute-exporter) by following the instructions mentioned in the exporter README. 7758 - <<: *module 7759 meta: 7760 <<: *meta 7761 id: collector-go.d.plugin-prometheus-twincat_ads_webservice 7762 most_popular: false 7763 community: true 7764 monitored_instance: 7765 name: TwinCAT ADS Web Service 7766 link: https://github.com/MarcusCalidus/twincat-ads-webservice-exporter 7767 icon_filename: twincat.png 7768 categories: 7769 - data-collection.generic-data-collection 7770 keywords: [] 7771 overview: 7772 <<: *overview 7773 data_collection: 7774 metrics_description: | 7775 Monitor TwinCAT ADS (Automation Device Specification) Web Service metrics for efficient industrial automation and control. 7776 method_description: | 7777 Metrics are gathered by periodically sending HTTP requests to [TwinCAT ADS Web Service exporter](https://github.com/MarcusCalidus/twincat-ads-webservice-exporter). 7778 setup: 7779 <<: *setup 7780 prerequisites: 7781 list: 7782 - title: Install Exporter 7783 description: | 7784 Install [TwinCAT ADS Web Service exporter](https://github.com/MarcusCalidus/twincat-ads-webservice-exporter) by following the instructions mentioned in the exporter README. 7785 - <<: *module 7786 meta: 7787 <<: *meta 7788 id: collector-go.d.plugin-prometheus-warp10 7789 most_popular: false 7790 community: true 7791 monitored_instance: 7792 name: Warp10 7793 link: https://github.com/centreon/warp10-sensision-exporter 7794 icon_filename: warp10.svg 7795 categories: 7796 - data-collection.database-servers 7797 keywords: [] 7798 overview: 7799 <<: *overview 7800 data_collection: 7801 metrics_description: | 7802 Monitor Warp 10 time-series database metrics for efficient time-series data management and performance. 7803 method_description: | 7804 Metrics are gathered by periodically sending HTTP requests to [Warp10 Exporter](https://github.com/centreon/warp10-sensision-exporter). 7805 setup: 7806 <<: *setup 7807 prerequisites: 7808 list: 7809 - title: Install Exporter 7810 description: | 7811 Install [Warp10 Exporter](https://github.com/centreon/warp10-sensision-exporter) by following the instructions mentioned in the exporter README. 7812 7813 - <<: *module 7814 meta: 7815 <<: *meta 7816 id: collector-go.d.plugin-prometheus-yourls 7817 most_popular: false 7818 community: true 7819 monitored_instance: 7820 name: YOURLS URL Shortener 7821 link: https://github.com/just1not2/prometheus-exporter-yourls 7822 icon_filename: yourls.png 7823 categories: 7824 - data-collection.apm 7825 keywords: [] 7826 overview: 7827 <<: *overview 7828 data_collection: 7829 metrics_description: | 7830 Monitor YOURLS (Your Own URL Shortener) metrics for efficient URL shortening service management and performance. 7831 method_description: | 7832 Metrics are gathered by periodically sending HTTP requests to [YOURLS exporter](https://github.com/just1not2/prometheus-exporter-yourls). 7833 setup: 7834 <<: *setup 7835 prerequisites: 7836 list: 7837 - title: Install Exporter 7838 description: | 7839 Install [YOURLS exporter](https://github.com/just1not2/prometheus-exporter-yourls) by following the instructions mentioned in the exporter README. 7840 - <<: *module 7841 meta: 7842 <<: *meta 7843 id: collector-go.d.plugin-prometheus-zerto 7844 most_popular: false 7845 community: true 7846 monitored_instance: 7847 name: Zerto 7848 link: https://github.com/claranet/zerto-exporter 7849 icon_filename: zerto.png 7850 categories: 7851 - data-collection.cloud-provider-managed 7852 keywords: [] 7853 overview: 7854 <<: *overview 7855 data_collection: 7856 metrics_description: | 7857 Monitor Zerto disaster recovery and data protection metrics for efficient backup and recovery management. 7858 method_description: | 7859 Metrics are gathered by periodically sending HTTP requests to [Zerto Exporter](https://github.com/claranet/zerto-exporter). 7860 setup: 7861 <<: *setup 7862 prerequisites: 7863 list: 7864 - title: Install Exporter 7865 description: | 7866 Install [Zerto Exporter](https://github.com/claranet/zerto-exporter) by following the instructions mentioned in the exporter README. 7867 - <<: *module 7868 meta: 7869 <<: *meta 7870 id: collector-go.d.plugin-prometheus-zulip 7871 most_popular: false 7872 community: true 7873 monitored_instance: 7874 name: Zulip 7875 link: https://github.com/brokenpip3/zulip-exporter 7876 icon_filename: zulip.png 7877 categories: 7878 - data-collection.media-streaming-servers 7879 keywords: [] 7880 overview: 7881 <<: *overview 7882 data_collection: 7883 metrics_description: | 7884 Monitor Zulip open-source group chat application metrics for efficient team communication management and performance. 7885 method_description: | 7886 Metrics are gathered by periodically sending HTTP requests to [Zulip Exporter](https://github.com/brokenpip3/zulip-exporter). 7887 setup: 7888 <<: *setup 7889 prerequisites: 7890 list: 7891 - title: Install Exporter 7892 description: | 7893 Install [Zulip Exporter](https://github.com/brokenpip3/zulip-exporter) by following the instructions mentioned in the exporter README. 7894 - <<: *module 7895 meta: 7896 <<: *meta 7897 id: collector-go.d.plugin-prometheus-zyxel_gs1200 7898 most_popular: false 7899 community: true 7900 monitored_instance: 7901 name: Zyxel GS1200-8 7902 link: https://github.com/robinelfrink/gs1200-exporter 7903 icon_filename: zyxel.png 7904 categories: 7905 - data-collection.networking-stack-and-network-interfaces 7906 keywords: [] 7907 overview: 7908 <<: *overview 7909 data_collection: 7910 metrics_description: | 7911 Track Zyxel GS1200 network switch metrics for efficient network device management and performance. 7912 method_description: | 7913 Metrics are gathered by periodically sending HTTP requests to [Zyxel GS1200 Exporter](https://github.com/robinelfrink/gs1200-exporter). 7914 setup: 7915 <<: *setup 7916 prerequisites: 7917 list: 7918 - title: Install Exporter 7919 description: | 7920 Install [Zyxel GS1200 Exporter](https://github.com/robinelfrink/gs1200-exporter) by following the instructions mentioned in the exporter README. 7921