prometheus mikrotik device(s) exporter
Go to file
dependabot[bot] b0b51dd6c9
Bump golang.org/x/net from 0.0.0-20210805182204-aaa1db679c0d to 0.7.0
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20210805182204-aaa1db679c0d to 0.7.0.
- [Release notes](https://github.com/golang/net/releases)
- [Commits](https://github.com/golang/net/commits/v0.7.0)

---
updated-dependencies:
- dependency-name: golang.org/x/net
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-07 00:53:13 +00:00
.circleci switch to go modules (#58) 2019-11-16 00:05:31 -05:00
collector Merge pull request #146 from klaper/health_collector_fix 2022-06-16 21:51:58 -04:00
config Add capsman station metric 2021-07-28 21:26:27 +02:00
examples moved docker-compose down into examples directory 2021-03-22 22:58:55 -04:00
scripts fixed typo in start.sh permissions assignment (#53) 2019-10-16 12:07:35 -04:00
.gitignore #36 attempt to fix api login auth issue (#38) 2019-07-02 20:46:19 -04:00
Dockerfile use debian instead of alpine 2019-07-21 18:10:43 -04:00
Dockerfile.arm64 various issues fixing (#49) 2019-09-02 14:51:14 -04:00
Dockerfile.armhf Fix docker build to make runnable executable (#39) 2019-07-05 22:17:33 -04:00
LICENSE updated copyright date 2021-03-24 21:09:30 -04:00
MAINTAINERS.md clean up and adding in additional files 2017-10-12 08:36:20 -04:00
Makefile switch to go modules (#58) 2019-11-16 00:05:31 -05:00
README.md add support for LTE interface 2021-03-25 20:13:11 +01:00
VERSION switch to go modules (#58) 2019-11-16 00:05:31 -05:00
go.mod Bump golang.org/x/net from 0.0.0-20210805182204-aaa1db679c0d to 0.7.0 2023-03-07 00:53:13 +00:00
go.sum Bump golang.org/x/net from 0.0.0-20210805182204-aaa1db679c0d to 0.7.0 2023-03-07 00:53:13 +00:00
main.go add in go runtime metrics 2021-08-09 21:58:33 -04:00

README.md

Docker Pulls

prometheus-mikrotik

tl;dr - prometheus exporter for mikrotik devices

This is still a work in progress .. consider master at the moment as a preview release.

Description

A Prometheus Exporter for Mikrotik devices. Can be configured to collect metrics from a single device or multiple devices. Single device monitoring can be configured all on the command line. Multiple devices require a configuration file. A user will be required that has read-only access to the device configuration via the API.

Currently the exporter collects metrics for interfaces and system resources. Others can be added as long as published via the API.

Mikrotik Config

Create a user on the device that has API and read-only access.

/user group add name=prometheus policy=api,read,winbox

If lte is enabled it requires also the test policy.

/user group add name=prometheus policy=api,read,winbox,test

Create the user to access the API via.

/user add name=prometheus group=prometheus password=changeme

Single Device

./mikrotik-exporter -address 10.10.0.1 -device my_router -password changeme -user prometheus

where address is the address of your router. device is the label name for the device in the metrics output to prometheus. The user and password are the ones you created for the exporter to use to access the API.

User and password flags can be set with the MIKROTIK_USER and MIKROTIK_PASSWORD environment variables, respectively.

MIKROTIK_USER=prometheus
MIKROTIK_PASSWORD=changeme
./mikrotik-exporter -address 10.10.0.1 -device my_router

Config File

./mikrotik-exporter -config-file config.yml

where config-file is the path to a config file in YAML format.

example config
devices:
  - name: my_router
    address: 10.10.0.1
    user: prometheus
    password: changeme
  - name: my_second_router
    address: 10.10.0.2
    port: 8999
    user: prometheus2
    password: password_to_second_router
  - name: routers_srv_dns
    srv:
      record: _mikrotik._udp.example.com
    user: prometheus
    password: password_to_all_dns_routers
  - name: routers_srv_custom_dns
    srv:
      record: _mikrotik2._udp.example.com
      dns:
        address: 1.1.1.1
        port: 53
    user: prometheus
    password: password_to_all_dns_routers

features:
  bgp: true
  dhcp: true
  dhcpv6: true
  dhcpl: true
  routes: true
  pools: true
  optics: true

If you add a devices with the srv parameter instead of address the exporter will perform a DNS query to obtain the SRV record and discover the devices dynamically. Also, you can specify a DNS server to use on the query.

example output
mikrotik_interface_tx_byte{address="10.10.0.1",interface="ether2",name="my_router"} 1.4189902583e+10
mikrotik_interface_tx_byte{address="10.10.0.1",interface="ether3",name="my_router"} 2.263768666e+09
mikrotik_interface_tx_byte{address="10.10.0.1",interface="ether4",name="my_router"} 1.6572299e+08
mikrotik_interface_tx_byte{address="10.10.0.1",interface="ether5",name="my_router"} 1.66711315e+08
mikrotik_interface_tx_byte{address="10.10.0.1",interface="ether6",name="my_router"} 1.0026481337e+10
mikrotik_interface_tx_byte{address="10.10.0.1",interface="ether7",name="my_router"} 3.18354425e+08
mikrotik_interface_tx_byte{address="10.10.0.1",interface="ether8",name="my_router"} 1.86405031e+08