├── LICENSE ├── README.md └── telegraf.d ├── ccr1009.conf ├── rb2011uias.conf ├── rb750GL-capsman.conf └── rb760igs.conf /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Miroslav Prasil 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # telegraf-snmp-mikrotik 2 | 3 | This repo contains Telegraf SNMP plugin configuration for Router OS (mikrotik) devices as I couldn't find any good configuration online. 4 | 5 | ## Usage 6 | 7 | The configuration files contain only relevant parts, you probably want to *add* it to your current telegraf configuration. 8 | 9 | The configuration was tested only with handful of mikrotik models like: 10 | - 2011UiAS-2HnD 11 | - 750GL 12 | - CCR1009-8G-1S-1S+ 13 | - RB760iGS (Mikrotik hEX S) 14 | 15 | Not all features are supported. 16 | 17 | ## TODO 18 | 19 | Create multiple model-specific versions, where only supported metrics are collected. 20 | 21 | ## Contributing 22 | 23 | Contributions are welcome, please create a pull request. 24 | -------------------------------------------------------------------------------- /telegraf.d/ccr1009.conf: -------------------------------------------------------------------------------- 1 | [[inputs.snmp]] 2 | agents = [ "10.110.5.1:161" ] # Replace this with your router(s) IP/port 3 | 4 | # System 5 | [[inputs.snmp.field]] 6 | name = "hostname" 7 | oid = ".1.3.6.1.2.1.1.5.0" 8 | is_tag = true 9 | [[inputs.snmp.field]] 10 | name = "uptime" 11 | oid = ".1.3.6.1.2.1.1.3.0" 12 | [[inputs.snmp.field]] 13 | name = "cpu-frequency" 14 | oid = ".1.3.6.1.4.1.14988.1.1.3.14.0" 15 | [[inputs.snmp.field]] 16 | name = "cpu-load" 17 | oid = ".1.3.6.1.2.1.25.3.3.1.2.1" 18 | [[inputs.snmp.field]] 19 | name = "active-fan" 20 | oid = ".1.3.6.1.4.1.14988.1.1.3.9.0" 21 | [[inputs.snmp.field]] 22 | name = "voltage" 23 | oid = ".1.3.6.1.4.1.14988.1.1.3.8.0" 24 | [[inputs.snmp.field]] 25 | name = "temperature" 26 | oid = ".1.3.6.1.4.1.14988.1.1.3.10.0" 27 | [[inputs.snmp.field]] 28 | name = "processor-temperature" 29 | oid = ".1.3.6.1.4.1.14988.1.1.3.11.0" 30 | [[inputs.snmp.field]] 31 | name = "current" 32 | oid = ".1.3.6.1.4.1.14988.1.1.3.13.0" 33 | [[inputs.snmp.field]] 34 | name = "fan-speed" 35 | oid = ".1.3.6.1.4.1.14988.1.1.3.17.0" 36 | [[inputs.snmp.field]] 37 | name = "fan-speed2" 38 | oid = ".1.3.6.1.4.1.14988.1.1.3.18.0" 39 | [[inputs.snmp.field]] 40 | name = "power-consumption" 41 | oid = ".1.3.6.1.4.1.14988.1.1.3.12.0" 42 | [[inputs.snmp.field]] 43 | name = "psu1-state" 44 | oid = ".1.3.6.1.4.1.14988.1.1.3.15.0" 45 | [[inputs.snmp.field]] 46 | name = "psu2-state" 47 | oid = ".1.3.6.1.4.1.14988.1.1.3.16.0" 48 | 49 | # Interfaces 50 | [[inputs.snmp.table]] 51 | name = "snmp-interfaces" 52 | inherit_tags = ["hostname"] 53 | [[inputs.snmp.table.field]] 54 | name = "if-name" 55 | oid = ".1.3.6.1.2.1.2.2.1.2" 56 | is_tag = true 57 | [[inputs.snmp.table.field]] 58 | name = "mac-address" 59 | oid = ".1.3.6.1.2.1.2.2.1.6" 60 | is_tag = true 61 | 62 | [[inputs.snmp.table.field]] 63 | name = "actual-mtu" 64 | oid = ".1.3.6.1.2.1.2.2.1.4" 65 | [[inputs.snmp.table.field]] 66 | name = "admin-status" 67 | oid = ".1.3.6.1.2.1.2.2.1.7" 68 | [[inputs.snmp.table.field]] 69 | name = "oper-status" 70 | oid = ".1.3.6.1.2.1.2.2.1.8" 71 | [[inputs.snmp.table.field]] 72 | name = "bytes-in" 73 | oid = ".1.3.6.1.2.1.31.1.1.1.6" 74 | [[inputs.snmp.table.field]] 75 | name = "packets-in" 76 | oid = ".1.3.6.1.2.1.31.1.1.1.7" 77 | [[inputs.snmp.table.field]] 78 | name = "discards-in" 79 | oid = ".1.3.6.1.2.1.2.2.1.13" 80 | [[inputs.snmp.table.field]] 81 | name = "errors-in" 82 | oid = ".1.3.6.1.2.1.2.2.1.14" 83 | [[inputs.snmp.table.field]] 84 | name = "bytes-out" 85 | oid = ".1.3.6.1.2.1.31.1.1.1.10" 86 | [[inputs.snmp.table.field]] 87 | name = "packets-out" 88 | oid = ".1.3.6.1.2.1.31.1.1.1.11" 89 | [[inputs.snmp.table.field]] 90 | name = "discards-out" 91 | oid = ".1.3.6.1.2.1.2.2.1.19" 92 | [[inputs.snmp.table.field]] 93 | name= "errors-out" 94 | oid= ".1.3.6.1.2.1.2.2.1.20" 95 | 96 | # Memory usage (storage/RAM) 97 | [[inputs.snmp.table]] 98 | name = "snmp-memory-usage" 99 | inherit_tags = ["hostname"] 100 | [[inputs.snmp.table.field]] 101 | name = "memory-name" 102 | oid = ".1.3.6.1.2.1.25.2.3.1.3" 103 | is_tag = true 104 | [[inputs.snmp.table.field]] 105 | name = "total-memory" 106 | oid = ".1.3.6.1.2.1.25.2.3.1.5" 107 | [[inputs.snmp.table.field]] 108 | name = "used-memory" 109 | oid = ".1.3.6.1.2.1.25.2.3.1.6" 110 | -------------------------------------------------------------------------------- /telegraf.d/rb2011uias.conf: -------------------------------------------------------------------------------- 1 | [[inputs.snmp]] 2 | agents = [ "192.168.1.1:161" ] # Replace this with your router(s) IP/port 3 | 4 | [[inputs.snmp.field]] 5 | name = "hostname" 6 | oid = ".1.3.6.1.2.1.1.5.0" 7 | is_tag = true 8 | [[inputs.snmp.field]] 9 | name = "uptime" 10 | oid = ".1.3.6.1.2.1.1.3.0" 11 | [[inputs.snmp.field]] 12 | name = "cpu-frequency" 13 | oid = ".1.3.6.1.4.1.14988.1.1.3.14.0" 14 | [[inputs.snmp.field]] 15 | name = "cpu-load" 16 | oid = ".1.3.6.1.2.1.25.3.3.1.2.1" 17 | [[inputs.snmp.field]] 18 | name = "active-fan" 19 | oid = ".1.3.6.1.4.1.14988.1.1.3.9.0" 20 | [[inputs.snmp.field]] 21 | name = "voltage" 22 | oid = ".1.3.6.1.4.1.14988.1.1.3.8.0" 23 | [[inputs.snmp.field]] 24 | name = "temperature" 25 | oid = ".1.3.6.1.4.1.14988.1.1.3.10.0" 26 | [[inputs.snmp.field]] 27 | name = "processor-temperature" 28 | oid = ".1.3.6.1.4.1.14988.1.1.3.11.0" 29 | [[inputs.snmp.field]] 30 | name = "current" 31 | oid = ".1.3.6.1.4.1.14988.1.1.3.13.0" 32 | [[inputs.snmp.field]] 33 | name = "fan-speed" 34 | oid = ".1.3.6.1.4.1.14988.1.1.3.17.0" 35 | [[inputs.snmp.field]] 36 | name = "fan-speed2" 37 | oid = ".1.3.6.1.4.1.14988.1.1.3.18.0" 38 | [[inputs.snmp.field]] 39 | name = "power-consumption" 40 | oid = ".1.3.6.1.4.1.14988.1.1.3.12.0" 41 | [[inputs.snmp.field]] 42 | name = "psu1-state" 43 | oid = ".1.3.6.1.4.1.14988.1.1.3.15.0" 44 | [[inputs.snmp.field]] 45 | name = "psu2-state" 46 | oid = ".1.3.6.1.4.1.14988.1.1.3.16.0" 47 | 48 | # Interfaces 49 | [[inputs.snmp.table]] 50 | name = "snmp-interfaces" 51 | inherit_tags = ["hostname"] 52 | [[inputs.snmp.table.field]] 53 | name = "if-name" 54 | oid = ".1.3.6.1.2.1.2.2.1.2" 55 | is_tag = true 56 | [[inputs.snmp.table.field]] 57 | name = "mac-address" 58 | oid = ".1.3.6.1.2.1.2.2.1.6" 59 | is_tag = true 60 | 61 | [[inputs.snmp.table.field]] 62 | name = "actual-mtu" 63 | oid = ".1.3.6.1.2.1.2.2.1.4" 64 | [[inputs.snmp.table.field]] 65 | name = "admin-status" 66 | oid = ".1.3.6.1.2.1.2.2.1.7" 67 | [[inputs.snmp.table.field]] 68 | name = "oper-status" 69 | oid = ".1.3.6.1.2.1.2.2.1.8" 70 | [[inputs.snmp.table.field]] 71 | name = "bytes-in" 72 | oid = ".1.3.6.1.2.1.31.1.1.1.6" 73 | [[inputs.snmp.table.field]] 74 | name = "packets-in" 75 | oid = ".1.3.6.1.2.1.31.1.1.1.7" 76 | [[inputs.snmp.table.field]] 77 | name = "discards-in" 78 | oid = ".1.3.6.1.2.1.2.2.1.13" 79 | [[inputs.snmp.table.field]] 80 | name = "errors-in" 81 | oid = ".1.3.6.1.2.1.2.2.1.14" 82 | [[inputs.snmp.table.field]] 83 | name = "bytes-out" 84 | oid = ".1.3.6.1.2.1.31.1.1.1.10" 85 | [[inputs.snmp.table.field]] 86 | name = "packets-out" 87 | oid = ".1.3.6.1.2.1.31.1.1.1.11" 88 | [[inputs.snmp.table.field]] 89 | name = "discards-out" 90 | oid = ".1.3.6.1.2.1.2.2.1.19" 91 | [[inputs.snmp.table.field]] 92 | name= "errors-out" 93 | oid= ".1.3.6.1.2.1.2.2.1.20" 94 | 95 | # Wireless interfaces 96 | [[inputs.snmp.table]] 97 | name = "snmp-wireless-interfaces" 98 | inherit_tags = ["hostname"] 99 | [[inputs.snmp.table.field]] 100 | name = "ssid" 101 | oid = ".1.3.6.1.4.1.14988.1.1.1.3.1.4" 102 | is_tag = true 103 | [[inputs.snmp.table.field]] 104 | name = "bssid" 105 | oid = ".1.3.6.1.4.1.14988.1.1.1.3.1.5" 106 | is_tag = true 107 | 108 | [[inputs.snmp.table.field]] 109 | name = "tx-rate" 110 | oid = ".1.3.6.1.4.1.14988.1.1.1.3.1.2" 111 | [[inputs.snmp.table.field]] 112 | name = "rx-rate" 113 | oid = ".1.3.6.1.4.1.14988.1.1.1.3.1.3" 114 | [[inputs.snmp.table.field]] 115 | name = "client-count" 116 | oid = ".1.3.6.1.4.1.14988.1.1.1.3.1.6" 117 | [[inputs.snmp.table.field]] 118 | name = "frequency" 119 | oid = ".1.3.6.1.4.1.14988.1.1.1.3.1.7" 120 | [[inputs.snmp.table.field]] 121 | name = "band" 122 | oid = ".1.3.6.1.4.1.14988.1.1.1.3.1.8" 123 | [[inputs.snmp.table.field]] 124 | name = "noise-floor" 125 | oid = ".1.3.6.1.4.1.14988.1.1.1.3.1.9" 126 | [[inputs.snmp.table.field]] 127 | name = "overall-ccq" 128 | oid = ".1.3.6.1.4.1.14988.1.1.1.3.1.10" 129 | # Memory usage (storage/RAM) 130 | [[inputs.snmp.table]] 131 | name = "snmp-memory-usage" 132 | inherit_tags = ["hostname"] 133 | [[inputs.snmp.table.field]] 134 | name = "memory-name" 135 | oid = ".1.3.6.1.2.1.25.2.3.1.3" 136 | is_tag = true 137 | [[inputs.snmp.table.field]] 138 | name = "total-memory" 139 | oid = ".1.3.6.1.2.1.25.2.3.1.5" 140 | [[inputs.snmp.table.field]] 141 | name = "used-memory" 142 | oid = ".1.3.6.1.2.1.25.2.3.1.6" -------------------------------------------------------------------------------- /telegraf.d/rb750GL-capsman.conf: -------------------------------------------------------------------------------- 1 | # # Retrieves SNMP values from remote agents 2 | [[inputs.snmp]] 3 | # ## Agent addresses to retrieve values from. 4 | # ## example: agents = ["udp://127.0.0.1:161"] 5 | # ## agents = ["tcp://127.0.0.1:161"] 6 | agents = ["udp://192.168.1.1:161"] 7 | 8 | [[inputs.snmp.field]] 9 | name = "hostname" 10 | oid = ".1.3.6.1.2.1.1.5.0" 11 | is_tag = true 12 | [[inputs.snmp.field]] 13 | name = "uptime" 14 | oid = ".1.3.6.1.2.1.1.3.0" 15 | [[inputs.snmp.field]] 16 | name = "cpu-frequency" 17 | oid = ".1.3.6.1.4.1.14988.1.1.3.14.0" 18 | [[inputs.snmp.field]] 19 | name = "cpu-load" 20 | oid = ".1.3.6.1.2.1.25.3.3.1.2.1" 21 | [[inputs.snmp.field]] 22 | name = "active-fan" 23 | oid = ".1.3.6.1.4.1.14988.1.1.3.9.0" 24 | [[inputs.snmp.field]] 25 | name = "voltage" 26 | oid = ".1.3.6.1.4.1.14988.1.1.3.8.0" 27 | [[inputs.snmp.field]] 28 | name = "temperature" 29 | oid = ".1.3.6.1.4.1.14988.1.1.3.10.0" 30 | [[inputs.snmp.field]] 31 | name = "processor-temperature" 32 | oid = ".1.3.6.1.4.1.14988.1.1.3.11.0" 33 | [[inputs.snmp.field]] 34 | name = "current" 35 | oid = ".1.3.6.1.4.1.14988.1.1.3.13.0" 36 | [[inputs.snmp.field]] 37 | name = "fan-speed" 38 | oid = ".1.3.6.1.4.1.14988.1.1.3.17.0" 39 | [[inputs.snmp.field]] 40 | name = "fan-speed2" 41 | oid = ".1.3.6.1.4.1.14988.1.1.3.18.0" 42 | [[inputs.snmp.field]] 43 | name = "power-consumption" 44 | oid = ".1.3.6.1.4.1.14988.1.1.3.12.0" 45 | [[inputs.snmp.field]] 46 | name = "psu1-state" 47 | oid = ".1.3.6.1.4.1.14988.1.1.3.15.0" 48 | [[inputs.snmp.field]] 49 | name = "psu2-state" 50 | oid = ".1.3.6.1.4.1.14988.1.1.3.16.0" 51 | 52 | # Interfaces 53 | [[inputs.snmp.table]] 54 | name = "snmp-interfaces" 55 | inherit_tags = ["hostname"] 56 | [[inputs.snmp.table.field]] 57 | name = "if-name" 58 | oid = ".1.3.6.1.2.1.2.2.1.2" 59 | is_tag = true 60 | [[inputs.snmp.table.field]] 61 | name = "mac-address" 62 | oid = ".1.3.6.1.2.1.2.2.1.6" 63 | is_tag = true 64 | 65 | [[inputs.snmp.table.field]] 66 | name = "actual-mtu" 67 | oid = ".1.3.6.1.2.1.2.2.1.4" 68 | [[inputs.snmp.table.field]] 69 | name = "admin-status" 70 | oid = ".1.3.6.1.2.1.2.2.1.7" 71 | [[inputs.snmp.table.field]] 72 | name = "oper-status" 73 | oid = ".1.3.6.1.2.1.2.2.1.8" 74 | [[inputs.snmp.table.field]] 75 | name = "bytes-in" 76 | oid = ".1.3.6.1.2.1.31.1.1.1.6" 77 | [[inputs.snmp.table.field]] 78 | name = "packets-in" 79 | oid = ".1.3.6.1.2.1.31.1.1.1.7" 80 | [[inputs.snmp.table.field]] 81 | name = "discards-in" 82 | oid = ".1.3.6.1.2.1.2.2.1.13" 83 | [[inputs.snmp.table.field]] 84 | name = "errors-in" 85 | oid = ".1.3.6.1.2.1.2.2.1.14" 86 | [[inputs.snmp.table.field]] 87 | name = "bytes-out" 88 | oid = ".1.3.6.1.2.1.31.1.1.1.10" 89 | [[inputs.snmp.table.field]] 90 | name = "packets-out" 91 | oid = ".1.3.6.1.2.1.31.1.1.1.11" 92 | [[inputs.snmp.table.field]] 93 | name = "discards-out" 94 | oid = ".1.3.6.1.2.1.2.2.1.19" 95 | [[inputs.snmp.table.field]] 96 | name= "errors-out" 97 | oid= ".1.3.6.1.2.1.2.2.1.20" 98 | 99 | # Wireless interfaces 100 | [[inputs.snmp.table]] 101 | name = "snmp-wireless-interfaces" 102 | inherit_tags = ["hostname"] 103 | [[inputs.snmp.table.field]] 104 | name = "ssid" 105 | oid = ".1.3.6.1.4.1.14988.1.1.1.5.1.12" 106 | is_tag = true 107 | [[inputs.snmp.table.field]] 108 | name = "bssid" 109 | oid = ".1.3.6.1.4.1.14988.1.1.1.5.1.13" 110 | is_tag = true 111 | [[inputs.snmp.table.field]] 112 | name = "mac" 113 | oid = ".1.3.6.1.4.1.14988.1.1.1.5.1.1" 114 | is_tag = true 115 | conversion = "hwaddr" 116 | 117 | [[inputs.snmp.table.field]] 118 | name = "tx-rate" 119 | oid = ".1.3.6.1.4.1.14988.1.1.1.5.1.8" 120 | [[inputs.snmp.table.field]] 121 | name = "rx-rate" 122 | oid = ".1.3.6.1.4.1.14988.1.1.1.5.1.9" 123 | [[inputs.snmp.table.field]] 124 | name = "client-count" 125 | oid = ".1.3.6.1.4.1.14988.1.1.1.6.0" 126 | [[inputs.snmp.table.field]] 127 | name = "tx-signal" 128 | oid = ".1.3.6.1.4.1.14988.1.1.1.5.1.10" 129 | [[inputs.snmp.table.field]] 130 | name = "rx-signal" 131 | oid = ".1.3.6.1.4.1.14988.1.1.1.5.1.11" 132 | [[inputs.snmp.table.field]] 133 | name = "tx-bytes" 134 | oid = ".1.3.6.1.4.1.14988.1.1.1.5.1.4" 135 | [[inputs.snmp.table.field]] 136 | name = "rx-bytes" 137 | oid = ".1.3.6.1.4.1.14988.1.1.1.5.1.5" 138 | [[inputs.snmp.table.field]] 139 | name = "uptime" 140 | oid = ".1.3.6.1.4.1.14988.1.1.1.5.1.3" 141 | 142 | 143 | # Memory usage (storage/RAM) 144 | [[inputs.snmp.table]] 145 | name = "snmp-memory-usage" 146 | inherit_tags = ["hostname"] 147 | [[inputs.snmp.table.field]] 148 | name = "memory-name" 149 | oid = ".1.3.6.1.2.1.25.2.3.1.3" 150 | is_tag = true 151 | [[inputs.snmp.table.field]] 152 | name = "total-memory" 153 | oid = ".1.3.6.1.2.1.25.2.3.1.5" 154 | [[inputs.snmp.table.field]] 155 | name = "used-memory" 156 | oid = ".1.3.6.1.2.1.25.2.3.1.6" 157 | 158 | 159 | -------------------------------------------------------------------------------- /telegraf.d/rb760igs.conf: -------------------------------------------------------------------------------- 1 | [[inputs.snmp]] 2 | agents = [ "10.110.5.1:161" ] # Replace this with your router(s) IP/port 3 | interval = "60s" 4 | version = 1 5 | community = "public" 6 | 7 | # System 8 | [[inputs.snmp.field]] 9 | name = "hostname" 10 | oid = "SNMPv2-MIB::sysName.0" 11 | is_tag = true 12 | 13 | [[inputs.snmp.field]] 14 | name = "uptime" 15 | oid = "DISMAN-EVENT-MIB::sysUpTimeInstance" 16 | 17 | [[inputs.snmp.field]] 18 | name = "cpu0-load" 19 | oid = "HOST-RESOURCES-MIB::hrProcessorLoad.1" 20 | 21 | [[inputs.snmp.field]] 22 | name = "cpu1-load" 23 | oid = "HOST-RESOURCES-MIB::hrProcessorLoad.2" 24 | 25 | [[inputs.snmp.field]] 26 | name = "cpu2-load" 27 | oid = "HOST-RESOURCES-MIB::hrProcessorLoad.3" 28 | 29 | [[inputs.snmp.field]] 30 | name = "cpu3-load" 31 | oid = "HOST-RESOURCES-MIB::hrProcessorLoad.4" 32 | 33 | # Memory usage (storage/RAM) 34 | [[inputs.snmp.table]] 35 | name = "snmp-memory-usage" 36 | inherit_tags = ["hostname"] 37 | [[inputs.snmp.table.field]] 38 | name = "memory-name" 39 | oid = ".1.3.6.1.2.1.25.2.3.1.3" 40 | is_tag = true 41 | [[inputs.snmp.table.field]] 42 | name = "total-memory" 43 | oid = ".1.3.6.1.2.1.25.2.3.1.5" 44 | [[inputs.snmp.table.field]] 45 | name = "used-memory" 46 | oid = ".1.3.6.1.2.1.25.2.3.1.6" 47 | 48 | # Network 49 | # IF-MIB::ifTable contains counters on input and output traffic as well as errors and discards. 50 | [[inputs.snmp.table]] 51 | name = "interface" 52 | inherit_tags = [ "hostname" ] 53 | oid = "IF-MIB::ifTable" 54 | 55 | # Interface tag - used to identify interface in metrics database 56 | [[inputs.snmp.table.field]] 57 | name = "ifDescr" 58 | oid = "IF-MIB::ifDescr" 59 | is_tag = true 60 | 61 | # IF-MIB::ifXTable contains newer High Capacity (HC) counters that do not overflow as fast for a few of the ifTable counters 62 | [[inputs.snmp.table]] 63 | name = "interface" 64 | inherit_tags = [ "hostname" ] 65 | oid = "IF-MIB::ifXTable" 66 | 67 | # Interface tag - used to identify interface in metrics database 68 | [[inputs.snmp.table.field]] 69 | name = "ifDescr" 70 | oid = "IF-MIB::ifDescr" 71 | is_tag = true 72 | --------------------------------------------------------------------------------