mirror of
https://github.com/M0r13n/mikrotik_monitoring.git
synced 2025-12-31 14:29:33 +00:00
adds note about permissions errors
This commit is contained in:
parent
94463b4944
commit
4cefd2b7b2
4 changed files with 58 additions and 27 deletions
|
|
@ -19,5 +19,7 @@
|
|||
max_delay_on_failure = 900
|
||||
delay_inc_div = 5
|
||||
|
||||
bandwidth = True # Turns metrics bandwidth metrics collection on / off
|
||||
bandwidth_test_interval = 420 # Interval for colllecting bandwidth metrics
|
||||
bandwidth = True # Turns metrics bandwidth metrics collection on / off
|
||||
bandwidth_test_interval = 420 # Interval for colllecting bandwidth metrics
|
||||
|
||||
verbose_mode = False # Set it on for troubleshooting
|
||||
|
|
|
|||
|
|
@ -11,26 +11,37 @@
|
|||
## GNU General Public License for more details.
|
||||
|
||||
|
||||
[Chateau] # Change to your Router
|
||||
capsman_clients = True
|
||||
firewall = True
|
||||
wireless_clients = True
|
||||
use_ssl = False
|
||||
pool = True
|
||||
wireless = True
|
||||
monitor = True
|
||||
capsman = True
|
||||
netwatch = True
|
||||
ssl_certificate_verify = False
|
||||
enabled = True
|
||||
use_comments_over_names = True
|
||||
no_ssl_certificate = False
|
||||
dhcp_lease = True
|
||||
dhcp = True
|
||||
route = True
|
||||
interface = True
|
||||
poe = False # Enable for PoE stats
|
||||
hostname = 192.168.0.1 # Change to your IP
|
||||
username = prometheus # Change to your Mikrotik user
|
||||
password = Mascha33 # Change to your Mikrotik password
|
||||
port = 8728 # Default Port for Mikrotik API
|
||||
[Sample-Router]
|
||||
enabled = False # turns metrics collection for this RouterOS device on / off
|
||||
|
||||
hostname = localhost # RouterOS IP address
|
||||
port = 8728 # RouterOS IP Port
|
||||
|
||||
username = username # RouterOS user, needs to have 'read' and 'api' permissions
|
||||
password = password
|
||||
|
||||
use_ssl = False # enables connection via API-SSL servis
|
||||
no_ssl_certificate = False # enables API_SSL connect without router SSL certificate
|
||||
ssl_certificate_verify = False # turns SSL certificate verification on / off
|
||||
|
||||
installed_packages = True # Installed packages
|
||||
dhcp = True # DHCP general metrics
|
||||
dhcp_lease = True # DHCP lease metrics
|
||||
connections = True # IP connections metrics
|
||||
pool = True # Pool metrics
|
||||
interface = True # Interfaces traffic metrics
|
||||
|
||||
firewall = True # IPv4 Firewall rules traffic metrics
|
||||
ipv6_firewall = False # IPv6 Firewall rules traffic metrics
|
||||
ipv6_neighbor = False # Reachable IPv6 Neighbors
|
||||
|
||||
monitor = True # Interface monitor metrics
|
||||
poe = True # POE metrics
|
||||
public_ip = True # Public IP metrics
|
||||
route = True # Routes metrics
|
||||
wireless = True # WLAN general metrics
|
||||
wireless_clients = True # WLAN clients metrics
|
||||
capsman = True # CAPsMAN general metrics
|
||||
capsman_clients = True # CAPsMAN clients metrics
|
||||
|
||||
use_comments_over_names = True # when available, forces using comments over the interfaces names
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue