Skip to content

Command arris_exporter implements a Prometheus exporter for Arris cable modem devices. MIT Licensed.

License

Notifications You must be signed in to change notification settings

danielpuka/arris_exporter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

arris_exporter Build Status GoDoc Go Report Card

Command arris_exporter implements a Prometheus exporter for Arris cable modem devices. MIT Licensed.

Configuration

The arris_exporter's Prometheus scrape configuration (prometheus.yml) is configured in a similar way to the official Prometheus blackbox_exporter.

The targets list under static_configs should specify the addresses of any Arris devices which should be monitored by the exporter. The address of the arris_exporter itself must be specified in relabel_configs as well.

scrape_configs:
  - job_name: 'arris'
    static_configs:
      - targets:
        - '192.168.100.1' # arris cable modem.
    relabel_configs:
      - source_labels: [__address__]
        target_label: __param_target
      - source_labels: [__param_target]
        target_label: instance
      - target_label: __address__
        replacement: '127.0.0.1:9393' # arris_exporter.

About

Command arris_exporter implements a Prometheus exporter for Arris cable modem devices. MIT Licensed.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%