update docs
This commit is contained in:
parent
b7f6078ad1
commit
22741ccab3
|
|
@ -23,8 +23,9 @@ We have a special place for [Docker Users](https://github.com/unifi-poller/unifi
|
|||
I'm willing to help if you have troubles.
|
||||
Open an [Issue](https://github.com/unifi-poller/unifi-poller/issues) and
|
||||
we'll figure out how to get things working for you. You can also get help in
|
||||
the #unifi-poller channel on the [Ubiquiti Discord server](https://discord.gg/KnyKYt2).
|
||||
I've also [provided a forum post](https://community.ui.com/questions/Unifi-Poller-Store-Unifi-Controller-Metrics-in-InfluxDB-without-SNMP/58a0ea34-d2b3-41cd-93bb-d95d3896d1a1) you may use to get additional help.
|
||||
the #unifi-poller channel on the [Ubiquiti Discord server](https://discord.gg/KnyKYt2). I've also
|
||||
[provided a forum post](https://community.ui.com/questions/Unifi-Poller-Store-Unifi-Controller-Metrics-in-InfluxDB-without-SNMP/58a0ea34-d2b3-41cd-93bb-d95d3896d1a1)
|
||||
you may use to get additional help.
|
||||
|
||||
## Description
|
||||
|
||||
|
|
@ -62,7 +63,8 @@ The original code pulled only the client data. This app now pulls data
|
|||
for clients, access points, security gateways, dream machines and switches.
|
||||
|
||||
I've been trying to get my UAP data into Grafana. Sure, google search that.
|
||||
You'll find [this](https://community.ubnt.com/t5/UniFi-Wireless/Grafana-dashboard-for-UniFi-APs-now-available/td-p/1833532). What if you don't want to deal with SNMP?
|
||||
You'll find [this](https://community.ubnt.com/t5/UniFi-Wireless/Grafana-dashboard-for-UniFi-APs-now-available/td-p/1833532).
|
||||
What if you don't want to deal with SNMP?
|
||||
Well, here you go. I've replicated 400% of what you see on those SNMP-powered
|
||||
dashboards with this Go app running on the same mac as my UniFi controller.
|
||||
All without enabling SNMP nor trying to understand those OIDs. Mad props
|
||||
|
|
|
|||
|
|
@ -1,14 +1,6 @@
|
|||
# UniFi Poller v2 primary configuration file. TOML FORMAT #
|
||||
###########################################################
|
||||
|
||||
### NOTICE ### 1-26-2020 ###
|
||||
|
||||
# This config file, and all the config files in this same folder are for VERSION 2.
|
||||
# V2 is still alpha and not released. If you use Docker, specifically `latest` you
|
||||
# will get version 1.6.3. This is *not* the correct config file and will not work.
|
||||
# It will also not generate errors, and you will spend hours pulling your hair out.
|
||||
# Use this file for v1: https://github.com/unifi-poller/unifi-poller/blob/v1.6.3/examples/up.conf.example
|
||||
|
||||
[poller]
|
||||
# Turns on line numbers, microsecond logging, and a per-device log.
|
||||
# The default is false, but I personally leave this on at home (four devices).
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
#############################################
|
||||
# UniFi Poller primary configuration file. #
|
||||
# XML FORMAT. Provided values are defaults. #
|
||||
# See up.conf.example! #
|
||||
# See up.conf.example! v2 #
|
||||
#############################################
|
||||
|
||||
<plugin> and <site> are lists of strings and may be repeated.
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
##############################################
|
||||
# UniFi Poller primary configuration file. #
|
||||
# YAML FORMAT. Provided values are defaults. #
|
||||
# See up.conf.example! #
|
||||
# See up.conf.example! v2 #
|
||||
##############################################
|
||||
---
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue