github.com/influxdata/telegraf@v1.30.3/internal/snmp/testdata/gosmi/server (about) 1 TEST DEFINITIONS ::= BEGIN 2 3 IMPORTS 4 MODULE-IDENTITY, OBJECT-TYPE, Integer32 FROM fooImports; 5 6 TestMIB MODULE-IDENTITY 7 LAST-UPDATED "2021090800Z" 8 ORGANIZATION "influx" 9 CONTACT-INFO 10 "EMail: influx@email.com" 11 DESCRIPTION 12 "MIB module for testing snmp plugin 13 for telegraf 14 " 15 ::= { iso 1 } 16 17 testingObjects OBJECT IDENTIFIER ::= { iso 0 } 18 testObjects OBJECT IDENTIFIER ::= { testingObjects 0 } 19 hostnameone OBJECT IDENTIFIER ::= {testObjects 1 } 20 hostname OBJECT IDENTIFIER ::= { hostnameone 1 } 21 testTable OBJECT IDENTIFIER ::= { testObjects 0 } 22 testMIBObjects OBJECT IDENTIFIER ::= { testTable 1 } 23 24 25 server OBJECT-TYPE 26 SYNTAX Integer32 27 ACCESS read-only 28 STATUS current 29 DESCRIPTION 30 "server mib for testing" 31 ::= { testMIBObjects 1 } 32 33 connections OBJECT-TYPE 34 SYNTAX Integer32 35 ACCESS read-only 36 STATUS current 37 DESCRIPTION 38 "server mib for testing" 39 ::= { testMIBObjects 2 } 40 41 latency OBJECT-TYPE 42 SYNTAX Integer32 43 ACCESS read-only 44 STATUS current 45 DESCRIPTION 46 "server mib for testing" 47 ::= { testMIBObjects 3 } 48 49 description OBJECT-TYPE 50 SYNTAX Integer32 51 ACCESS read-only 52 STATUS current 53 DESCRIPTION 54 "server mib for testing" 55 ::= { testMIBObjects 4 } 56 57 END