This package is a SNMP bot for Grafolean, an easy to use generic monitoring system.
Once installed, all the configuration of SNMP sensors is done through Grafolean's web-based user interface. Depending on permissions, a single SNMP bot instance can be fetching data for multiple accounts and entities. The fetching intervals can be specified with up to a second precision.
Under the hood it uses net-snmp (via easysnmp), which means
it should be compatible with any device that can respond to requests by snmpget
and snmpwalk
.
Requirements:
- the devices that should be queried via SNMP must be accessible from the container (make sure that SNMP bot is installed in the correct network and that there are no firewalls in between)
- Grafolean must be accessible via HTTP(S)
Current limitations:
- does not yet support out-of-order SNMP WALK responses
- does not yet limit the maximum number of retrieved OIDs when doing SNMP WALK
- BULK GET/WALK is not supported yet
License is Commons Clause license (on top of Apache 2.0) - source is available, you can use it for free (commercially too), modify and share, but you can't sell it. See LICENSE.md for details.
If in doubt, please open an issue to get further clarification.
Requirements: docker
and docker-compose
.
-
log in to Grafolean service (either self-hosted or https://grafolean.com/) and create a new
Bot
. Make sure that selected protocol isSNMP
. Copy the bot token. -
save docker-compose.yml to a local file:
$ mkdir ~/snmpbot $ cd ~/snmpbot $ wget https://github.com/grafolean/grafolean-snmp-bot/raw/master/docker-compose.yml
-
edit
docker-compose.yml
and change:- mandatory:
BACKEND_URL
(set to the URL of Grafolean backend, for examplehttps://grafolean.com/api
), - mandatory:
BOT_TOKEN
(set to the bot token from step 1), - optional:
JOBS_REFRESH_INTERVAL
(interval in seconds at which the jobs definitions will be updated)
Alternatively, you can also copy
.env.example
to.env
and change settings there (leavingdocker-compose.yml
in original state). - mandatory:
-
run:
docker-compose up -d
If you get no error, congratulations! Everything else is done from within the Grafolean UI. You can however check the status of container as usually by running docker ps
and investigate logs by running docker logs -f grafolean-snmp-bot
.
In case of error make sure that the user is allowed to run docker
(that is, that it is in docker
group) by running docker ps
. Alternatively, container can be run using sudo
(line 4 then reads sudo docker-compose up -d
).
$ docker-compose pull
$ docker-compose down
$ docker-compose up -d
Container logs can be checked by running:
$ docker logs --since 5m -f grafolean-snmp-bot
If you wish to build the Docker image locally (for debugging or for development purposes), you can use a custom docker-compose YAML file:
docker-compose -f docker-compose.dev.yml build
In this case .env.example
can be copied to .env
and all settings can be altered there.
CLA needs to be signed to contribute to this repository. Please open an issue about the problem you are facing before submitting a pull request.
If you encounter any problems installing or running the software, please let us know in the issues. Please make an effort when describing the issue. If we can reproduce the problem, we can also fix it much faster.