2017-09-17 04:38:01 +02:00
|
|
|
[![Docker Pulls](https://img.shields.io/docker/pulls/nshttpd/mikrotik-exporter.svg)](https://hub.docker.com/r/nshttpd/mikrotik-exporter/)
|
|
|
|
|
2017-08-28 05:30:35 +02:00
|
|
|
## prometheus-mikrotik
|
|
|
|
|
2017-09-05 04:52:14 +02:00
|
|
|
tl;dr - prometheus exporter for mikrotik devices
|
2017-08-28 05:30:35 +02:00
|
|
|
|
2017-09-05 04:54:04 +02:00
|
|
|
This is still a work in progress .. consider `master` at the moment as a preview
|
|
|
|
release.
|
|
|
|
|
2017-08-28 05:30:35 +02:00
|
|
|
#### Description
|
|
|
|
|
2017-09-05 04:52:14 +02:00
|
|
|
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.
|
|
|
|
|
2018-06-29 04:25:13 +02:00
|
|
|
`/user group add name=prometheus policy=api,read,winbox`
|
2017-09-05 04:52:14 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2018-03-21 02:28:10 +01:00
|
|
|
#### Config File
|
|
|
|
|
|
|
|
`./mikrotik-exporter -config-file config.yml`
|
|
|
|
|
|
|
|
where `config-file` is the path to a config file in YAML format.
|
|
|
|
|
|
|
|
###### example config
|
2018-04-11 15:21:38 +02:00
|
|
|
```yaml
|
2018-03-21 02:28:10 +01:00
|
|
|
devices:
|
|
|
|
- name: my_router
|
|
|
|
address: 10.10.0.1
|
|
|
|
user: prometheus
|
|
|
|
password: changeme
|
|
|
|
- name: my_second_router
|
|
|
|
address: 10.10.0.2
|
2019-12-26 19:17:27 +01:00
|
|
|
port: 8999
|
2018-03-21 02:28:10 +01:00
|
|
|
user: prometheus2
|
|
|
|
password: password_to_second_router
|
2018-04-11 15:21:38 +02:00
|
|
|
|
|
|
|
features:
|
|
|
|
bgp: true
|
|
|
|
dhcp: true
|
|
|
|
dhcpv6: true
|
2019-09-02 20:50:20 +02:00
|
|
|
dhcpl: true
|
2018-04-11 15:21:38 +02:00
|
|
|
routes: true
|
|
|
|
pools: true
|
2018-05-07 20:31:19 +02:00
|
|
|
optics: true
|
2018-03-21 02:28:10 +01:00
|
|
|
```
|
|
|
|
|
2017-09-05 04:52:14 +02:00
|
|
|
###### 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
|
|
|
|
```
|
|
|
|
|
2018-03-21 02:28:10 +01:00
|
|
|
|