Skip to main content

SNMP collector through an asyncio loop

Project description

PyPi version PyPi license PyPI pyversions Docker codecov

SNMP Collector Powered by Asyncio

Collecting data from SNMP Agents using python-asyncio method.

Setup using docker

Up and build docker container:

docker-compose up --build -d

Setup Without docker:

Install requirements:

pip install -r requirements.txt

Configure the desire OID(s) and metrics:

nano snmp_collector/config/cofig.json

Run:

python snmp_collector

Setup through pip

pip install snmp-manager

Configuration:

Create a json config file with the following format:

[
  {
    "isEnable": true,
    "name": "snmp-model-1",
    "address": "192.168.1.120",
    "port": 161,
    "timeout": 1,
    "retries": 3,
    "version": 2,
    "sleep_time": 5,
    "gain": 1,
    "offset": 0,
    "community": "public",
    "metrics": [
      {
        "isEnable": true,
        "tag_name": "a-sample",
        "oid": "1.3.6.13.4.1.3.1112"
      }
    ],
    "meta_data": [{'key': 'value'}]
  }
]

Run:

python -m snmp_collector --config=<path-to-your-config-file.json>

[NOTE]:

  • The value of -8555 means a problem is occurred during reading data over SNMP or in connection.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

snmp-manager-1.1.5.tar.gz (8.5 kB view hashes)

Uploaded Source

Built Distribution

snmp_manager-1.1.5-py2.py3-none-any.whl (11.4 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page