MCPcopy Index your code
hub / github.com/canonical/nrpe_exporter

github.com/canonical/nrpe_exporter @0.2.6

Chat with this repo
repository ↗ · DeepWiki ↗ · release 0.2.6 ↗ · + Follow
8 symbols 22 edges 1 files 5 documented · 62%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

NRPE exporter

The NRPE exporter exposes metrics on commands sent to a running NRPE daemon.

Building and running

Local Build

go build nrpe_exporter.go
./nrpe_exporter

Visiting http://localhost:9275/export?command=check_load&target=127.0.0.1:5666 will return metrics for the command 'check_load' against a locally running NRPE server.

Building with Docker

docker build -t nrpe_exporter .
docker run -d -p 9275:9275 --name nrpe_exporter

Configuration

The nrpe_exporter requires little to no configuration.

The few options available such as logging level and the port to run on are configured via command line flags.

Run ./nrpe_exporter -h to view all available flags.

Prometheus Configuration

Example config:

global:
  scrape_interval: 10s
scrape_configs:
  - job_name: nrpe_check_load
    metrics_path: /export
    params:
      command: [check_load] # Run the check_load command.
      ssl: [true] # if using ssl
    static_configs:
      - targets: # Targets to run the specified command against.
        - '127.0.0.1:5666'
        - 'example.com:5666'
    relabel_configs:
      - source_labels: [__address__]
        target_label: __param_target
      - source_labels: [__param_target]
        target_label: instance
      - target_label: __address__
        replacement: 127.0.0.1:9275 # Nrpe exporter.

Result Codes in command_status:

    StatusOK       = 0
    StatusWarning  = 1
    StatusCritical = 2
    StatusUnknown  = 3

Sample Alert Rule:


groups:
- name: NRPE Host Load Status
  rules:
  - alert: HighLoad
    expr: avg_over_time(command_status{job="nrpe_check_load"}[5m]) > 0
    for: 5m
    annotations:
      summary: "Load is high {{ $labels.instance }}"
      description: "{{ $labels.instance }} for job {{ $labels.job }} has sustained high load."

SSL support

Add URL query parameter ssl=true to enable SSL for the NRPE connection, e.g.

    params:
      command: [check_load]
      ssl: [true]

NRPE requires the ADH ciphersuite which is not built by default in modern version of openssl. If the following command returns nothing then you will not be able to use it:

openssl ciphers -s -v ALL | grep ADH   # remove -s on older versions of openssl

The solution is to build a statically-linked nrpe_exporter binary on an older server - Ubuntu 16.04 works.

go build -a -ldflags '-extldflags "-static -ldl"'

A trivial Makefile is provided, which will perform this task in Docker.

Core symbols most depended-on inside this repo

collectCommandMetrics
called by 1
nrpe_exporter.go
NewCollector
called by 1
nrpe_exporter.go
handler
called by 1
nrpe_exporter.go
Describe
called by 0
nrpe_exporter.go
Collect
called by 0
nrpe_exporter.go
main
called by 0
nrpe_exporter.go

Shape

Function 4
Method 2
Struct 2

Languages

Go100%

Modules by API surface

nrpe_exporter.go8 symbols

For agents

$ claude mcp add nrpe_exporter \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page