{"id":20598446,"url":"https://github.com/kkirsche/gosnmpinquirer","last_synced_at":"2025-07-11T00:05:08.556Z","repository":{"id":142820509,"uuid":"52826373","full_name":"kkirsche/goSNMPinquirer","owner":"kkirsche","description":"DEPRECATED FOR 2.0 SEPARATE REPO Easy to use / configure SNMP poller","archived":false,"fork":false,"pushed_at":"2016-09-28T14:07:20.000Z","size":2821,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-04T11:25:06.038Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kkirsche.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-02-29T21:33:29.000Z","updated_at":"2018-10-08T02:16:04.000Z","dependencies_parsed_at":"2023-05-01T16:40:01.682Z","dependency_job_id":null,"html_url":"https://github.com/kkirsche/goSNMPinquirer","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/kkirsche/goSNMPinquirer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kkirsche%2FgoSNMPinquirer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kkirsche%2FgoSNMPinquirer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kkirsche%2FgoSNMPinquirer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kkirsche%2FgoSNMPinquirer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kkirsche","download_url":"https://codeload.github.com/kkirsche/goSNMPinquirer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kkirsche%2FgoSNMPinquirer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264696187,"owners_count":23650934,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-16T08:26:51.732Z","updated_at":"2025-07-11T00:05:08.534Z","avatar_url":"https://github.com/kkirsche.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Inquirer\nEasy to use / configure SNMP poller written in Golang. Configurable using JSON like so:\n\n```json\n{\n  \"ip\": \"127.0.0.1\",\n  \"community\": \"Example-SNMP-Community-String\",\n  \"cron\": {\n    \"save_via\": \"file\",\n    \"save_filepath\": \"/Users/exampleUser/Desktop/\",\n    \"save_filename\": \"results\",\n    \"minute\": {\n      \"get\": [\".1.3.6.1.2.1.1.5.0\"],\n      \"get_readable\": [\"SNMPv2-MIB::sysName\"],\n      \"getbulk\": [],\n      \"getbulk_readable\": [],\n      \"bulkwalk\": [\n        \".1.3.6.1.2.1.2.2.1.10\", \".1.3.6.1.2.1.2.2.1.16\",\n        \".1.3.6.1.2.1.2.2.1.1\", \".1.3.6.1.2.1.2.2.1.11\",\n        \".1.3.6.1.2.1.2.2.1.17\", \".1.3.6.1.2.1.2.2.1.19\"\n      ],\n      \"bulkwalk_readable\": [\n        \"IF-MIB::ifInOctets\", \"IF-MIB::ifOutOctets\",\n        \"IF-MIB::ifIndex\", \"IF-MIB::ifInUcastPkts\",\n        \"IF-MIB::ifOutUcastPkts\", \"IF-MIB::ifOutDiscards\"\n      ]\n    },\n    \"hour\": {\n      \"get\": [\".1.3.6.1.2.1.1.5.0\"],\n      \"get_readable\": [\"SNMPv2-MIB::sysName\"],\n      \"getbulk\": [],\n      \"getbulk_readable\": [],\n      \"bulkwalk\": [\n        \".1.3.6.1.2.1.2.2.1.1\", \".1.3.6.1.2.1.31.1.1.1.1\"\n      ],\n      \"bulkwalk_readable\": [\n        \"IF-MIB::ifIndex\", \"IF-MIB::ifName\"\n      ]\n    },\n    \"day\": {\n      \"get\": [],\n      \"get_readable\": [],\n      \"getbulk\": [],\n      \"getbulk_readable\": [],\n      \"bulkwalk\": [],\n      \"bulkwalk_readable\": []\n    }\n  }\n}\n```\n\nThis will query `127.0.0.1` using the community string `Example-SNMP-Community-String` for the OID's provided in `get`, `getbulk`, and `bulkwalk`. This file by default should be stored in `$HOME/.inquirer.json` but can be adjusted with the `--settings` / `-s` command line arguments.\n\n## Values\n\n### save_via\n\n* `stdout`\n* `file` — CSV format only\n* `syslog`\n\n### save_file\n\n* Fully qualified path, including file name and extension, to store the results in.\n\n## Like to Add\nI'd love to add:\n\n* MIB lookups for OID values (OID \u003c-\u003e MIB depending on situation and configuration)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkkirsche%2Fgosnmpinquirer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkkirsche%2Fgosnmpinquirer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkkirsche%2Fgosnmpinquirer/lists"}