├── .env ├── .github └── workflows │ └── action.yml ├── .grafana ├── .prometheus ├── LICENSE ├── Mikrotik-snmp-prometheus.json ├── README.md ├── docker-compose.yml ├── grafana └── provisioning │ ├── dashboards │ ├── Mikrotik-snmp-prometheus.json │ └── dashboard.yml │ └── datasources │ └── datasource.yml ├── prometheus ├── data │ └── .gitignore └── prometheus.yml ├── readme └── screen.png ├── run.sh └── snmp ├── Dockerfile ├── LICENSE ├── NOTICE ├── snmp.yml └── snmp_exporter /.env: -------------------------------------------------------------------------------- 1 | CURRENT_USER=1000:1000 2 | -------------------------------------------------------------------------------- /.github/workflows/action.yml: -------------------------------------------------------------------------------- 1 | name: deploy 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | 7 | lint: 8 | name: lint 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v2 12 | - name: Run Shellcheck 13 | uses: azohra/shell-linter@latest 14 | with: 15 | path: "run.sh" 16 | severity: "warning, error" 17 | 18 | test: 19 | name: test 20 | needs: lint 21 | runs-on: ubuntu-latest 22 | steps: 23 | - name: deploy with sh script 24 | run: curl -fsSL https://raw.githubusercontent.com/IgorKha/Grafana-Mikrotik/master/run.sh | bash -s -- 25 | 26 | - name: Test Grafana 27 | run: sleep 10 && curl -GLsS --retry 5 --retry-connrefused --retry-delay 2 'http://localhost:3000/api/health' 28 | 29 | - name: Test Prometheus 30 | run: curl -GLsS --retry 5 --retry-delay 2 "http://localhost:9090/-/ready" 31 | 32 | - name: Test snmp_exporter 33 | run: curl -ILsS --retry 5 --retry-delay 2 "http://localhost:9116" 34 | -------------------------------------------------------------------------------- /.grafana: -------------------------------------------------------------------------------- 1 | GF_SECURITY_ADMIN_USER=admin 2 | GF_SECURITY_ADMIN_PASSWORD=mikrotik 3 | GF_USERS_ALLOW_SIGN_UP=false 4 | -------------------------------------------------------------------------------- /.prometheus: -------------------------------------------------------------------------------- 1 | MIKROTIK_IP=192.168.88.1 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Grafana-Mikrotik 2 | 3 | ![logo](https://repository-images.githubusercontent.com/366494855/c62052b8-17c2-47f2-a3ae-0e397a3ef074) 4 | 5 | ![visitors](https://visitor-badge.laobi.icu/badge?page_id=IgorKha.Grafana-Mikrotik) 6 | ![example branch parameter](https://github.com/IgorKha/Grafana-Mikrotik/actions/workflows/action.yml/badge.svg?branch=master) 7 | ![mikrotikOS](https://img.shields.io/badge/Mikrotik_ROS-v7.4-blue) 8 | ![Grafana](https://img.shields.io/badge/Grafana-v9.0.5-orange?logo=grafana) 9 | ![Prometheus](https://img.shields.io/badge/Prometheus-v2.37.0-red?logo=prometheus) 10 | ![snmp_exporter](https://img.shields.io/badge/snmp__exporter-v0.20.0-red?logo=prometheus) 11 | 12 | [![Donate using Liberapay](https://liberapay.com/assets/widgets/donate.svg)](https://liberapay.com/~1772367/donate) 13 | 14 | --- 15 | 16 | ## 🐳 Deploy with docker-compose 17 | 18 | ### Deploy with bash script 19 | 20 | ```console 21 | git clone https://github.com/IgorKha/Grafana-Mikrotik.git 22 | cd ./Grafana-Mikrotik 23 | bash ./run.sh --config 24 | ``` 25 | 26 | ```console 27 | You can also pass some arguments to script to set some these options: 28 | 29 | --config: change the user and password to grafana and specify the mikrotik IP address 30 | 31 | --stop: stop docker containers 32 | 33 | --help 34 | ``` 35 | 36 | For example: 37 | 38 | ```console 39 | bash run.sh --config 40 | ``` 41 | 42 | [![asciicast](https://asciinema.org/a/nOhuc7LvI6bRWbg7dcvqFQ4Kc.png)](https://asciinema.org/a/nOhuc7LvI6bRWbg7dcvqFQ4Kc) 43 | 44 | ### deploy with docker-compose manual 45 | 46 | 1.Change targets ip (192.168.88.1) into file prometheus/prometheus.yml 47 | 48 | 2.Run 49 | 50 | ```console 51 | docker-compose up -d 52 | ``` 53 | 54 | 3.Open [localhost:3000](http://localhost:3000) 55 | 56 | * Grafana login: `admin` 57 | 58 | * Password: `mikrotik` 59 | 60 | If you want to change the credentials, then edit the ".env" file 61 | 62 | --- 63 | 64 | ## Manual deploy 65 | 66 | 1.add into prometheus.yml 67 | 68 | ```yml 69 | - job_name: Mikrotik 70 | static_configs: 71 | - targets: 72 | - 192.168.88.1 # SNMP device IP. 73 | metrics_path: /snmp 74 | params: 75 | module: [mikrotik] 76 | relabel_configs: 77 | - source_labels: [__address__] 78 | target_label: __param_target 79 | - source_labels: [__param_target] 80 | target_label: instance 81 | - target_label: __address__ 82 | replacement: localhost:9116 # The SNMP exporter's real hostname:port. 83 | ``` 84 | 85 | 2.Configure Prometheus and run /snmp/snmp_exporter 86 | 87 | 3.Add dashboard 88 | 89 | --- 90 | 91 | ### Docker snmp_exporter (deprecated) 92 | 93 | [![Docker Pulls](https://img.shields.io/docker/pulls/mashinkopochinko/snmp_exporter_mikrotik?logo=docker)](https://hub.docker.com/repository/docker/mashinkopochinko/snmp_exporter_mikrotik) 94 | 95 | > amd64-linux container 96 | 97 | ```console 98 | sudo docker run -d -p 9116:9116 mashinkopochinko/snmp_exporter_mikrotik:latest 99 | ``` 100 | 101 | --- 102 | ![img1](/readme/screen.png) 103 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3.9' 2 | 3 | services: 4 | grafana: 5 | image: grafana/grafana:9.0.5 6 | env_file: 7 | - .grafana 8 | container_name: mk_grafana 9 | restart: always 10 | volumes: 11 | - ./grafana/provisioning/:/etc/grafana/provisioning/ 12 | ports: 13 | - "3000:3000" 14 | 15 | prometheus: 16 | image: prom/prometheus 17 | env_file: 18 | - .prometheus 19 | user: ${CURRENT_USER} 20 | container_name: mk_prometheus 21 | restart: always 22 | volumes: 23 | - ./prometheus/:/etc/prometheus 24 | - ./prometheus/data/:/prometheus 25 | ports: 26 | - "9090:9090" 27 | 28 | snmp_exporter: 29 | image: prom/snmp-exporter 30 | container_name: mk_snmp_exporter 31 | restart: always 32 | volumes: 33 | - ./snmp/:/etc/snmp_exporter/ 34 | ports: 35 | - "9116:9116" 36 | depends_on: 37 | - prometheus 38 | -------------------------------------------------------------------------------- /grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- 1 | apiVersion: 1 2 | 3 | providers: 4 | - name: 'Prometheus' 5 | orgId: 1 6 | folder: '' 7 | type: file 8 | disableDeletion: false 9 | editable: true 10 | options: 11 | path: /etc/grafana/provisioning/dashboards -------------------------------------------------------------------------------- /grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- 1 | # config file version 2 | apiVersion: 1 3 | 4 | # list of datasources that should be deleted from the database 5 | deleteDatasources: 6 | - name: Prometheus 7 | orgId: 1 8 | 9 | # list of datasources to insert/update depending 10 | # whats available in the database 11 | datasources: 12 | # name of the datasource. Required 13 | - name: Prometheus 14 | # datasource type. Required 15 | type: prometheus 16 | # access mode. direct or proxy. Required 17 | access: proxy 18 | # org id. will default to orgId 1 if not specified 19 | orgId: 1 20 | # url 21 | url: http://mk_prometheus:9090 22 | # database password, if used 23 | password: 24 | # database user, if used 25 | user: 26 | # database name, if used 27 | database: 28 | # enable/disable basic auth 29 | basicAuth: false 30 | # basic auth username, if used 31 | basicAuthUser: 32 | # basic auth password, if used 33 | basicAuthPassword: 34 | # enable/disable with credentials headers 35 | withCredentials: 36 | # mark as default datasource. Max one per org 37 | isDefault: true 38 | # fields that will be converted to json and stored in json_data 39 | jsonData: 40 | graphiteVersion: "1.1" 41 | tlsAuth: false 42 | tlsAuthWithCACert: false 43 | # json object of data that will be encrypted. 44 | secureJsonData: 45 | tlsCACert: "..." 46 | tlsClientCert: "..." 47 | tlsClientKey: "..." 48 | version: 1 49 | # allow users to edit datasources from the UI. 50 | editable: true -------------------------------------------------------------------------------- /prometheus/data/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /prometheus/prometheus.yml: -------------------------------------------------------------------------------- 1 | # Sample config for Prometheus. 2 | 3 | global: 4 | scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute. 5 | evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute. 6 | # scrape_timeout is set to the global default (10s). 7 | 8 | # Attach these labels to any time series or alerts when communicating with 9 | # external systems (federation, remote storage, Alertmanager). 10 | external_labels: 11 | monitor: 'Mikrotik' 12 | 13 | # Alertmanager configuration 14 | alerting: 15 | alertmanagers: 16 | - static_configs: 17 | - targets: ['localhost:9093'] 18 | 19 | # Load rules once and periodically evaluate them according to the global 'evaluation_interval'. 20 | rule_files: 21 | # - "first_rules.yml" 22 | # - "second_rules.yml" 23 | 24 | # A scrape configuration containing exactly one endpoint to scrape: 25 | # Here it's Prometheus itself. 26 | scrape_configs: 27 | # The job name is added as a label `job=` to any timeseries scraped from this config. 28 | - job_name: 'prometheus' 29 | 30 | # Override the global default and scrape targets from this job every 5 seconds. 31 | scrape_interval: 10s 32 | scrape_timeout: 10s 33 | tls_config: 34 | insecure_skip_verify: true 35 | # metrics_path defaults to '/metrics' 36 | # scheme defaults to 'http'. 37 | 38 | #static_configs: 39 | #- targets: ['localhost:9090'] 40 | 41 | - job_name: Mikrotik 42 | static_configs: 43 | - targets: 44 | - 192.168.88.1 # mikrotik_ip 45 | metrics_path: /snmp 46 | params: 47 | module: [mikrotik] 48 | relabel_configs: 49 | - source_labels: [__address__] 50 | target_label: __param_target 51 | - source_labels: [__param_target] 52 | target_label: instance 53 | - target_label: __address__ 54 | replacement: mk_snmp_exporter:9116 # The SNMP exporter's real hostname:port. 55 | -------------------------------------------------------------------------------- /readme/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorKha/Grafana-Mikrotik/da35426cfddf3ce0a664fe6adc79d9d2e6766a4e/readme/screen.png -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ############################################################################ 4 | # You can also pass some arguments to script to set some these options: 5 | # 6 | # --config: change the user and password to grafana and specify the mikrotik IP address 7 | # --stop: stop docker containers 8 | # 9 | # For example: 10 | # bash run.sh --config 11 | # 12 | ############################################################################ 13 | 14 | set -e 15 | 16 | REPO=Grafana-Mikrotik 17 | ENV_FILE=${ENV_FILE:-.env} 18 | ENV_FILE_GF=${ENV_FILE_GF:-.grafana} 19 | ENV_FILE_PROMETHEUS=${ENV_FILE_PROMETHEU:-.prometheus} 20 | 21 | #? Colors 22 | RED='\033[31m' 23 | GREEN='\033[32m' 24 | YELLOW='\033[33m' 25 | BLUE='\033[34m' 26 | BOLD='\033[1m' 27 | RESET='\033[m' #? No Color 28 | 29 | BOLD='\033[1m' 30 | 31 | ask() { 32 | local prompt default reply 33 | 34 | if [[ ${2} = 'Y' ]]; then 35 | prompt='Y/n' 36 | default='Y' 37 | elif [[ ${2} = 'N' ]]; then 38 | prompt='y/N' 39 | default='N' 40 | else 41 | prompt='y/n' 42 | default='' 43 | fi 44 | 45 | while true; do 46 | 47 | #? Ask the question (not using "read -p" as it uses stderr not stdout) 48 | echo -n "$1 [${prompt}] " 49 | 50 | #? Read the answer (use /dev/tty in case stdin is redirected from somewhere else) 51 | read -r reply /dev/null 2>&1 || { 68 | fmt_error "$* is not installed. Please install $* first." 69 | exit 1 70 | } 71 | } 72 | 73 | fmt_error() { 74 | echo -e "\n${BOLD}${RED}Error: $*${RESET}\n" >&2 75 | } 76 | 77 | help() { 78 | if [ "${HELP}" = yes ]; then 79 | sed -n -e 's/^# //' -e '3,12p;' "$0" 80 | exit 1 81 | return 82 | fi 83 | } 84 | 85 | clone_git() { 86 | 87 | echo -e "${BLUE}Git cloning ${REPO}...${RESET}" 88 | git clone --depth=1 https://github.com/IgorKha/${REPO}.git || 89 | { 90 | fmt_error "git clone of ${REPO} repo failed" 91 | exit 1 92 | } 93 | 94 | echo 95 | } 96 | 97 | router_ip() { 98 | if [[ "${CONFIG}" = yes ]]; then 99 | IP=$(grep -R 'MIKROTIK_IP' "${ENV_FILE_PROMETHEUS}" 2>&1 | cut -d= -f2) 100 | echo -e "\n${BLUE}====================================" 101 | echo -e "\n${BOLD}Prometheus${RESET}\n" 102 | if ask "Change target mikrotik IP address ? (current ${IP})" Y; then 103 | read -rp 'Enter target mikrotik IP address: ' IP 104 | if [ -d "./${REPO}" ]; then 105 | sed -ri -e '/mikrotik_ip/s/(- ).*( #.*)/\1'"${IP}"'\2/g' \ 106 | ${REPO}/prometheus/prometheus.yml 107 | sed -ri -e 's/^(MIKROTIK_IP=)(.*)$/\1'"$IP"'/g' "${ENV_FILE_PROMETHEUS}" 108 | echo -e "\n${GREEN}... Prometheus target IP changed to ${IP}" 109 | else 110 | sed -ri -e '/mikrotik_ip/s/(- ).*( #.*)/\1'"${IP}"'\2/g' \ 111 | ./prometheus/prometheus.yml 112 | sed -ri -e 's/^(MIKROTIK_IP=)(.*)$/\1'"${IP}"'/g' "${ENV_FILE_PROMETHEUS}" 113 | echo -e "\n${GREEN}... Prometheus target IP changed to ${IP}" 114 | fi 115 | return 116 | fi 117 | echo -e "\n${BLUE}...Skipped step" 118 | return 119 | fi 120 | } 121 | 122 | # snmp_on() { 123 | # if [ "$CONFIG" = yes ]; then 124 | # echo -e "\n${BLUE}====================================" 125 | # echo -e "${BOLD}Mikrotik SNMP ACTIVATION${RESET}" 126 | # if ask "Activate snmp mikrotik using ssh?" N; then 127 | # read -rp 'Enter login: ' MK_LOGIN 128 | # # read -rsp 'Enter password: ' MK_PASSWD 129 | 130 | # COMM=" 131 | # snmp 132 | # " 133 | # ssh ${MK_LOGIN}@$IP "${COMM}" 134 | 135 | # else 136 | # echo "skipped" 137 | # fi 138 | # return 139 | # fi 140 | # } 141 | 142 | grafana_credentials() { 143 | if [[ "${CONFIG}" = yes ]]; then 144 | echo -e "\n${YELLOW}====================================" 145 | echo -e "\n${BOLD}Grafana${RESET}\n" 146 | if ask "Change default credentials Grafana ?" N; then 147 | read -rp 'Enter grafana Username: ' GF_USER 148 | read -rsp 'Enter grafana Password: ' GF_PASSWD 149 | 150 | sed -ri -e 's/^(GF_SECURITY_ADMIN_USER=)(.*)$/\1'"${GF_USER}"'/g' "${ENV_FILE_GF}" 151 | sed -ri -e 's/^(GF_SECURITY_ADMIN_PASSWORD=)(.*)$/\1'"${GF_PASSWD}"'/g' "${ENV_FILE_GF}" 152 | else 153 | echo -e "Default Grafana: 154 | User: ${YELLOW}admin${RESET} 155 | Password: ${YELLOW}mikrotik${RESET}" 156 | fi 157 | return 158 | fi 159 | } 160 | 161 | docker-cmd() { 162 | if [[ "${STOP}" = yes ]]; then 163 | if [ -d "./${REPO}" ]; then 164 | cd ${REPO} && docker compose down 165 | else 166 | docker compose down 167 | fi 168 | else 169 | if [[ -d "./${REPO}" ]]; then 170 | cd ${REPO} && docker compose up -d 171 | print_success 172 | else 173 | docker compose up -d 174 | print_success 175 | fi 176 | fi 177 | } 178 | 179 | print_success() { 180 | echo "=============================================" 181 | echo -e "${GREEN}Grafana http://localhost:3000" 182 | echo -e "Prometheus http://localhost:9090/targets${RESET}" 183 | } 184 | 185 | main() { 186 | 187 | #? Parse arguments 188 | while [[ $# -gt 0 ]]; do 189 | case $1 in 190 | --help) HELP=yes ;; 191 | --config) CONFIG=yes ;; 192 | --stop) STOP=yes ;; 193 | esac 194 | shift 195 | done 196 | 197 | help 198 | 199 | command_exists git 200 | command_exists docker 201 | 202 | #? init 203 | if [[ -d "./${REPO}" ]]; then 204 | ENV_FILE=${REPO}/.env 205 | ENV_FILE_GF=${REPO}/.grafana 206 | ENV_FILE_PROMETHEUS=${REPO}/.prometheus 207 | elif [[ ! -e ${ENV_FILE} ]]; then 208 | clone_git 209 | ENV_FILE=${REPO}/.env 210 | ENV_FILE_GF=${REPO}/.grafana 211 | ENV_FILE_PROMETHEUS=${REPO}/.prometheus 212 | fi 213 | 214 | router_ip 215 | # snmp_on 216 | grafana_credentials 217 | 218 | # Change UID:GID prometheus container to current user 219 | sed -ri -e 's/^(CURRENT_USER=)(.*)$/\1'"$(id -u)\:$(id -g)"'/g' "${ENV_FILE}" 220 | 221 | docker-cmd 222 | } 223 | 224 | main "$@" 225 | -------------------------------------------------------------------------------- /snmp/Dockerfile: -------------------------------------------------------------------------------- 1 | ARG ARCH="amd64" 2 | ARG OS="linux" 3 | FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest 4 | LABEL maintainer="The Prometheus Authors " 5 | LABEL Software="snmp_exporter prometheus for mikrotik" 6 | LABEL Author="IgorKha" 7 | 8 | ARG ARCH="amd64" 9 | ARG OS="linux" 10 | COPY snmp_exporter /bin/snmp_exporter 11 | COPY snmp.yml /etc/snmp_exporter/snmp.yml 12 | 13 | EXPOSE 9116 14 | ENTRYPOINT [ "/bin/snmp_exporter" ] 15 | CMD [ "--config.file=/etc/snmp_exporter/snmp.yml" ] -------------------------------------------------------------------------------- /snmp/LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /snmp/NOTICE: -------------------------------------------------------------------------------- 1 | Prometheus SNMP exporter 2 | Copyright 2016 The Prometheus Authors 3 | -------------------------------------------------------------------------------- /snmp/snmp.yml: -------------------------------------------------------------------------------- 1 | # WARNING: This file was auto-generated using snmp_exporter generator, manual changes will be lost. 2 | auths: 3 | public_v2: 4 | community: public 5 | security_level: noAuthNoPriv 6 | auth_protocol: MD5 7 | priv_protocol: DES 8 | version: 2 9 | modules: 10 | mikrotik: 11 | walk: 12 | - 1.3.6.1.2.1.2 13 | - 1.3.6.1.2.1.25 14 | - 1.3.6.1.2.1.31 15 | - 1.3.6.1.4.1.14988 16 | - 1.3.6.1.4.1.2021.10.1.1 17 | - 1.3.6.1.4.1.2021.10.1.2 18 | - 1.3.6.1.2.1.1.5.0 19 | get: 20 | - 1.3.6.1.2.1.1.1.0 21 | - 1.3.6.1.2.1.1.3.0 22 | metrics: 23 | - name: sysDescr 24 | oid: 1.3.6.1.2.1.1.1 25 | type: DisplayString 26 | help: A textual description of the entity - 1.3.6.1.2.1.1.1 27 | - name: sysIdentity 28 | oid: 1.3.6.1.2.1.1.5.0 29 | type: DisplayString 30 | help: A textual description of the system identity - 1.3.6.1.2.1.1.5.0 31 | - name: sysUpTime 32 | oid: 1.3.6.1.2.1.1.3 33 | type: gauge 34 | help: The time (in hundredths of a second) since the network management portion 35 | of the system was last re-initialized. - 1.3.6.1.2.1.1.3 36 | - name: ifNumber 37 | oid: 1.3.6.1.2.1.2.1 38 | type: gauge 39 | help: The number of network interfaces (regardless of their current state) present 40 | on this system. - 1.3.6.1.2.1.2.1 41 | - name: ifIndex 42 | oid: 1.3.6.1.2.1.2.2.1.1 43 | type: gauge 44 | help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1 45 | indexes: 46 | - labelname: ifIndex 47 | type: gauge 48 | lookups: 49 | - labels: 50 | - ifIndex 51 | labelname: ifName 52 | oid: 1.3.6.1.2.1.31.1.1.1.1 53 | type: DisplayString 54 | - name: ifDescr 55 | oid: 1.3.6.1.2.1.2.2.1.2 56 | type: DisplayString 57 | help: A textual string containing information about the interface - 1.3.6.1.2.1.2.2.1.2 58 | indexes: 59 | - labelname: ifIndex 60 | type: gauge 61 | lookups: 62 | - labels: 63 | - ifIndex 64 | labelname: ifName 65 | oid: 1.3.6.1.2.1.31.1.1.1.1 66 | type: DisplayString 67 | - name: ifType 68 | oid: 1.3.6.1.2.1.2.2.1.3 69 | type: EnumAsInfo 70 | help: The type of interface - 1.3.6.1.2.1.2.2.1.3 71 | indexes: 72 | - labelname: ifIndex 73 | type: gauge 74 | lookups: 75 | - labels: 76 | - ifIndex 77 | labelname: ifName 78 | oid: 1.3.6.1.2.1.31.1.1.1.1 79 | type: DisplayString 80 | enum_values: 81 | 1: other 82 | 2: regular1822 83 | 3: hdh1822 84 | 4: ddnX25 85 | 5: rfc877x25 86 | 6: ethernetCsmacd 87 | 7: iso88023Csmacd 88 | 8: iso88024TokenBus 89 | 9: iso88025TokenRing 90 | 10: iso88026Man 91 | 11: starLan 92 | 12: proteon10Mbit 93 | 13: proteon80Mbit 94 | 14: hyperchannel 95 | 15: fddi 96 | 16: lapb 97 | 17: sdlc 98 | 18: ds1 99 | 19: e1 100 | 20: basicISDN 101 | 21: primaryISDN 102 | 22: propPointToPointSerial 103 | 23: ppp 104 | 24: softwareLoopback 105 | 25: eon 106 | 26: ethernet3Mbit 107 | 27: nsip 108 | 28: slip 109 | 29: ultra 110 | 30: ds3 111 | 31: sip 112 | 32: frameRelay 113 | 33: rs232 114 | 34: para 115 | 35: arcnet 116 | 36: arcnetPlus 117 | 37: atm 118 | 38: miox25 119 | 39: sonet 120 | 40: x25ple 121 | 41: iso88022llc 122 | 42: localTalk 123 | 43: smdsDxi 124 | 44: frameRelayService 125 | 45: v35 126 | 46: hssi 127 | 47: hippi 128 | 48: modem 129 | 49: aal5 130 | 50: sonetPath 131 | 51: sonetVT 132 | 52: smdsIcip 133 | 53: propVirtual 134 | 54: propMultiplexor 135 | 55: ieee80212 136 | 56: fibreChannel 137 | 57: hippiInterface 138 | 58: frameRelayInterconnect 139 | 59: aflane8023 140 | 60: aflane8025 141 | 61: cctEmul 142 | 62: fastEther 143 | 63: isdn 144 | 64: v11 145 | 65: v36 146 | 66: g703at64k 147 | 67: g703at2mb 148 | 68: qllc 149 | 69: fastEtherFX 150 | 70: channel 151 | 71: ieee80211 152 | 72: ibm370parChan 153 | 73: escon 154 | 74: dlsw 155 | 75: isdns 156 | 76: isdnu 157 | 77: lapd 158 | 78: ipSwitch 159 | 79: rsrb 160 | 80: atmLogical 161 | 81: ds0 162 | 82: ds0Bundle 163 | 83: bsc 164 | 84: async 165 | 85: cnr 166 | 86: iso88025Dtr 167 | 87: eplrs 168 | 88: arap 169 | 89: propCnls 170 | 90: hostPad 171 | 91: termPad 172 | 92: frameRelayMPI 173 | 93: x213 174 | 94: adsl 175 | 95: radsl 176 | 96: sdsl 177 | 97: vdsl 178 | 98: iso88025CRFPInt 179 | 99: myrinet 180 | 100: voiceEM 181 | 101: voiceFXO 182 | 102: voiceFXS 183 | 103: voiceEncap 184 | 104: voiceOverIp 185 | 105: atmDxi 186 | 106: atmFuni 187 | 107: atmIma 188 | 108: pppMultilinkBundle 189 | 109: ipOverCdlc 190 | 110: ipOverClaw 191 | 111: stackToStack 192 | 112: virtualIpAddress 193 | 113: mpc 194 | 114: ipOverAtm 195 | 115: iso88025Fiber 196 | 116: tdlc 197 | 117: gigabitEthernet 198 | 118: hdlc 199 | 119: lapf 200 | 120: v37 201 | 121: x25mlp 202 | 122: x25huntGroup 203 | 123: transpHdlc 204 | 124: interleave 205 | 125: fast 206 | 126: ip 207 | 127: docsCableMaclayer 208 | 128: docsCableDownstream 209 | 129: docsCableUpstream 210 | 130: a12MppSwitch 211 | 131: tunnel 212 | 132: coffee 213 | 133: ces 214 | 134: atmSubInterface 215 | 135: l2vlan 216 | 136: l3ipvlan 217 | 137: l3ipxvlan 218 | 138: digitalPowerline 219 | 139: mediaMailOverIp 220 | 140: dtm 221 | 141: dcn 222 | 142: ipForward 223 | 143: msdsl 224 | 144: ieee1394 225 | 145: if-gsn 226 | 146: dvbRccMacLayer 227 | 147: dvbRccDownstream 228 | 148: dvbRccUpstream 229 | 149: atmVirtual 230 | 150: mplsTunnel 231 | 151: srp 232 | 152: voiceOverAtm 233 | 153: voiceOverFrameRelay 234 | 154: idsl 235 | 155: compositeLink 236 | 156: ss7SigLink 237 | 157: propWirelessP2P 238 | 158: frForward 239 | 159: rfc1483 240 | 160: usb 241 | 161: ieee8023adLag 242 | 162: bgppolicyaccounting 243 | 163: frf16MfrBundle 244 | 164: h323Gatekeeper 245 | 165: h323Proxy 246 | 166: mpls 247 | 167: mfSigLink 248 | 168: hdsl2 249 | 169: shdsl 250 | 170: ds1FDL 251 | 171: pos 252 | 172: dvbAsiIn 253 | 173: dvbAsiOut 254 | 174: plc 255 | 175: nfas 256 | 176: tr008 257 | 177: gr303RDT 258 | 178: gr303IDT 259 | 179: isup 260 | 180: propDocsWirelessMaclayer 261 | 181: propDocsWirelessDownstream 262 | 182: propDocsWirelessUpstream 263 | 183: hiperlan2 264 | 184: propBWAp2Mp 265 | 185: sonetOverheadChannel 266 | 186: digitalWrapperOverheadChannel 267 | 187: aal2 268 | 188: radioMAC 269 | 189: atmRadio 270 | 190: imt 271 | 191: mvl 272 | 192: reachDSL 273 | 193: frDlciEndPt 274 | 194: atmVciEndPt 275 | 195: opticalChannel 276 | 196: opticalTransport 277 | 197: propAtm 278 | 198: voiceOverCable 279 | 199: infiniband 280 | 200: teLink 281 | 201: q2931 282 | 202: virtualTg 283 | 203: sipTg 284 | 204: sipSig 285 | 205: docsCableUpstreamChannel 286 | 206: econet 287 | 207: pon155 288 | 208: pon622 289 | 209: bridge 290 | 210: linegroup 291 | 211: voiceEMFGD 292 | 212: voiceFGDEANA 293 | 213: voiceDID 294 | 214: mpegTransport 295 | 215: sixToFour 296 | 216: gtp 297 | 217: pdnEtherLoop1 298 | 218: pdnEtherLoop2 299 | 219: opticalChannelGroup 300 | 220: homepna 301 | 221: gfp 302 | 222: ciscoISLvlan 303 | 223: actelisMetaLOOP 304 | 224: fcipLink 305 | 225: rpr 306 | 226: qam 307 | 227: lmp 308 | 228: cblVectaStar 309 | 229: docsCableMCmtsDownstream 310 | 230: adsl2 311 | 231: macSecControlledIF 312 | 232: macSecUncontrolledIF 313 | 233: aviciOpticalEther 314 | 234: atmbond 315 | 235: voiceFGDOS 316 | 236: mocaVersion1 317 | 237: ieee80216WMAN 318 | 238: adsl2plus 319 | 239: dvbRcsMacLayer 320 | 240: dvbTdm 321 | 241: dvbRcsTdma 322 | 242: x86Laps 323 | 243: wwanPP 324 | 244: wwanPP2 325 | 245: voiceEBS 326 | 246: ifPwType 327 | 247: ilan 328 | 248: pip 329 | 249: aluELP 330 | 250: gpon 331 | 251: vdsl2 332 | 252: capwapDot11Profile 333 | 253: capwapDot11Bss 334 | 254: capwapWtpVirtualRadio 335 | 255: bits 336 | 256: docsCableUpstreamRfPort 337 | 257: cableDownstreamRfPort 338 | 258: vmwareVirtualNic 339 | 259: ieee802154 340 | 260: otnOdu 341 | 261: otnOtu 342 | 262: ifVfiType 343 | 263: g9981 344 | 264: g9982 345 | 265: g9983 346 | 266: aluEpon 347 | 267: aluEponOnu 348 | 268: aluEponPhysicalUni 349 | 269: aluEponLogicalLink 350 | 270: aluGponOnu 351 | 271: aluGponPhysicalUni 352 | 272: vmwareNicTeam 353 | 277: docsOfdmDownstream 354 | 278: docsOfdmaUpstream 355 | 279: gfast 356 | 280: sdci 357 | 281: xboxWireless 358 | 282: fastdsl 359 | 283: docsCableScte55d1FwdOob 360 | 284: docsCableScte55d1RetOob 361 | 285: docsCableScte55d2DsOob 362 | 286: docsCableScte55d2UsOob 363 | 287: docsCableNdf 364 | 288: docsCableNdr 365 | 289: ptm 366 | 290: ghn 367 | 291: otnOtsi 368 | 292: otnOtuc 369 | 293: otnOduc 370 | 294: otnOtsig 371 | 295: microwaveCarrierTermination 372 | 296: microwaveRadioLinkTerminal 373 | 297: ieee8021axDrni 374 | 298: ax25 375 | 299: ieee19061nanocom 376 | 300: cpri 377 | 301: omni 378 | 302: roe 379 | - name: ifMtu 380 | oid: 1.3.6.1.2.1.2.2.1.4 381 | type: gauge 382 | help: The size of the largest packet which can be sent/received on the interface, 383 | specified in octets - 1.3.6.1.2.1.2.2.1.4 384 | indexes: 385 | - labelname: ifIndex 386 | type: gauge 387 | lookups: 388 | - labels: 389 | - ifIndex 390 | labelname: ifName 391 | oid: 1.3.6.1.2.1.31.1.1.1.1 392 | type: DisplayString 393 | - name: ifSpeed 394 | oid: 1.3.6.1.2.1.2.2.1.5 395 | type: gauge 396 | help: An estimate of the interface's current bandwidth in bits per second - 1.3.6.1.2.1.2.2.1.5 397 | indexes: 398 | - labelname: ifIndex 399 | type: gauge 400 | lookups: 401 | - labels: 402 | - ifIndex 403 | labelname: ifName 404 | oid: 1.3.6.1.2.1.31.1.1.1.1 405 | type: DisplayString 406 | - name: ifPhysAddress 407 | oid: 1.3.6.1.2.1.2.2.1.6 408 | type: PhysAddress48 409 | help: The interface's address at its protocol sub-layer - 1.3.6.1.2.1.2.2.1.6 410 | indexes: 411 | - labelname: ifIndex 412 | type: gauge 413 | lookups: 414 | - labels: 415 | - ifIndex 416 | labelname: ifName 417 | oid: 1.3.6.1.2.1.31.1.1.1.1 418 | type: DisplayString 419 | - name: ifAdminStatus 420 | oid: 1.3.6.1.2.1.2.2.1.7 421 | type: gauge 422 | help: The desired state of the interface - 1.3.6.1.2.1.2.2.1.7 423 | indexes: 424 | - labelname: ifIndex 425 | type: gauge 426 | lookups: 427 | - labels: 428 | - ifIndex 429 | labelname: ifName 430 | oid: 1.3.6.1.2.1.31.1.1.1.1 431 | type: DisplayString 432 | enum_values: 433 | 1: up 434 | 2: down 435 | 3: testing 436 | - name: ifOperStatus 437 | oid: 1.3.6.1.2.1.2.2.1.8 438 | type: gauge 439 | help: The current operational state of the interface - 1.3.6.1.2.1.2.2.1.8 440 | indexes: 441 | - labelname: ifIndex 442 | type: gauge 443 | lookups: 444 | - labels: 445 | - ifIndex 446 | labelname: ifName 447 | oid: 1.3.6.1.2.1.31.1.1.1.1 448 | type: DisplayString 449 | enum_values: 450 | 1: up 451 | 2: down 452 | 3: testing 453 | 4: unknown 454 | 5: dormant 455 | 6: notPresent 456 | 7: lowerLayerDown 457 | - name: ifLastChange 458 | oid: 1.3.6.1.2.1.2.2.1.9 459 | type: gauge 460 | help: The value of sysUpTime at the time the interface entered its current operational 461 | state - 1.3.6.1.2.1.2.2.1.9 462 | indexes: 463 | - labelname: ifIndex 464 | type: gauge 465 | lookups: 466 | - labels: 467 | - ifIndex 468 | labelname: ifName 469 | oid: 1.3.6.1.2.1.31.1.1.1.1 470 | type: DisplayString 471 | - name: ifInOctets 472 | oid: 1.3.6.1.2.1.2.2.1.10 473 | type: counter 474 | help: The total number of octets received on the interface, including framing 475 | characters - 1.3.6.1.2.1.2.2.1.10 476 | indexes: 477 | - labelname: ifIndex 478 | type: gauge 479 | lookups: 480 | - labels: 481 | - ifIndex 482 | labelname: ifName 483 | oid: 1.3.6.1.2.1.31.1.1.1.1 484 | type: DisplayString 485 | - name: ifInUcastPkts 486 | oid: 1.3.6.1.2.1.2.2.1.11 487 | type: counter 488 | help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, 489 | which were not addressed to a multicast or broadcast address at this sub-layer 490 | - 1.3.6.1.2.1.2.2.1.11 491 | indexes: 492 | - labelname: ifIndex 493 | type: gauge 494 | lookups: 495 | - labels: 496 | - ifIndex 497 | labelname: ifName 498 | oid: 1.3.6.1.2.1.31.1.1.1.1 499 | type: DisplayString 500 | - name: ifInNUcastPkts 501 | oid: 1.3.6.1.2.1.2.2.1.12 502 | type: counter 503 | help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, 504 | which were addressed to a multicast or broadcast address at this sub-layer - 505 | 1.3.6.1.2.1.2.2.1.12 506 | indexes: 507 | - labelname: ifIndex 508 | type: gauge 509 | lookups: 510 | - labels: 511 | - ifIndex 512 | labelname: ifName 513 | oid: 1.3.6.1.2.1.31.1.1.1.1 514 | type: DisplayString 515 | - name: ifInDiscards 516 | oid: 1.3.6.1.2.1.2.2.1.13 517 | type: counter 518 | help: The number of inbound packets which were chosen to be discarded even though 519 | no errors had been detected to prevent their being deliverable to a higher-layer 520 | protocol - 1.3.6.1.2.1.2.2.1.13 521 | indexes: 522 | - labelname: ifIndex 523 | type: gauge 524 | lookups: 525 | - labels: 526 | - ifIndex 527 | labelname: ifName 528 | oid: 1.3.6.1.2.1.31.1.1.1.1 529 | type: DisplayString 530 | - name: ifInErrors 531 | oid: 1.3.6.1.2.1.2.2.1.14 532 | type: counter 533 | help: For packet-oriented interfaces, the number of inbound packets that contained 534 | errors preventing them from being deliverable to a higher-layer protocol - 1.3.6.1.2.1.2.2.1.14 535 | indexes: 536 | - labelname: ifIndex 537 | type: gauge 538 | lookups: 539 | - labels: 540 | - ifIndex 541 | labelname: ifName 542 | oid: 1.3.6.1.2.1.31.1.1.1.1 543 | type: DisplayString 544 | - name: ifInUnknownProtos 545 | oid: 1.3.6.1.2.1.2.2.1.15 546 | type: counter 547 | help: For packet-oriented interfaces, the number of packets received via the interface 548 | which were discarded because of an unknown or unsupported protocol - 1.3.6.1.2.1.2.2.1.15 549 | indexes: 550 | - labelname: ifIndex 551 | type: gauge 552 | lookups: 553 | - labels: 554 | - ifIndex 555 | labelname: ifName 556 | oid: 1.3.6.1.2.1.31.1.1.1.1 557 | type: DisplayString 558 | - name: ifOutOctets 559 | oid: 1.3.6.1.2.1.2.2.1.16 560 | type: counter 561 | help: The total number of octets transmitted out of the interface, including framing 562 | characters - 1.3.6.1.2.1.2.2.1.16 563 | indexes: 564 | - labelname: ifIndex 565 | type: gauge 566 | lookups: 567 | - labels: 568 | - ifIndex 569 | labelname: ifName 570 | oid: 1.3.6.1.2.1.31.1.1.1.1 571 | type: DisplayString 572 | - name: ifOutUcastPkts 573 | oid: 1.3.6.1.2.1.2.2.1.17 574 | type: counter 575 | help: The total number of packets that higher-level protocols requested be transmitted, 576 | and which were not addressed to a multicast or broadcast address at this sub-layer, 577 | including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.17 578 | indexes: 579 | - labelname: ifIndex 580 | type: gauge 581 | lookups: 582 | - labels: 583 | - ifIndex 584 | labelname: ifName 585 | oid: 1.3.6.1.2.1.31.1.1.1.1 586 | type: DisplayString 587 | - name: ifOutNUcastPkts 588 | oid: 1.3.6.1.2.1.2.2.1.18 589 | type: counter 590 | help: The total number of packets that higher-level protocols requested be transmitted, 591 | and which were addressed to a multicast or broadcast address at this sub-layer, 592 | including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.18 593 | indexes: 594 | - labelname: ifIndex 595 | type: gauge 596 | lookups: 597 | - labels: 598 | - ifIndex 599 | labelname: ifName 600 | oid: 1.3.6.1.2.1.31.1.1.1.1 601 | type: DisplayString 602 | - name: ifOutDiscards 603 | oid: 1.3.6.1.2.1.2.2.1.19 604 | type: counter 605 | help: The number of outbound packets which were chosen to be discarded even though 606 | no errors had been detected to prevent their being transmitted - 1.3.6.1.2.1.2.2.1.19 607 | indexes: 608 | - labelname: ifIndex 609 | type: gauge 610 | lookups: 611 | - labels: 612 | - ifIndex 613 | labelname: ifName 614 | oid: 1.3.6.1.2.1.31.1.1.1.1 615 | type: DisplayString 616 | - name: ifOutErrors 617 | oid: 1.3.6.1.2.1.2.2.1.20 618 | type: counter 619 | help: For packet-oriented interfaces, the number of outbound packets that could 620 | not be transmitted because of errors - 1.3.6.1.2.1.2.2.1.20 621 | indexes: 622 | - labelname: ifIndex 623 | type: gauge 624 | lookups: 625 | - labels: 626 | - ifIndex 627 | labelname: ifName 628 | oid: 1.3.6.1.2.1.31.1.1.1.1 629 | type: DisplayString 630 | - name: ifOutQLen 631 | oid: 1.3.6.1.2.1.2.2.1.21 632 | type: gauge 633 | help: The length of the output packet queue (in packets). - 1.3.6.1.2.1.2.2.1.21 634 | indexes: 635 | - labelname: ifIndex 636 | type: gauge 637 | lookups: 638 | - labels: 639 | - ifIndex 640 | labelname: ifName 641 | oid: 1.3.6.1.2.1.31.1.1.1.1 642 | type: DisplayString 643 | - name: ifSpecific 644 | oid: 1.3.6.1.2.1.2.2.1.22 645 | type: OctetString 646 | help: A reference to MIB definitions specific to the particular media being used 647 | to realize the interface - 1.3.6.1.2.1.2.2.1.22 648 | indexes: 649 | - labelname: ifIndex 650 | type: gauge 651 | lookups: 652 | - labels: 653 | - ifIndex 654 | labelname: ifName 655 | oid: 1.3.6.1.2.1.31.1.1.1.1 656 | type: DisplayString 657 | - name: hrSystemUptime 658 | oid: 1.3.6.1.2.1.25.1.1 659 | type: gauge 660 | help: The amount of time since this host was last initialized - 1.3.6.1.2.1.25.1.1 661 | - name: hrSystemDate 662 | oid: 1.3.6.1.2.1.25.1.2 663 | type: DateAndTime 664 | help: The host's notion of the local date and time of day. - 1.3.6.1.2.1.25.1.2 665 | - name: hrSystemInitialLoadDevice 666 | oid: 1.3.6.1.2.1.25.1.3 667 | type: gauge 668 | help: The index of the hrDeviceEntry for the device from which this host is configured 669 | to load its initial operating system configuration (i.e., which operating system 670 | code and/or boot parameters) - 1.3.6.1.2.1.25.1.3 671 | - name: hrSystemInitialLoadParameters 672 | oid: 1.3.6.1.2.1.25.1.4 673 | type: OctetString 674 | help: This object contains the parameters (e.g - 1.3.6.1.2.1.25.1.4 675 | - name: hrSystemNumUsers 676 | oid: 1.3.6.1.2.1.25.1.5 677 | type: gauge 678 | help: The number of user sessions for which this host is storing state information 679 | - 1.3.6.1.2.1.25.1.5 680 | - name: hrSystemProcesses 681 | oid: 1.3.6.1.2.1.25.1.6 682 | type: gauge 683 | help: The number of process contexts currently loaded or running on this system. 684 | - 1.3.6.1.2.1.25.1.6 685 | - name: hrSystemMaxProcesses 686 | oid: 1.3.6.1.2.1.25.1.7 687 | type: gauge 688 | help: The maximum number of process contexts this system can support - 1.3.6.1.2.1.25.1.7 689 | - name: hrMemorySize 690 | oid: 1.3.6.1.2.1.25.2.2 691 | type: gauge 692 | help: The amount of physical read-write main memory, typically RAM, contained 693 | by the host. - 1.3.6.1.2.1.25.2.2 694 | - name: hrStorageIndex 695 | oid: 1.3.6.1.2.1.25.2.3.1.1 696 | type: gauge 697 | help: A unique value for each logical storage area contained by the host. - 1.3.6.1.2.1.25.2.3.1.1 698 | indexes: 699 | - labelname: hrStorageIndex 700 | type: gauge 701 | lookups: 702 | - labels: 703 | - hrStorageIndex 704 | labelname: hrStorageDescr 705 | oid: 1.3.6.1.2.1.25.2.3.1.3 706 | type: DisplayString 707 | - name: hrStorageType 708 | oid: 1.3.6.1.2.1.25.2.3.1.2 709 | type: OctetString 710 | help: The type of storage represented by this entry. - 1.3.6.1.2.1.25.2.3.1.2 711 | indexes: 712 | - labelname: hrStorageIndex 713 | type: gauge 714 | lookups: 715 | - labels: 716 | - hrStorageIndex 717 | labelname: hrStorageDescr 718 | oid: 1.3.6.1.2.1.25.2.3.1.3 719 | type: DisplayString 720 | - name: hrStorageDescr 721 | oid: 1.3.6.1.2.1.25.2.3.1.3 722 | type: DisplayString 723 | help: A description of the type and instance of the storage described by this 724 | entry. - 1.3.6.1.2.1.25.2.3.1.3 725 | indexes: 726 | - labelname: hrStorageIndex 727 | type: gauge 728 | lookups: 729 | - labels: 730 | - hrStorageIndex 731 | labelname: hrStorageDescr 732 | oid: 1.3.6.1.2.1.25.2.3.1.3 733 | type: DisplayString 734 | - name: hrStorageAllocationUnits 735 | oid: 1.3.6.1.2.1.25.2.3.1.4 736 | type: gauge 737 | help: The size, in bytes, of the data objects allocated from this pool - 1.3.6.1.2.1.25.2.3.1.4 738 | indexes: 739 | - labelname: hrStorageIndex 740 | type: gauge 741 | lookups: 742 | - labels: 743 | - hrStorageIndex 744 | labelname: hrStorageDescr 745 | oid: 1.3.6.1.2.1.25.2.3.1.3 746 | type: DisplayString 747 | - name: hrStorageSize 748 | oid: 1.3.6.1.2.1.25.2.3.1.5 749 | type: gauge 750 | help: The size of the storage represented by this entry, in units of hrStorageAllocationUnits 751 | - 1.3.6.1.2.1.25.2.3.1.5 752 | indexes: 753 | - labelname: hrStorageIndex 754 | type: gauge 755 | lookups: 756 | - labels: 757 | - hrStorageIndex 758 | labelname: hrStorageDescr 759 | oid: 1.3.6.1.2.1.25.2.3.1.3 760 | type: DisplayString 761 | - name: hrStorageUsed 762 | oid: 1.3.6.1.2.1.25.2.3.1.6 763 | type: gauge 764 | help: The amount of the storage represented by this entry that is allocated, in 765 | units of hrStorageAllocationUnits. - 1.3.6.1.2.1.25.2.3.1.6 766 | indexes: 767 | - labelname: hrStorageIndex 768 | type: gauge 769 | lookups: 770 | - labels: 771 | - hrStorageIndex 772 | labelname: hrStorageDescr 773 | oid: 1.3.6.1.2.1.25.2.3.1.3 774 | type: DisplayString 775 | - name: hrStorageAllocationFailures 776 | oid: 1.3.6.1.2.1.25.2.3.1.7 777 | type: counter 778 | help: The number of requests for storage represented by this entry that could 779 | not be honored due to not enough storage - 1.3.6.1.2.1.25.2.3.1.7 780 | indexes: 781 | - labelname: hrStorageIndex 782 | type: gauge 783 | lookups: 784 | - labels: 785 | - hrStorageIndex 786 | labelname: hrStorageDescr 787 | oid: 1.3.6.1.2.1.25.2.3.1.3 788 | type: DisplayString 789 | - name: hrDeviceIndex 790 | oid: 1.3.6.1.2.1.25.3.2.1.1 791 | type: gauge 792 | help: A unique value for each device contained by the host - 1.3.6.1.2.1.25.3.2.1.1 793 | indexes: 794 | - labelname: hrDeviceIndex 795 | type: gauge 796 | - name: hrDeviceType 797 | oid: 1.3.6.1.2.1.25.3.2.1.2 798 | type: OctetString 799 | help: An indication of the type of device - 1.3.6.1.2.1.25.3.2.1.2 800 | indexes: 801 | - labelname: hrDeviceIndex 802 | type: gauge 803 | - name: hrDeviceDescr 804 | oid: 1.3.6.1.2.1.25.3.2.1.3 805 | type: DisplayString 806 | help: A textual description of this device, including the device's manufacturer 807 | and revision, and optionally, its serial number. - 1.3.6.1.2.1.25.3.2.1.3 808 | indexes: 809 | - labelname: hrDeviceIndex 810 | type: gauge 811 | - name: hrDeviceID 812 | oid: 1.3.6.1.2.1.25.3.2.1.4 813 | type: OctetString 814 | help: The product ID for this device. - 1.3.6.1.2.1.25.3.2.1.4 815 | indexes: 816 | - labelname: hrDeviceIndex 817 | type: gauge 818 | - name: hrDeviceStatus 819 | oid: 1.3.6.1.2.1.25.3.2.1.5 820 | type: gauge 821 | help: The current operational state of the device described by this row of the 822 | table - 1.3.6.1.2.1.25.3.2.1.5 823 | indexes: 824 | - labelname: hrDeviceIndex 825 | type: gauge 826 | enum_values: 827 | 1: unknown 828 | 2: running 829 | 3: warning 830 | 4: testing 831 | 5: down 832 | - name: hrDeviceErrors 833 | oid: 1.3.6.1.2.1.25.3.2.1.6 834 | type: counter 835 | help: The number of errors detected on this device - 1.3.6.1.2.1.25.3.2.1.6 836 | indexes: 837 | - labelname: hrDeviceIndex 838 | type: gauge 839 | - name: hrProcessorFrwID 840 | oid: 1.3.6.1.2.1.25.3.3.1.1 841 | type: OctetString 842 | help: The product ID of the firmware associated with the processor. - 1.3.6.1.2.1.25.3.3.1.1 843 | indexes: 844 | - labelname: hrDeviceIndex 845 | type: gauge 846 | - name: hrProcessorLoad 847 | oid: 1.3.6.1.2.1.25.3.3.1.2 848 | type: gauge 849 | help: The average, over the last minute, of the percentage of time that this processor 850 | was not idle - 1.3.6.1.2.1.25.3.3.1.2 851 | indexes: 852 | - labelname: hrDeviceIndex 853 | type: gauge 854 | - name: hrNetworkIfIndex 855 | oid: 1.3.6.1.2.1.25.3.4.1.1 856 | type: gauge 857 | help: The value of ifIndex which corresponds to this network device - 1.3.6.1.2.1.25.3.4.1.1 858 | indexes: 859 | - labelname: hrDeviceIndex 860 | type: gauge 861 | - name: hrPrinterStatus 862 | oid: 1.3.6.1.2.1.25.3.5.1.1 863 | type: gauge 864 | help: The current status of this printer device. - 1.3.6.1.2.1.25.3.5.1.1 865 | indexes: 866 | - labelname: hrDeviceIndex 867 | type: gauge 868 | enum_values: 869 | 1: other 870 | 2: unknown 871 | 3: idle 872 | 4: printing 873 | 5: warmup 874 | - name: hrPrinterDetectedErrorState 875 | oid: 1.3.6.1.2.1.25.3.5.1.2 876 | type: OctetString 877 | help: This object represents any error conditions detected by the printer - 1.3.6.1.2.1.25.3.5.1.2 878 | indexes: 879 | - labelname: hrDeviceIndex 880 | type: gauge 881 | - name: hrDiskStorageAccess 882 | oid: 1.3.6.1.2.1.25.3.6.1.1 883 | type: gauge 884 | help: An indication if this long-term storage device is readable and writable 885 | or only readable - 1.3.6.1.2.1.25.3.6.1.1 886 | indexes: 887 | - labelname: hrDeviceIndex 888 | type: gauge 889 | enum_values: 890 | 1: readWrite 891 | 2: readOnly 892 | - name: hrDiskStorageMedia 893 | oid: 1.3.6.1.2.1.25.3.6.1.2 894 | type: gauge 895 | help: An indication of the type of media used in this long- term storage device. 896 | - 1.3.6.1.2.1.25.3.6.1.2 897 | indexes: 898 | - labelname: hrDeviceIndex 899 | type: gauge 900 | enum_values: 901 | 1: other 902 | 2: unknown 903 | 3: hardDisk 904 | 4: floppyDisk 905 | 5: opticalDiskROM 906 | 6: opticalDiskWORM 907 | 7: opticalDiskRW 908 | 8: ramDisk 909 | - name: hrDiskStorageRemoveble 910 | oid: 1.3.6.1.2.1.25.3.6.1.3 911 | type: gauge 912 | help: Denotes whether or not the disk media may be removed from the drive. - 1.3.6.1.2.1.25.3.6.1.3 913 | indexes: 914 | - labelname: hrDeviceIndex 915 | type: gauge 916 | enum_values: 917 | 1: "true" 918 | 2: "false" 919 | - name: hrDiskStorageCapacity 920 | oid: 1.3.6.1.2.1.25.3.6.1.4 921 | type: gauge 922 | help: The total size for this long-term storage device - 1.3.6.1.2.1.25.3.6.1.4 923 | indexes: 924 | - labelname: hrDeviceIndex 925 | type: gauge 926 | - name: hrPartitionIndex 927 | oid: 1.3.6.1.2.1.25.3.7.1.1 928 | type: gauge 929 | help: A unique value for each partition on this long-term storage device - 1.3.6.1.2.1.25.3.7.1.1 930 | indexes: 931 | - labelname: hrDeviceIndex 932 | type: gauge 933 | - labelname: hrPartitionIndex 934 | type: gauge 935 | - name: hrPartitionLabel 936 | oid: 1.3.6.1.2.1.25.3.7.1.2 937 | type: OctetString 938 | help: A textual description of this partition. - 1.3.6.1.2.1.25.3.7.1.2 939 | indexes: 940 | - labelname: hrDeviceIndex 941 | type: gauge 942 | - labelname: hrPartitionIndex 943 | type: gauge 944 | - name: hrPartitionID 945 | oid: 1.3.6.1.2.1.25.3.7.1.3 946 | type: OctetString 947 | help: A descriptor which uniquely represents this partition to the responsible 948 | operating system - 1.3.6.1.2.1.25.3.7.1.3 949 | indexes: 950 | - labelname: hrDeviceIndex 951 | type: gauge 952 | - labelname: hrPartitionIndex 953 | type: gauge 954 | - name: hrPartitionSize 955 | oid: 1.3.6.1.2.1.25.3.7.1.4 956 | type: gauge 957 | help: The size of this partition. - 1.3.6.1.2.1.25.3.7.1.4 958 | indexes: 959 | - labelname: hrDeviceIndex 960 | type: gauge 961 | - labelname: hrPartitionIndex 962 | type: gauge 963 | - name: hrPartitionFSIndex 964 | oid: 1.3.6.1.2.1.25.3.7.1.5 965 | type: gauge 966 | help: The index of the file system mounted on this partition - 1.3.6.1.2.1.25.3.7.1.5 967 | indexes: 968 | - labelname: hrDeviceIndex 969 | type: gauge 970 | - labelname: hrPartitionIndex 971 | type: gauge 972 | - name: hrFSIndex 973 | oid: 1.3.6.1.2.1.25.3.8.1.1 974 | type: gauge 975 | help: A unique value for each file system local to this host - 1.3.6.1.2.1.25.3.8.1.1 976 | indexes: 977 | - labelname: hrFSIndex 978 | type: gauge 979 | - name: hrFSMountPoint 980 | oid: 1.3.6.1.2.1.25.3.8.1.2 981 | type: OctetString 982 | help: The path name of the root of this file system. - 1.3.6.1.2.1.25.3.8.1.2 983 | indexes: 984 | - labelname: hrFSIndex 985 | type: gauge 986 | - name: hrFSRemoteMountPoint 987 | oid: 1.3.6.1.2.1.25.3.8.1.3 988 | type: OctetString 989 | help: A description of the name and/or address of the server that this file system 990 | is mounted from - 1.3.6.1.2.1.25.3.8.1.3 991 | indexes: 992 | - labelname: hrFSIndex 993 | type: gauge 994 | - name: hrFSType 995 | oid: 1.3.6.1.2.1.25.3.8.1.4 996 | type: OctetString 997 | help: The value of this object identifies the type of this file system. - 1.3.6.1.2.1.25.3.8.1.4 998 | indexes: 999 | - labelname: hrFSIndex 1000 | type: gauge 1001 | - name: hrFSAccess 1002 | oid: 1.3.6.1.2.1.25.3.8.1.5 1003 | type: gauge 1004 | help: An indication if this file system is logically configured by the operating 1005 | system to be readable and writable or only readable - 1.3.6.1.2.1.25.3.8.1.5 1006 | indexes: 1007 | - labelname: hrFSIndex 1008 | type: gauge 1009 | enum_values: 1010 | 1: readWrite 1011 | 2: readOnly 1012 | - name: hrFSBootable 1013 | oid: 1.3.6.1.2.1.25.3.8.1.6 1014 | type: gauge 1015 | help: A flag indicating whether this file system is bootable. - 1.3.6.1.2.1.25.3.8.1.6 1016 | indexes: 1017 | - labelname: hrFSIndex 1018 | type: gauge 1019 | enum_values: 1020 | 1: "true" 1021 | 2: "false" 1022 | - name: hrFSStorageIndex 1023 | oid: 1.3.6.1.2.1.25.3.8.1.7 1024 | type: gauge 1025 | help: The index of the hrStorageEntry that represents information about this file 1026 | system - 1.3.6.1.2.1.25.3.8.1.7 1027 | indexes: 1028 | - labelname: hrFSIndex 1029 | type: gauge 1030 | - name: hrFSLastFullBackupDate 1031 | oid: 1.3.6.1.2.1.25.3.8.1.8 1032 | type: DateAndTime 1033 | help: The last date at which this complete file system was copied to another storage 1034 | device for backup - 1.3.6.1.2.1.25.3.8.1.8 1035 | indexes: 1036 | - labelname: hrFSIndex 1037 | type: gauge 1038 | - name: hrFSLastPartialBackupDate 1039 | oid: 1.3.6.1.2.1.25.3.8.1.9 1040 | type: DateAndTime 1041 | help: The last date at which a portion of this file system was copied to another 1042 | storage device for backup - 1.3.6.1.2.1.25.3.8.1.9 1043 | indexes: 1044 | - labelname: hrFSIndex 1045 | type: gauge 1046 | - name: hrSWOSIndex 1047 | oid: 1.3.6.1.2.1.25.4.1 1048 | type: gauge 1049 | help: The value of the hrSWRunIndex for the hrSWRunEntry that represents the primary 1050 | operating system running on this host - 1.3.6.1.2.1.25.4.1 1051 | - name: hrSWRunIndex 1052 | oid: 1.3.6.1.2.1.25.4.2.1.1 1053 | type: gauge 1054 | help: A unique value for each piece of software running on the host - 1.3.6.1.2.1.25.4.2.1.1 1055 | indexes: 1056 | - labelname: hrSWRunIndex 1057 | type: gauge 1058 | - name: hrSWRunName 1059 | oid: 1.3.6.1.2.1.25.4.2.1.2 1060 | type: OctetString 1061 | help: A textual description of this running piece of software, including the manufacturer, 1062 | revision, and the name by which it is commonly known - 1.3.6.1.2.1.25.4.2.1.2 1063 | indexes: 1064 | - labelname: hrSWRunIndex 1065 | type: gauge 1066 | - name: hrSWRunID 1067 | oid: 1.3.6.1.2.1.25.4.2.1.3 1068 | type: OctetString 1069 | help: The product ID of this running piece of software. - 1.3.6.1.2.1.25.4.2.1.3 1070 | indexes: 1071 | - labelname: hrSWRunIndex 1072 | type: gauge 1073 | - name: hrSWRunPath 1074 | oid: 1.3.6.1.2.1.25.4.2.1.4 1075 | type: OctetString 1076 | help: A description of the location on long-term storage (e.g - 1.3.6.1.2.1.25.4.2.1.4 1077 | indexes: 1078 | - labelname: hrSWRunIndex 1079 | type: gauge 1080 | - name: hrSWRunParameters 1081 | oid: 1.3.6.1.2.1.25.4.2.1.5 1082 | type: OctetString 1083 | help: A description of the parameters supplied to this software when it was initially 1084 | loaded. - 1.3.6.1.2.1.25.4.2.1.5 1085 | indexes: 1086 | - labelname: hrSWRunIndex 1087 | type: gauge 1088 | - name: hrSWRunType 1089 | oid: 1.3.6.1.2.1.25.4.2.1.6 1090 | type: gauge 1091 | help: The type of this software. - 1.3.6.1.2.1.25.4.2.1.6 1092 | indexes: 1093 | - labelname: hrSWRunIndex 1094 | type: gauge 1095 | enum_values: 1096 | 1: unknown 1097 | 2: operatingSystem 1098 | 3: deviceDriver 1099 | 4: application 1100 | - name: hrSWRunStatus 1101 | oid: 1.3.6.1.2.1.25.4.2.1.7 1102 | type: gauge 1103 | help: The status of this running piece of software - 1.3.6.1.2.1.25.4.2.1.7 1104 | indexes: 1105 | - labelname: hrSWRunIndex 1106 | type: gauge 1107 | enum_values: 1108 | 1: running 1109 | 2: runnable 1110 | 3: notRunnable 1111 | 4: invalid 1112 | - name: hrSWRunPerfCPU 1113 | oid: 1.3.6.1.2.1.25.5.1.1.1 1114 | type: gauge 1115 | help: The number of centi-seconds of the total system's CPU resources consumed 1116 | by this process - 1.3.6.1.2.1.25.5.1.1.1 1117 | indexes: 1118 | - labelname: hrSWRunIndex 1119 | type: gauge 1120 | - name: hrSWRunPerfMem 1121 | oid: 1.3.6.1.2.1.25.5.1.1.2 1122 | type: gauge 1123 | help: The total amount of real system memory allocated to this process. - 1.3.6.1.2.1.25.5.1.1.2 1124 | indexes: 1125 | - labelname: hrSWRunIndex 1126 | type: gauge 1127 | - name: hrSWInstalledLastChange 1128 | oid: 1.3.6.1.2.1.25.6.1 1129 | type: gauge 1130 | help: The value of sysUpTime when an entry in the hrSWInstalledTable was last 1131 | added, renamed, or deleted - 1.3.6.1.2.1.25.6.1 1132 | - name: hrSWInstalledLastUpdateTime 1133 | oid: 1.3.6.1.2.1.25.6.2 1134 | type: gauge 1135 | help: The value of sysUpTime when the hrSWInstalledTable was last completely updated 1136 | - 1.3.6.1.2.1.25.6.2 1137 | - name: hrSWInstalledIndex 1138 | oid: 1.3.6.1.2.1.25.6.3.1.1 1139 | type: gauge 1140 | help: A unique value for each piece of software installed on the host - 1.3.6.1.2.1.25.6.3.1.1 1141 | indexes: 1142 | - labelname: hrSWInstalledIndex 1143 | type: gauge 1144 | - name: hrSWInstalledName 1145 | oid: 1.3.6.1.2.1.25.6.3.1.2 1146 | type: OctetString 1147 | help: A textual description of this installed piece of software, including the 1148 | manufacturer, revision, the name by which it is commonly known, and optionally, 1149 | its serial number. - 1.3.6.1.2.1.25.6.3.1.2 1150 | indexes: 1151 | - labelname: hrSWInstalledIndex 1152 | type: gauge 1153 | - name: hrSWInstalledID 1154 | oid: 1.3.6.1.2.1.25.6.3.1.3 1155 | type: OctetString 1156 | help: The product ID of this installed piece of software. - 1.3.6.1.2.1.25.6.3.1.3 1157 | indexes: 1158 | - labelname: hrSWInstalledIndex 1159 | type: gauge 1160 | - name: hrSWInstalledType 1161 | oid: 1.3.6.1.2.1.25.6.3.1.4 1162 | type: gauge 1163 | help: The type of this software. - 1.3.6.1.2.1.25.6.3.1.4 1164 | indexes: 1165 | - labelname: hrSWInstalledIndex 1166 | type: gauge 1167 | enum_values: 1168 | 1: unknown 1169 | 2: operatingSystem 1170 | 3: deviceDriver 1171 | 4: application 1172 | - name: hrSWInstalledDate 1173 | oid: 1.3.6.1.2.1.25.6.3.1.5 1174 | type: DateAndTime 1175 | help: The last-modification date of this application as it would appear in a directory 1176 | listing - 1.3.6.1.2.1.25.6.3.1.5 1177 | indexes: 1178 | - labelname: hrSWInstalledIndex 1179 | type: gauge 1180 | - name: ifInMulticastPkts 1181 | oid: 1.3.6.1.2.1.31.1.1.1.2 1182 | type: counter 1183 | help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, 1184 | which were addressed to a multicast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.2 1185 | indexes: 1186 | - labelname: ifIndex 1187 | type: gauge 1188 | lookups: 1189 | - labels: 1190 | - ifIndex 1191 | labelname: ifName 1192 | oid: 1.3.6.1.2.1.31.1.1.1.1 1193 | type: DisplayString 1194 | - name: ifInBroadcastPkts 1195 | oid: 1.3.6.1.2.1.31.1.1.1.3 1196 | type: counter 1197 | help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, 1198 | which were addressed to a broadcast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.3 1199 | indexes: 1200 | - labelname: ifIndex 1201 | type: gauge 1202 | lookups: 1203 | - labels: 1204 | - ifIndex 1205 | labelname: ifName 1206 | oid: 1.3.6.1.2.1.31.1.1.1.1 1207 | type: DisplayString 1208 | - name: ifOutMulticastPkts 1209 | oid: 1.3.6.1.2.1.31.1.1.1.4 1210 | type: counter 1211 | help: The total number of packets that higher-level protocols requested be transmitted, 1212 | and which were addressed to a multicast address at this sub-layer, including 1213 | those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.4 1214 | indexes: 1215 | - labelname: ifIndex 1216 | type: gauge 1217 | lookups: 1218 | - labels: 1219 | - ifIndex 1220 | labelname: ifName 1221 | oid: 1.3.6.1.2.1.31.1.1.1.1 1222 | type: DisplayString 1223 | - name: ifOutBroadcastPkts 1224 | oid: 1.3.6.1.2.1.31.1.1.1.5 1225 | type: counter 1226 | help: The total number of packets that higher-level protocols requested be transmitted, 1227 | and which were addressed to a broadcast address at this sub-layer, including 1228 | those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.5 1229 | indexes: 1230 | - labelname: ifIndex 1231 | type: gauge 1232 | lookups: 1233 | - labels: 1234 | - ifIndex 1235 | labelname: ifName 1236 | oid: 1.3.6.1.2.1.31.1.1.1.1 1237 | type: DisplayString 1238 | - name: ifHCInOctets 1239 | oid: 1.3.6.1.2.1.31.1.1.1.6 1240 | type: counter 1241 | help: The total number of octets received on the interface, including framing 1242 | characters - 1.3.6.1.2.1.31.1.1.1.6 1243 | indexes: 1244 | - labelname: ifIndex 1245 | type: gauge 1246 | lookups: 1247 | - labels: 1248 | - ifIndex 1249 | labelname: ifName 1250 | oid: 1.3.6.1.2.1.31.1.1.1.1 1251 | type: DisplayString 1252 | - name: ifHCInUcastPkts 1253 | oid: 1.3.6.1.2.1.31.1.1.1.7 1254 | type: counter 1255 | help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, 1256 | which were not addressed to a multicast or broadcast address at this sub-layer 1257 | - 1.3.6.1.2.1.31.1.1.1.7 1258 | indexes: 1259 | - labelname: ifIndex 1260 | type: gauge 1261 | lookups: 1262 | - labels: 1263 | - ifIndex 1264 | labelname: ifName 1265 | oid: 1.3.6.1.2.1.31.1.1.1.1 1266 | type: DisplayString 1267 | - name: ifHCInMulticastPkts 1268 | oid: 1.3.6.1.2.1.31.1.1.1.8 1269 | type: counter 1270 | help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, 1271 | which were addressed to a multicast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.8 1272 | indexes: 1273 | - labelname: ifIndex 1274 | type: gauge 1275 | lookups: 1276 | - labels: 1277 | - ifIndex 1278 | labelname: ifName 1279 | oid: 1.3.6.1.2.1.31.1.1.1.1 1280 | type: DisplayString 1281 | - name: ifHCInBroadcastPkts 1282 | oid: 1.3.6.1.2.1.31.1.1.1.9 1283 | type: counter 1284 | help: The number of packets, delivered by this sub-layer to a higher (sub-)layer, 1285 | which were addressed to a broadcast address at this sub-layer - 1.3.6.1.2.1.31.1.1.1.9 1286 | indexes: 1287 | - labelname: ifIndex 1288 | type: gauge 1289 | lookups: 1290 | - labels: 1291 | - ifIndex 1292 | labelname: ifName 1293 | oid: 1.3.6.1.2.1.31.1.1.1.1 1294 | type: DisplayString 1295 | - name: ifHCOutOctets 1296 | oid: 1.3.6.1.2.1.31.1.1.1.10 1297 | type: counter 1298 | help: The total number of octets transmitted out of the interface, including framing 1299 | characters - 1.3.6.1.2.1.31.1.1.1.10 1300 | indexes: 1301 | - labelname: ifIndex 1302 | type: gauge 1303 | lookups: 1304 | - labels: 1305 | - ifIndex 1306 | labelname: ifName 1307 | oid: 1.3.6.1.2.1.31.1.1.1.1 1308 | type: DisplayString 1309 | - name: ifHCOutUcastPkts 1310 | oid: 1.3.6.1.2.1.31.1.1.1.11 1311 | type: counter 1312 | help: The total number of packets that higher-level protocols requested be transmitted, 1313 | and which were not addressed to a multicast or broadcast address at this sub-layer, 1314 | including those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.11 1315 | indexes: 1316 | - labelname: ifIndex 1317 | type: gauge 1318 | lookups: 1319 | - labels: 1320 | - ifIndex 1321 | labelname: ifName 1322 | oid: 1.3.6.1.2.1.31.1.1.1.1 1323 | type: DisplayString 1324 | - name: ifHCOutMulticastPkts 1325 | oid: 1.3.6.1.2.1.31.1.1.1.12 1326 | type: counter 1327 | help: The total number of packets that higher-level protocols requested be transmitted, 1328 | and which were addressed to a multicast address at this sub-layer, including 1329 | those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.12 1330 | indexes: 1331 | - labelname: ifIndex 1332 | type: gauge 1333 | lookups: 1334 | - labels: 1335 | - ifIndex 1336 | labelname: ifName 1337 | oid: 1.3.6.1.2.1.31.1.1.1.1 1338 | type: DisplayString 1339 | - name: ifHCOutBroadcastPkts 1340 | oid: 1.3.6.1.2.1.31.1.1.1.13 1341 | type: counter 1342 | help: The total number of packets that higher-level protocols requested be transmitted, 1343 | and which were addressed to a broadcast address at this sub-layer, including 1344 | those that were discarded or not sent - 1.3.6.1.2.1.31.1.1.1.13 1345 | indexes: 1346 | - labelname: ifIndex 1347 | type: gauge 1348 | lookups: 1349 | - labels: 1350 | - ifIndex 1351 | labelname: ifName 1352 | oid: 1.3.6.1.2.1.31.1.1.1.1 1353 | type: DisplayString 1354 | - name: ifLinkUpDownTrapEnable 1355 | oid: 1.3.6.1.2.1.31.1.1.1.14 1356 | type: gauge 1357 | help: Indicates whether linkUp/linkDown traps should be generated for this interface 1358 | - 1.3.6.1.2.1.31.1.1.1.14 1359 | indexes: 1360 | - labelname: ifIndex 1361 | type: gauge 1362 | lookups: 1363 | - labels: 1364 | - ifIndex 1365 | labelname: ifName 1366 | oid: 1.3.6.1.2.1.31.1.1.1.1 1367 | type: DisplayString 1368 | enum_values: 1369 | 1: enabled 1370 | 2: disabled 1371 | - name: ifHighSpeed 1372 | oid: 1.3.6.1.2.1.31.1.1.1.15 1373 | type: gauge 1374 | help: An estimate of the interface's current bandwidth in units of 1,000,000 bits 1375 | per second - 1.3.6.1.2.1.31.1.1.1.15 1376 | indexes: 1377 | - labelname: ifIndex 1378 | type: gauge 1379 | lookups: 1380 | - labels: 1381 | - ifIndex 1382 | labelname: ifName 1383 | oid: 1.3.6.1.2.1.31.1.1.1.1 1384 | type: DisplayString 1385 | - name: ifPromiscuousMode 1386 | oid: 1.3.6.1.2.1.31.1.1.1.16 1387 | type: gauge 1388 | help: This object has a value of false(2) if this interface only accepts packets/frames 1389 | that are addressed to this station - 1.3.6.1.2.1.31.1.1.1.16 1390 | indexes: 1391 | - labelname: ifIndex 1392 | type: gauge 1393 | lookups: 1394 | - labels: 1395 | - ifIndex 1396 | labelname: ifName 1397 | oid: 1.3.6.1.2.1.31.1.1.1.1 1398 | type: DisplayString 1399 | enum_values: 1400 | 1: "true" 1401 | 2: "false" 1402 | - name: ifConnectorPresent 1403 | oid: 1.3.6.1.2.1.31.1.1.1.17 1404 | type: gauge 1405 | help: This object has the value 'true(1)' if the interface sublayer has a physical 1406 | connector and the value 'false(2)' otherwise. - 1.3.6.1.2.1.31.1.1.1.17 1407 | indexes: 1408 | - labelname: ifIndex 1409 | type: gauge 1410 | lookups: 1411 | - labels: 1412 | - ifIndex 1413 | labelname: ifName 1414 | oid: 1.3.6.1.2.1.31.1.1.1.1 1415 | type: DisplayString 1416 | enum_values: 1417 | 1: "true" 1418 | 2: "false" 1419 | - name: ifAlias 1420 | oid: 1.3.6.1.2.1.31.1.1.1.18 1421 | type: DisplayString 1422 | help: This object is an 'alias' name for the interface as specified by a network 1423 | manager, and provides a non-volatile 'handle' for the interface - 1.3.6.1.2.1.31.1.1.1.18 1424 | indexes: 1425 | - labelname: ifIndex 1426 | type: gauge 1427 | lookups: 1428 | - labels: 1429 | - ifIndex 1430 | labelname: ifName 1431 | oid: 1.3.6.1.2.1.31.1.1.1.1 1432 | type: DisplayString 1433 | - name: ifCounterDiscontinuityTime 1434 | oid: 1.3.6.1.2.1.31.1.1.1.19 1435 | type: gauge 1436 | help: The value of sysUpTime on the most recent occasion at which any one or more 1437 | of this interface's counters suffered a discontinuity - 1.3.6.1.2.1.31.1.1.1.19 1438 | indexes: 1439 | - labelname: ifIndex 1440 | type: gauge 1441 | lookups: 1442 | - labels: 1443 | - ifIndex 1444 | labelname: ifName 1445 | oid: 1.3.6.1.2.1.31.1.1.1.1 1446 | type: DisplayString 1447 | - name: ifStackHigherLayer 1448 | oid: 1.3.6.1.2.1.31.1.2.1.1 1449 | type: gauge 1450 | help: The value of ifIndex corresponding to the higher sub-layer of the relationship, 1451 | i.e., the sub-layer which runs on 'top' of the sub-layer identified by the corresponding 1452 | instance of ifStackLowerLayer - 1.3.6.1.2.1.31.1.2.1.1 1453 | indexes: 1454 | - labelname: ifStackHigherLayer 1455 | type: gauge 1456 | - labelname: ifStackLowerLayer 1457 | type: gauge 1458 | - name: ifStackLowerLayer 1459 | oid: 1.3.6.1.2.1.31.1.2.1.2 1460 | type: gauge 1461 | help: The value of ifIndex corresponding to the lower sub-layer of the relationship, 1462 | i.e., the sub-layer which runs 'below' the sub-layer identified by the corresponding 1463 | instance of ifStackHigherLayer - 1.3.6.1.2.1.31.1.2.1.2 1464 | indexes: 1465 | - labelname: ifStackHigherLayer 1466 | type: gauge 1467 | - labelname: ifStackLowerLayer 1468 | type: gauge 1469 | - name: ifStackStatus 1470 | oid: 1.3.6.1.2.1.31.1.2.1.3 1471 | type: gauge 1472 | help: The status of the relationship between two sub-layers - 1.3.6.1.2.1.31.1.2.1.3 1473 | indexes: 1474 | - labelname: ifStackHigherLayer 1475 | type: gauge 1476 | - labelname: ifStackLowerLayer 1477 | type: gauge 1478 | enum_values: 1479 | 1: active 1480 | 2: notInService 1481 | 3: notReady 1482 | 4: createAndGo 1483 | 5: createAndWait 1484 | 6: destroy 1485 | - name: ifTestId 1486 | oid: 1.3.6.1.2.1.31.1.3.1.1 1487 | type: gauge 1488 | help: This object identifies the current invocation of the interface's test. - 1489 | 1.3.6.1.2.1.31.1.3.1.1 1490 | indexes: 1491 | - labelname: ifIndex 1492 | type: gauge 1493 | lookups: 1494 | - labels: 1495 | - ifIndex 1496 | labelname: ifName 1497 | oid: 1.3.6.1.2.1.31.1.1.1.1 1498 | type: DisplayString 1499 | - name: ifTestStatus 1500 | oid: 1.3.6.1.2.1.31.1.3.1.2 1501 | type: gauge 1502 | help: This object indicates whether or not some manager currently has the necessary 1503 | 'ownership' required to invoke a test on this interface - 1.3.6.1.2.1.31.1.3.1.2 1504 | indexes: 1505 | - labelname: ifIndex 1506 | type: gauge 1507 | lookups: 1508 | - labels: 1509 | - ifIndex 1510 | labelname: ifName 1511 | oid: 1.3.6.1.2.1.31.1.1.1.1 1512 | type: DisplayString 1513 | enum_values: 1514 | 1: notInUse 1515 | 2: inUse 1516 | - name: ifTestType 1517 | oid: 1.3.6.1.2.1.31.1.3.1.3 1518 | type: OctetString 1519 | help: A control variable used to start and stop operator- initiated interface 1520 | tests - 1.3.6.1.2.1.31.1.3.1.3 1521 | indexes: 1522 | - labelname: ifIndex 1523 | type: gauge 1524 | lookups: 1525 | - labels: 1526 | - ifIndex 1527 | labelname: ifName 1528 | oid: 1.3.6.1.2.1.31.1.1.1.1 1529 | type: DisplayString 1530 | - name: ifTestResult 1531 | oid: 1.3.6.1.2.1.31.1.3.1.4 1532 | type: gauge 1533 | help: This object contains the result of the most recently requested test, or 1534 | the value none(1) if no tests have been requested since the last reset - 1.3.6.1.2.1.31.1.3.1.4 1535 | indexes: 1536 | - labelname: ifIndex 1537 | type: gauge 1538 | lookups: 1539 | - labels: 1540 | - ifIndex 1541 | labelname: ifName 1542 | oid: 1.3.6.1.2.1.31.1.1.1.1 1543 | type: DisplayString 1544 | enum_values: 1545 | 1: none 1546 | 2: success 1547 | 3: inProgress 1548 | 4: notSupported 1549 | 5: unAbleToRun 1550 | 6: aborted 1551 | 7: failed 1552 | - name: ifTestCode 1553 | oid: 1.3.6.1.2.1.31.1.3.1.5 1554 | type: OctetString 1555 | help: This object contains a code which contains more specific information on 1556 | the test result, for example an error-code after a failed test - 1.3.6.1.2.1.31.1.3.1.5 1557 | indexes: 1558 | - labelname: ifIndex 1559 | type: gauge 1560 | lookups: 1561 | - labels: 1562 | - ifIndex 1563 | labelname: ifName 1564 | oid: 1.3.6.1.2.1.31.1.1.1.1 1565 | type: DisplayString 1566 | - name: ifTestOwner 1567 | oid: 1.3.6.1.2.1.31.1.3.1.6 1568 | type: DisplayString 1569 | help: The entity which currently has the 'ownership' required to invoke a test 1570 | on this interface. - 1.3.6.1.2.1.31.1.3.1.6 1571 | indexes: 1572 | - labelname: ifIndex 1573 | type: gauge 1574 | lookups: 1575 | - labels: 1576 | - ifIndex 1577 | labelname: ifName 1578 | oid: 1.3.6.1.2.1.31.1.1.1.1 1579 | type: DisplayString 1580 | - name: ifRcvAddressAddress 1581 | oid: 1.3.6.1.2.1.31.1.4.1.1 1582 | type: PhysAddress48 1583 | help: An address for which the system will accept packets/frames on this entry's 1584 | interface. - 1.3.6.1.2.1.31.1.4.1.1 1585 | indexes: 1586 | - labelname: ifIndex 1587 | type: gauge 1588 | - labelname: ifRcvAddressAddress 1589 | type: PhysAddress48 1590 | lookups: 1591 | - labels: 1592 | - ifIndex 1593 | labelname: ifName 1594 | oid: 1.3.6.1.2.1.31.1.1.1.1 1595 | type: DisplayString 1596 | - name: ifRcvAddressStatus 1597 | oid: 1.3.6.1.2.1.31.1.4.1.2 1598 | type: gauge 1599 | help: This object is used to create and delete rows in the ifRcvAddressTable. 1600 | - 1.3.6.1.2.1.31.1.4.1.2 1601 | indexes: 1602 | - labelname: ifIndex 1603 | type: gauge 1604 | - labelname: ifRcvAddressAddress 1605 | type: PhysAddress48 1606 | lookups: 1607 | - labels: 1608 | - ifIndex 1609 | labelname: ifName 1610 | oid: 1.3.6.1.2.1.31.1.1.1.1 1611 | type: DisplayString 1612 | enum_values: 1613 | 1: active 1614 | 2: notInService 1615 | 3: notReady 1616 | 4: createAndGo 1617 | 5: createAndWait 1618 | 6: destroy 1619 | - name: ifRcvAddressType 1620 | oid: 1.3.6.1.2.1.31.1.4.1.3 1621 | type: gauge 1622 | help: This object has the value nonVolatile(3) for those entries in the table 1623 | which are valid and will not be deleted by the next restart of the managed system 1624 | - 1.3.6.1.2.1.31.1.4.1.3 1625 | indexes: 1626 | - labelname: ifIndex 1627 | type: gauge 1628 | - labelname: ifRcvAddressAddress 1629 | type: PhysAddress48 1630 | lookups: 1631 | - labels: 1632 | - ifIndex 1633 | labelname: ifName 1634 | oid: 1.3.6.1.2.1.31.1.1.1.1 1635 | type: DisplayString 1636 | enum_values: 1637 | 1: other 1638 | 2: volatile 1639 | 3: nonVolatile 1640 | - name: ifTableLastChange 1641 | oid: 1.3.6.1.2.1.31.1.5 1642 | type: gauge 1643 | help: The value of sysUpTime at the time of the last creation or deletion of an 1644 | entry in the ifTable - 1.3.6.1.2.1.31.1.5 1645 | - name: ifStackLastChange 1646 | oid: 1.3.6.1.2.1.31.1.6 1647 | type: gauge 1648 | help: The value of sysUpTime at the time of the last change of the (whole) interface 1649 | stack - 1.3.6.1.2.1.31.1.6 1650 | - name: mtxrWlStatIndex 1651 | oid: 1.3.6.1.4.1.14988.1.1.1.1.1.1 1652 | type: gauge 1653 | help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.1' 1654 | indexes: 1655 | - labelname: mtxrWlStatIndex 1656 | type: gauge 1657 | - name: mtxrWlStatTxRate 1658 | oid: 1.3.6.1.4.1.14988.1.1.1.1.1.2 1659 | type: gauge 1660 | help: bits per second - 1.3.6.1.4.1.14988.1.1.1.1.1.2 1661 | indexes: 1662 | - labelname: mtxrWlStatIndex 1663 | type: gauge 1664 | - name: mtxrWlStatRxRate 1665 | oid: 1.3.6.1.4.1.14988.1.1.1.1.1.3 1666 | type: gauge 1667 | help: bits per second - 1.3.6.1.4.1.14988.1.1.1.1.1.3 1668 | indexes: 1669 | - labelname: mtxrWlStatIndex 1670 | type: gauge 1671 | - name: mtxrWlStatStrength 1672 | oid: 1.3.6.1.4.1.14988.1.1.1.1.1.4 1673 | type: gauge 1674 | help: dBm - 1.3.6.1.4.1.14988.1.1.1.1.1.4 1675 | indexes: 1676 | - labelname: mtxrWlStatIndex 1677 | type: gauge 1678 | - name: mtxrWlStatSsid 1679 | oid: 1.3.6.1.4.1.14988.1.1.1.1.1.5 1680 | type: DisplayString 1681 | help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.5' 1682 | indexes: 1683 | - labelname: mtxrWlStatIndex 1684 | type: gauge 1685 | - name: mtxrWlStatBssid 1686 | oid: 1.3.6.1.4.1.14988.1.1.1.1.1.6 1687 | type: PhysAddress48 1688 | help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.6' 1689 | indexes: 1690 | - labelname: mtxrWlStatIndex 1691 | type: gauge 1692 | - name: mtxrWlStatFreq 1693 | oid: 1.3.6.1.4.1.14988.1.1.1.1.1.7 1694 | type: gauge 1695 | help: megahertz - 1.3.6.1.4.1.14988.1.1.1.1.1.7 1696 | indexes: 1697 | - labelname: mtxrWlStatIndex 1698 | type: gauge 1699 | - name: mtxrWlStatBand 1700 | oid: 1.3.6.1.4.1.14988.1.1.1.1.1.8 1701 | type: DisplayString 1702 | help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.8' 1703 | indexes: 1704 | - labelname: mtxrWlStatIndex 1705 | type: gauge 1706 | - name: mtxrWlStatTxCCQ 1707 | oid: 1.3.6.1.4.1.14988.1.1.1.1.1.9 1708 | type: counter 1709 | help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.9' 1710 | indexes: 1711 | - labelname: mtxrWlStatIndex 1712 | type: gauge 1713 | - name: mtxrWlStatRxCCQ 1714 | oid: 1.3.6.1.4.1.14988.1.1.1.1.1.10 1715 | type: counter 1716 | help: ' - 1.3.6.1.4.1.14988.1.1.1.1.1.10' 1717 | indexes: 1718 | - labelname: mtxrWlStatIndex 1719 | type: gauge 1720 | - name: mtxrWlRtabAddr 1721 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.1 1722 | type: PhysAddress48 1723 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.1' 1724 | indexes: 1725 | - labelname: mtxrWlRtabAddr 1726 | type: PhysAddress48 1727 | fixed_size: 6 1728 | - labelname: mtxrWlRtabIface 1729 | type: gauge 1730 | - name: mtxrWlRtabIface 1731 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.2 1732 | type: gauge 1733 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.2' 1734 | indexes: 1735 | - labelname: mtxrWlRtabAddr 1736 | type: PhysAddress48 1737 | fixed_size: 6 1738 | - labelname: mtxrWlRtabIface 1739 | type: gauge 1740 | - name: mtxrWlRtabStrength 1741 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.3 1742 | type: gauge 1743 | help: dBm - 1.3.6.1.4.1.14988.1.1.1.2.1.3 1744 | indexes: 1745 | - labelname: mtxrWlRtabAddr 1746 | type: PhysAddress48 1747 | fixed_size: 6 1748 | - labelname: mtxrWlRtabIface 1749 | type: gauge 1750 | - name: mtxrWlRtabTxBytes 1751 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.4 1752 | type: counter 1753 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.4' 1754 | indexes: 1755 | - labelname: mtxrWlRtabAddr 1756 | type: PhysAddress48 1757 | fixed_size: 6 1758 | - labelname: mtxrWlRtabIface 1759 | type: gauge 1760 | - name: mtxrWlRtabRxBytes 1761 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.5 1762 | type: counter 1763 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.5' 1764 | indexes: 1765 | - labelname: mtxrWlRtabAddr 1766 | type: PhysAddress48 1767 | fixed_size: 6 1768 | - labelname: mtxrWlRtabIface 1769 | type: gauge 1770 | - name: mtxrWlRtabTxPackets 1771 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.6 1772 | type: counter 1773 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.6' 1774 | indexes: 1775 | - labelname: mtxrWlRtabAddr 1776 | type: PhysAddress48 1777 | fixed_size: 6 1778 | - labelname: mtxrWlRtabIface 1779 | type: gauge 1780 | - name: mtxrWlRtabRxPackets 1781 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.7 1782 | type: counter 1783 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.7' 1784 | indexes: 1785 | - labelname: mtxrWlRtabAddr 1786 | type: PhysAddress48 1787 | fixed_size: 6 1788 | - labelname: mtxrWlRtabIface 1789 | type: gauge 1790 | - name: mtxrWlRtabTxRate 1791 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.8 1792 | type: gauge 1793 | help: bits per second - 1.3.6.1.4.1.14988.1.1.1.2.1.8 1794 | indexes: 1795 | - labelname: mtxrWlRtabAddr 1796 | type: PhysAddress48 1797 | fixed_size: 6 1798 | - labelname: mtxrWlRtabIface 1799 | type: gauge 1800 | - name: mtxrWlRtabRxRate 1801 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.9 1802 | type: gauge 1803 | help: bits per second - 1.3.6.1.4.1.14988.1.1.1.2.1.9 1804 | indexes: 1805 | - labelname: mtxrWlRtabAddr 1806 | type: PhysAddress48 1807 | fixed_size: 6 1808 | - labelname: mtxrWlRtabIface 1809 | type: gauge 1810 | - name: mtxrWlRtabRouterOSVersion 1811 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.10 1812 | type: DisplayString 1813 | help: RouterOS version - 1.3.6.1.4.1.14988.1.1.1.2.1.10 1814 | indexes: 1815 | - labelname: mtxrWlRtabAddr 1816 | type: PhysAddress48 1817 | fixed_size: 6 1818 | - labelname: mtxrWlRtabIface 1819 | type: gauge 1820 | - name: mtxrWlRtabUptime 1821 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.11 1822 | type: gauge 1823 | help: uptime - 1.3.6.1.4.1.14988.1.1.1.2.1.11 1824 | indexes: 1825 | - labelname: mtxrWlRtabAddr 1826 | type: PhysAddress48 1827 | fixed_size: 6 1828 | - labelname: mtxrWlRtabIface 1829 | type: gauge 1830 | - name: mtxrWlRtabSignalToNoise 1831 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.12 1832 | type: gauge 1833 | help: Measured in dB, if value does not exist it is indicated with 0 - 1.3.6.1.4.1.14988.1.1.1.2.1.12 1834 | indexes: 1835 | - labelname: mtxrWlRtabAddr 1836 | type: PhysAddress48 1837 | fixed_size: 6 1838 | - labelname: mtxrWlRtabIface 1839 | type: gauge 1840 | - name: mtxrWlRtabTxStrengthCh0 1841 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.13 1842 | type: gauge 1843 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.13' 1844 | indexes: 1845 | - labelname: mtxrWlRtabAddr 1846 | type: PhysAddress48 1847 | fixed_size: 6 1848 | - labelname: mtxrWlRtabIface 1849 | type: gauge 1850 | - name: mtxrWlRtabRxStrengthCh0 1851 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.14 1852 | type: gauge 1853 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.14' 1854 | indexes: 1855 | - labelname: mtxrWlRtabAddr 1856 | type: PhysAddress48 1857 | fixed_size: 6 1858 | - labelname: mtxrWlRtabIface 1859 | type: gauge 1860 | - name: mtxrWlRtabTxStrengthCh1 1861 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.15 1862 | type: gauge 1863 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.15' 1864 | indexes: 1865 | - labelname: mtxrWlRtabAddr 1866 | type: PhysAddress48 1867 | fixed_size: 6 1868 | - labelname: mtxrWlRtabIface 1869 | type: gauge 1870 | - name: mtxrWlRtabRxStrengthCh1 1871 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.16 1872 | type: gauge 1873 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.16' 1874 | indexes: 1875 | - labelname: mtxrWlRtabAddr 1876 | type: PhysAddress48 1877 | fixed_size: 6 1878 | - labelname: mtxrWlRtabIface 1879 | type: gauge 1880 | - name: mtxrWlRtabTxStrengthCh2 1881 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.17 1882 | type: gauge 1883 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.17' 1884 | indexes: 1885 | - labelname: mtxrWlRtabAddr 1886 | type: PhysAddress48 1887 | fixed_size: 6 1888 | - labelname: mtxrWlRtabIface 1889 | type: gauge 1890 | - name: mtxrWlRtabRxStrengthCh2 1891 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.18 1892 | type: gauge 1893 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.18' 1894 | indexes: 1895 | - labelname: mtxrWlRtabAddr 1896 | type: PhysAddress48 1897 | fixed_size: 6 1898 | - labelname: mtxrWlRtabIface 1899 | type: gauge 1900 | - name: mtxrWlRtabTxStrength 1901 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.19 1902 | type: gauge 1903 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.19' 1904 | indexes: 1905 | - labelname: mtxrWlRtabAddr 1906 | type: PhysAddress48 1907 | fixed_size: 6 1908 | - labelname: mtxrWlRtabIface 1909 | type: gauge 1910 | - name: mtxrWlRtabRadioName 1911 | oid: 1.3.6.1.4.1.14988.1.1.1.2.1.20 1912 | type: DisplayString 1913 | help: ' - 1.3.6.1.4.1.14988.1.1.1.2.1.20' 1914 | indexes: 1915 | - labelname: mtxrWlRtabAddr 1916 | type: PhysAddress48 1917 | fixed_size: 6 1918 | - labelname: mtxrWlRtabIface 1919 | type: gauge 1920 | - name: mtxrWlApIndex 1921 | oid: 1.3.6.1.4.1.14988.1.1.1.3.1.1 1922 | type: gauge 1923 | help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.1' 1924 | indexes: 1925 | - labelname: mtxrWlApIndex 1926 | type: gauge 1927 | - name: mtxrWlApTxRate 1928 | oid: 1.3.6.1.4.1.14988.1.1.1.3.1.2 1929 | type: gauge 1930 | help: bits per second - 1.3.6.1.4.1.14988.1.1.1.3.1.2 1931 | indexes: 1932 | - labelname: mtxrWlApIndex 1933 | type: gauge 1934 | - name: mtxrWlApRxRate 1935 | oid: 1.3.6.1.4.1.14988.1.1.1.3.1.3 1936 | type: gauge 1937 | help: bits per second - 1.3.6.1.4.1.14988.1.1.1.3.1.3 1938 | indexes: 1939 | - labelname: mtxrWlApIndex 1940 | type: gauge 1941 | - name: mtxrWlApSsid 1942 | oid: 1.3.6.1.4.1.14988.1.1.1.3.1.4 1943 | type: DisplayString 1944 | help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.4' 1945 | indexes: 1946 | - labelname: mtxrWlApIndex 1947 | type: gauge 1948 | - name: mtxrWlApBssid 1949 | oid: 1.3.6.1.4.1.14988.1.1.1.3.1.5 1950 | type: PhysAddress48 1951 | help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.5' 1952 | indexes: 1953 | - labelname: mtxrWlApIndex 1954 | type: gauge 1955 | - name: mtxrWlApClientCount 1956 | oid: 1.3.6.1.4.1.14988.1.1.1.3.1.6 1957 | type: counter 1958 | help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.6' 1959 | indexes: 1960 | - labelname: mtxrWlApIndex 1961 | type: gauge 1962 | - name: mtxrWlApFreq 1963 | oid: 1.3.6.1.4.1.14988.1.1.1.3.1.7 1964 | type: gauge 1965 | help: megahertz - 1.3.6.1.4.1.14988.1.1.1.3.1.7 1966 | indexes: 1967 | - labelname: mtxrWlApIndex 1968 | type: gauge 1969 | - name: mtxrWlApBand 1970 | oid: 1.3.6.1.4.1.14988.1.1.1.3.1.8 1971 | type: DisplayString 1972 | help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.8' 1973 | indexes: 1974 | - labelname: mtxrWlApIndex 1975 | type: gauge 1976 | - name: mtxrWlApNoiseFloor 1977 | oid: 1.3.6.1.4.1.14988.1.1.1.3.1.9 1978 | type: gauge 1979 | help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.9' 1980 | indexes: 1981 | - labelname: mtxrWlApIndex 1982 | type: gauge 1983 | - name: mtxrWlApOverallTxCCQ 1984 | oid: 1.3.6.1.4.1.14988.1.1.1.3.1.10 1985 | type: counter 1986 | help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.10' 1987 | indexes: 1988 | - labelname: mtxrWlApIndex 1989 | type: gauge 1990 | - name: mtxrWlApAuthClientCount 1991 | oid: 1.3.6.1.4.1.14988.1.1.1.3.1.11 1992 | type: counter 1993 | help: ' - 1.3.6.1.4.1.14988.1.1.1.3.1.11' 1994 | indexes: 1995 | - labelname: mtxrWlApIndex 1996 | type: gauge 1997 | - name: mtxrWlRtabEntryCount 1998 | oid: 1.3.6.1.4.1.14988.1.1.1.4 1999 | type: gauge 2000 | help: Wireless registration table entry count - 1.3.6.1.4.1.14988.1.1.1.4 2001 | - name: mtxrWlCMRtabAddr 2002 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.1 2003 | type: PhysAddress48 2004 | help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.1' 2005 | indexes: 2006 | - labelname: mtxrWlCMRtabAddr 2007 | type: PhysAddress48 2008 | fixed_size: 6 2009 | - labelname: mtxrWlCMRtabIface 2010 | type: gauge 2011 | - name: mtxrWlCMRtabIface 2012 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.2 2013 | type: gauge 2014 | help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.2' 2015 | indexes: 2016 | - labelname: mtxrWlCMRtabAddr 2017 | type: PhysAddress48 2018 | fixed_size: 6 2019 | - labelname: mtxrWlCMRtabIface 2020 | type: gauge 2021 | - name: mtxrWlCMRtabUptime 2022 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.3 2023 | type: gauge 2024 | help: uptime - 1.3.6.1.4.1.14988.1.1.1.5.1.3 2025 | indexes: 2026 | - labelname: mtxrWlCMRtabAddr 2027 | type: PhysAddress48 2028 | fixed_size: 6 2029 | - labelname: mtxrWlCMRtabIface 2030 | type: gauge 2031 | - name: mtxrWlCMRtabTxBytes 2032 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.4 2033 | type: counter 2034 | help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.4' 2035 | indexes: 2036 | - labelname: mtxrWlCMRtabAddr 2037 | type: PhysAddress48 2038 | fixed_size: 6 2039 | - labelname: mtxrWlCMRtabIface 2040 | type: gauge 2041 | - name: mtxrWlCMRtabRxBytes 2042 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.5 2043 | type: counter 2044 | help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.5' 2045 | indexes: 2046 | - labelname: mtxrWlCMRtabAddr 2047 | type: PhysAddress48 2048 | fixed_size: 6 2049 | - labelname: mtxrWlCMRtabIface 2050 | type: gauge 2051 | - name: mtxrWlCMRtabTxPackets 2052 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.6 2053 | type: counter 2054 | help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.6' 2055 | indexes: 2056 | - labelname: mtxrWlCMRtabAddr 2057 | type: PhysAddress48 2058 | fixed_size: 6 2059 | - labelname: mtxrWlCMRtabIface 2060 | type: gauge 2061 | - name: mtxrWlCMRtabRxPackets 2062 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.7 2063 | type: counter 2064 | help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.7' 2065 | indexes: 2066 | - labelname: mtxrWlCMRtabAddr 2067 | type: PhysAddress48 2068 | fixed_size: 6 2069 | - labelname: mtxrWlCMRtabIface 2070 | type: gauge 2071 | - name: mtxrWlCMRtabTxRate 2072 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.8 2073 | type: gauge 2074 | help: bits per second - 1.3.6.1.4.1.14988.1.1.1.5.1.8 2075 | indexes: 2076 | - labelname: mtxrWlCMRtabAddr 2077 | type: PhysAddress48 2078 | fixed_size: 6 2079 | - labelname: mtxrWlCMRtabIface 2080 | type: gauge 2081 | - name: mtxrWlCMRtabRxRate 2082 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.9 2083 | type: gauge 2084 | help: bits per second - 1.3.6.1.4.1.14988.1.1.1.5.1.9 2085 | indexes: 2086 | - labelname: mtxrWlCMRtabAddr 2087 | type: PhysAddress48 2088 | fixed_size: 6 2089 | - labelname: mtxrWlCMRtabIface 2090 | type: gauge 2091 | - name: mtxrWlCMRtabTxStrength 2092 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.10 2093 | type: gauge 2094 | help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.10' 2095 | indexes: 2096 | - labelname: mtxrWlCMRtabAddr 2097 | type: PhysAddress48 2098 | fixed_size: 6 2099 | - labelname: mtxrWlCMRtabIface 2100 | type: gauge 2101 | - name: mtxrWlCMRtabRxStrength 2102 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.11 2103 | type: gauge 2104 | help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.11' 2105 | indexes: 2106 | - labelname: mtxrWlCMRtabAddr 2107 | type: PhysAddress48 2108 | fixed_size: 6 2109 | - labelname: mtxrWlCMRtabIface 2110 | type: gauge 2111 | - name: mtxrWlCMRtabSsid 2112 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.12 2113 | type: DisplayString 2114 | help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.12' 2115 | indexes: 2116 | - labelname: mtxrWlCMRtabAddr 2117 | type: PhysAddress48 2118 | fixed_size: 6 2119 | - labelname: mtxrWlCMRtabIface 2120 | type: gauge 2121 | - name: mtxrWlCMRtabEapIdent 2122 | oid: 1.3.6.1.4.1.14988.1.1.1.5.1.13 2123 | type: DisplayString 2124 | help: ' - 1.3.6.1.4.1.14988.1.1.1.5.1.13' 2125 | indexes: 2126 | - labelname: mtxrWlCMRtabAddr 2127 | type: PhysAddress48 2128 | fixed_size: 6 2129 | - labelname: mtxrWlCMRtabIface 2130 | type: gauge 2131 | - name: mtxrWlCMRtabEntryCount 2132 | oid: 1.3.6.1.4.1.14988.1.1.1.6 2133 | type: gauge 2134 | help: Wireless CAPSMAN registration table entry count - 1.3.6.1.4.1.14988.1.1.1.6 2135 | - name: mtxrWlCMIndex 2136 | oid: 1.3.6.1.4.1.14988.1.1.1.7.1.1 2137 | type: gauge 2138 | help: ' - 1.3.6.1.4.1.14988.1.1.1.7.1.1' 2139 | indexes: 2140 | - labelname: mtxrWlCMIndex 2141 | type: gauge 2142 | - name: mtxrWlCMRegClientCount 2143 | oid: 1.3.6.1.4.1.14988.1.1.1.7.1.2 2144 | type: counter 2145 | help: ' - 1.3.6.1.4.1.14988.1.1.1.7.1.2' 2146 | indexes: 2147 | - labelname: mtxrWlCMIndex 2148 | type: gauge 2149 | - name: mtxrWlCMAuthClientCount 2150 | oid: 1.3.6.1.4.1.14988.1.1.1.7.1.3 2151 | type: counter 2152 | help: ' - 1.3.6.1.4.1.14988.1.1.1.7.1.3' 2153 | indexes: 2154 | - labelname: mtxrWlCMIndex 2155 | type: gauge 2156 | - name: mtxrWlCMState 2157 | oid: 1.3.6.1.4.1.14988.1.1.1.7.1.4 2158 | type: DisplayString 2159 | help: ' - 1.3.6.1.4.1.14988.1.1.1.7.1.4' 2160 | indexes: 2161 | - labelname: mtxrWlCMIndex 2162 | type: gauge 2163 | - name: mtxrWlCMChannel 2164 | oid: 1.3.6.1.4.1.14988.1.1.1.7.1.5 2165 | type: DisplayString 2166 | help: for master only - 1.3.6.1.4.1.14988.1.1.1.7.1.5 2167 | indexes: 2168 | - labelname: mtxrWlCMIndex 2169 | type: gauge 2170 | - name: mtxrWl60GIndex 2171 | oid: 1.3.6.1.4.1.14988.1.1.1.8.1.1 2172 | type: gauge 2173 | help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.1' 2174 | indexes: 2175 | - labelname: mtxrWl60GIndex 2176 | type: gauge 2177 | - name: mtxrWl60GMode 2178 | oid: 1.3.6.1.4.1.14988.1.1.1.8.1.2 2179 | type: gauge 2180 | help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.2' 2181 | indexes: 2182 | - labelname: mtxrWl60GIndex 2183 | type: gauge 2184 | enum_values: 2185 | 0: apBridge 2186 | 1: stationBridge 2187 | 2: sniff 2188 | 3: bridge 2189 | - name: mtxrWl60GSsid 2190 | oid: 1.3.6.1.4.1.14988.1.1.1.8.1.3 2191 | type: DisplayString 2192 | help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.3' 2193 | indexes: 2194 | - labelname: mtxrWl60GIndex 2195 | type: gauge 2196 | - name: mtxrWl60GConnected 2197 | oid: 1.3.6.1.4.1.14988.1.1.1.8.1.4 2198 | type: gauge 2199 | help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.4' 2200 | indexes: 2201 | - labelname: mtxrWl60GIndex 2202 | type: gauge 2203 | enum_values: 2204 | 0: "false" 2205 | 1: "true" 2206 | - name: mtxrWl60GRemote 2207 | oid: 1.3.6.1.4.1.14988.1.1.1.8.1.5 2208 | type: PhysAddress48 2209 | help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.5' 2210 | indexes: 2211 | - labelname: mtxrWl60GIndex 2212 | type: gauge 2213 | - name: mtxrWl60GFreq 2214 | oid: 1.3.6.1.4.1.14988.1.1.1.8.1.6 2215 | type: gauge 2216 | help: Mhz - 1.3.6.1.4.1.14988.1.1.1.8.1.6 2217 | indexes: 2218 | - labelname: mtxrWl60GIndex 2219 | type: gauge 2220 | - name: mtxrWl60GMcs 2221 | oid: 1.3.6.1.4.1.14988.1.1.1.8.1.7 2222 | type: gauge 2223 | help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.7' 2224 | indexes: 2225 | - labelname: mtxrWl60GIndex 2226 | type: gauge 2227 | - name: mtxrWl60GSignal 2228 | oid: 1.3.6.1.4.1.14988.1.1.1.8.1.8 2229 | type: gauge 2230 | help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.8' 2231 | indexes: 2232 | - labelname: mtxrWl60GIndex 2233 | type: gauge 2234 | - name: mtxrWl60GTxSector 2235 | oid: 1.3.6.1.4.1.14988.1.1.1.8.1.9 2236 | type: gauge 2237 | help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.9' 2238 | indexes: 2239 | - labelname: mtxrWl60GIndex 2240 | type: gauge 2241 | - name: mtxrWl60GTxSectorInfo 2242 | oid: 1.3.6.1.4.1.14988.1.1.1.8.1.11 2243 | type: DisplayString 2244 | help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.11' 2245 | indexes: 2246 | - labelname: mtxrWl60GIndex 2247 | type: gauge 2248 | - name: mtxrWl60GRssi 2249 | oid: 1.3.6.1.4.1.14988.1.1.1.8.1.12 2250 | type: gauge 2251 | help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.12' 2252 | indexes: 2253 | - labelname: mtxrWl60GIndex 2254 | type: gauge 2255 | - name: mtxrWl60GPhyRate 2256 | oid: 1.3.6.1.4.1.14988.1.1.1.8.1.13 2257 | type: gauge 2258 | help: ' - 1.3.6.1.4.1.14988.1.1.1.8.1.13' 2259 | indexes: 2260 | - labelname: mtxrWl60GIndex 2261 | type: gauge 2262 | - name: mtxrWl60GStaIndex 2263 | oid: 1.3.6.1.4.1.14988.1.1.1.9.1.1 2264 | type: gauge 2265 | help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.1' 2266 | indexes: 2267 | - labelname: mtxrWl60GStaIndex 2268 | type: gauge 2269 | - name: mtxrWl60GStaConnected 2270 | oid: 1.3.6.1.4.1.14988.1.1.1.9.1.2 2271 | type: gauge 2272 | help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.2' 2273 | indexes: 2274 | - labelname: mtxrWl60GStaIndex 2275 | type: gauge 2276 | enum_values: 2277 | 0: "false" 2278 | 1: "true" 2279 | - name: mtxrWl60GStaRemote 2280 | oid: 1.3.6.1.4.1.14988.1.1.1.9.1.3 2281 | type: PhysAddress48 2282 | help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.3' 2283 | indexes: 2284 | - labelname: mtxrWl60GStaIndex 2285 | type: gauge 2286 | - name: mtxrWl60GStaMcs 2287 | oid: 1.3.6.1.4.1.14988.1.1.1.9.1.4 2288 | type: gauge 2289 | help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.4' 2290 | indexes: 2291 | - labelname: mtxrWl60GStaIndex 2292 | type: gauge 2293 | - name: mtxrWl60GStaSignal 2294 | oid: 1.3.6.1.4.1.14988.1.1.1.9.1.5 2295 | type: gauge 2296 | help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.5' 2297 | indexes: 2298 | - labelname: mtxrWl60GStaIndex 2299 | type: gauge 2300 | - name: mtxrWl60GStaTxSector 2301 | oid: 1.3.6.1.4.1.14988.1.1.1.9.1.6 2302 | type: gauge 2303 | help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.6' 2304 | indexes: 2305 | - labelname: mtxrWl60GStaIndex 2306 | type: gauge 2307 | - name: mtxrWl60GStaPhyRate 2308 | oid: 1.3.6.1.4.1.14988.1.1.1.9.1.8 2309 | type: gauge 2310 | help: Mbits per second - 1.3.6.1.4.1.14988.1.1.1.9.1.8 2311 | indexes: 2312 | - labelname: mtxrWl60GStaIndex 2313 | type: gauge 2314 | - name: mtxrWl60GStaRssi 2315 | oid: 1.3.6.1.4.1.14988.1.1.1.9.1.9 2316 | type: gauge 2317 | help: ' - 1.3.6.1.4.1.14988.1.1.1.9.1.9' 2318 | indexes: 2319 | - labelname: mtxrWl60GStaIndex 2320 | type: gauge 2321 | - name: mtxrWl60GStaDistance 2322 | oid: 1.3.6.1.4.1.14988.1.1.1.9.1.10 2323 | type: gauge 2324 | help: meters - 1.3.6.1.4.1.14988.1.1.1.9.1.10 2325 | indexes: 2326 | - labelname: mtxrWl60GStaIndex 2327 | type: gauge 2328 | - name: mtxrWlCMREntryCount 2329 | oid: 1.3.6.1.4.1.14988.1.1.1.10 2330 | type: gauge 2331 | help: Wireless CAPSMAN remote-cap entry count - 1.3.6.1.4.1.14988.1.1.1.10 2332 | - name: mtxrWlCMRemoteIndex 2333 | oid: 1.3.6.1.4.1.14988.1.1.1.11.1.1 2334 | type: gauge 2335 | help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.1' 2336 | indexes: 2337 | - labelname: mtxrWlCMRemoteIndex 2338 | type: gauge 2339 | - name: mtxrWlCMRemoteName 2340 | oid: 1.3.6.1.4.1.14988.1.1.1.11.1.2 2341 | type: DisplayString 2342 | help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.2' 2343 | indexes: 2344 | - labelname: mtxrWlCMRemoteIndex 2345 | type: gauge 2346 | - name: mtxrWlCMRemoteState 2347 | oid: 1.3.6.1.4.1.14988.1.1.1.11.1.3 2348 | type: DisplayString 2349 | help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.3' 2350 | indexes: 2351 | - labelname: mtxrWlCMRemoteIndex 2352 | type: gauge 2353 | - name: mtxrWlCMRemoteAddress 2354 | oid: 1.3.6.1.4.1.14988.1.1.1.11.1.4 2355 | type: DisplayString 2356 | help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.4' 2357 | indexes: 2358 | - labelname: mtxrWlCMRemoteIndex 2359 | type: gauge 2360 | - name: mtxrWlCMRemoteRadios 2361 | oid: 1.3.6.1.4.1.14988.1.1.1.11.1.5 2362 | type: counter 2363 | help: ' - 1.3.6.1.4.1.14988.1.1.1.11.1.5' 2364 | indexes: 2365 | - labelname: mtxrWlCMRemoteIndex 2366 | type: gauge 2367 | - name: mtxrQueueSimpleIndex 2368 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.1 2369 | type: gauge 2370 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.1' 2371 | indexes: 2372 | - labelname: mtxrQueueSimpleIndex 2373 | type: gauge 2374 | - name: mtxrQueueSimpleName 2375 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.2 2376 | type: DisplayString 2377 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.2' 2378 | indexes: 2379 | - labelname: mtxrQueueSimpleIndex 2380 | type: gauge 2381 | - name: mtxrQueueSimpleSrcAddr 2382 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.3 2383 | type: InetAddressIPv4 2384 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.3' 2385 | indexes: 2386 | - labelname: mtxrQueueSimpleIndex 2387 | type: gauge 2388 | - name: mtxrQueueSimpleSrcMask 2389 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.4 2390 | type: InetAddressIPv4 2391 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.4' 2392 | indexes: 2393 | - labelname: mtxrQueueSimpleIndex 2394 | type: gauge 2395 | - name: mtxrQueueSimpleDstAddr 2396 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.5 2397 | type: InetAddressIPv4 2398 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.5' 2399 | indexes: 2400 | - labelname: mtxrQueueSimpleIndex 2401 | type: gauge 2402 | - name: mtxrQueueSimpleDstMask 2403 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.6 2404 | type: InetAddressIPv4 2405 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.6' 2406 | indexes: 2407 | - labelname: mtxrQueueSimpleIndex 2408 | type: gauge 2409 | - name: mtxrQueueSimpleIface 2410 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.7 2411 | type: gauge 2412 | help: interface index - 1.3.6.1.4.1.14988.1.1.2.1.1.7 2413 | indexes: 2414 | - labelname: mtxrQueueSimpleIndex 2415 | type: gauge 2416 | - name: mtxrQueueSimpleBytesIn 2417 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.8 2418 | type: counter 2419 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.8' 2420 | indexes: 2421 | - labelname: mtxrQueueSimpleIndex 2422 | type: gauge 2423 | - name: mtxrQueueSimpleBytesOut 2424 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.9 2425 | type: counter 2426 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.9' 2427 | indexes: 2428 | - labelname: mtxrQueueSimpleIndex 2429 | type: gauge 2430 | - name: mtxrQueueSimplePacketsIn 2431 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.10 2432 | type: counter 2433 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.10' 2434 | indexes: 2435 | - labelname: mtxrQueueSimpleIndex 2436 | type: gauge 2437 | - name: mtxrQueueSimplePacketsOut 2438 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.11 2439 | type: counter 2440 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.11' 2441 | indexes: 2442 | - labelname: mtxrQueueSimpleIndex 2443 | type: gauge 2444 | - name: mtxrQueueSimplePCQQueuesIn 2445 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.12 2446 | type: counter 2447 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.12' 2448 | indexes: 2449 | - labelname: mtxrQueueSimpleIndex 2450 | type: gauge 2451 | - name: mtxrQueueSimplePCQQueuesOut 2452 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.13 2453 | type: counter 2454 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.13' 2455 | indexes: 2456 | - labelname: mtxrQueueSimpleIndex 2457 | type: gauge 2458 | - name: mtxrQueueSimpleDroppedIn 2459 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.14 2460 | type: counter 2461 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.14' 2462 | indexes: 2463 | - labelname: mtxrQueueSimpleIndex 2464 | type: gauge 2465 | - name: mtxrQueueSimpleDroppedOut 2466 | oid: 1.3.6.1.4.1.14988.1.1.2.1.1.15 2467 | type: counter 2468 | help: ' - 1.3.6.1.4.1.14988.1.1.2.1.1.15' 2469 | indexes: 2470 | - labelname: mtxrQueueSimpleIndex 2471 | type: gauge 2472 | - name: mtxrQueueTreeIndex 2473 | oid: 1.3.6.1.4.1.14988.1.1.2.2.1.1 2474 | type: gauge 2475 | help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.1' 2476 | indexes: 2477 | - labelname: mtxrQueueTreeIndex 2478 | type: gauge 2479 | - name: mtxrQueueTreeName 2480 | oid: 1.3.6.1.4.1.14988.1.1.2.2.1.2 2481 | type: DisplayString 2482 | help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.2' 2483 | indexes: 2484 | - labelname: mtxrQueueTreeIndex 2485 | type: gauge 2486 | - name: mtxrQueueTreeFlow 2487 | oid: 1.3.6.1.4.1.14988.1.1.2.2.1.3 2488 | type: DisplayString 2489 | help: flowmark - 1.3.6.1.4.1.14988.1.1.2.2.1.3 2490 | indexes: 2491 | - labelname: mtxrQueueTreeIndex 2492 | type: gauge 2493 | - name: mtxrQueueTreeParentIndex 2494 | oid: 1.3.6.1.4.1.14988.1.1.2.2.1.4 2495 | type: gauge 2496 | help: index of parent tree queue or parent interface - 1.3.6.1.4.1.14988.1.1.2.2.1.4 2497 | indexes: 2498 | - labelname: mtxrQueueTreeIndex 2499 | type: gauge 2500 | - name: mtxrQueueTreeBytes 2501 | oid: 1.3.6.1.4.1.14988.1.1.2.2.1.5 2502 | type: counter 2503 | help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.5' 2504 | indexes: 2505 | - labelname: mtxrQueueTreeIndex 2506 | type: gauge 2507 | - name: mtxrQueueTreePackets 2508 | oid: 1.3.6.1.4.1.14988.1.1.2.2.1.6 2509 | type: counter 2510 | help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.6' 2511 | indexes: 2512 | - labelname: mtxrQueueTreeIndex 2513 | type: gauge 2514 | - name: mtxrQueueTreeHCBytes 2515 | oid: 1.3.6.1.4.1.14988.1.1.2.2.1.7 2516 | type: counter 2517 | help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.7' 2518 | indexes: 2519 | - labelname: mtxrQueueTreeIndex 2520 | type: gauge 2521 | - name: mtxrQueueTreePCQQueues 2522 | oid: 1.3.6.1.4.1.14988.1.1.2.2.1.8 2523 | type: counter 2524 | help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.8' 2525 | indexes: 2526 | - labelname: mtxrQueueTreeIndex 2527 | type: gauge 2528 | - name: mtxrQueueTreeDropped 2529 | oid: 1.3.6.1.4.1.14988.1.1.2.2.1.9 2530 | type: counter 2531 | help: ' - 1.3.6.1.4.1.14988.1.1.2.2.1.9' 2532 | indexes: 2533 | - labelname: mtxrQueueTreeIndex 2534 | type: gauge 2535 | - name: mtxrHlCoreVoltage 2536 | oid: 1.3.6.1.4.1.14988.1.1.3.1 2537 | type: gauge 2538 | help: core voltage - 1.3.6.1.4.1.14988.1.1.3.1 2539 | - name: mtxrHlThreeDotThreeVoltage 2540 | oid: 1.3.6.1.4.1.14988.1.1.3.2 2541 | type: gauge 2542 | help: 3.3V voltage - 1.3.6.1.4.1.14988.1.1.3.2 2543 | - name: mtxrHlFiveVoltage 2544 | oid: 1.3.6.1.4.1.14988.1.1.3.3 2545 | type: gauge 2546 | help: 5V voltage - 1.3.6.1.4.1.14988.1.1.3.3 2547 | - name: mtxrHlTwelveVoltage 2548 | oid: 1.3.6.1.4.1.14988.1.1.3.4 2549 | type: gauge 2550 | help: 12V voltage - 1.3.6.1.4.1.14988.1.1.3.4 2551 | - name: mtxrHlSensorTemperature 2552 | oid: 1.3.6.1.4.1.14988.1.1.3.5 2553 | type: gauge 2554 | help: temperature at sensor chip - 1.3.6.1.4.1.14988.1.1.3.5 2555 | - name: mtxrHlCpuTemperature 2556 | oid: 1.3.6.1.4.1.14988.1.1.3.6 2557 | type: gauge 2558 | help: temperature near cpu - 1.3.6.1.4.1.14988.1.1.3.6 2559 | - name: mtxrHlBoardTemperature 2560 | oid: 1.3.6.1.4.1.14988.1.1.3.7 2561 | type: gauge 2562 | help: ' - 1.3.6.1.4.1.14988.1.1.3.7' 2563 | - name: mtxrHlVoltage 2564 | oid: 1.3.6.1.4.1.14988.1.1.3.8 2565 | type: gauge 2566 | help: ' - 1.3.6.1.4.1.14988.1.1.3.8' 2567 | - name: mtxrHlActiveFan 2568 | oid: 1.3.6.1.4.1.14988.1.1.3.9 2569 | type: DisplayString 2570 | help: ' - 1.3.6.1.4.1.14988.1.1.3.9' 2571 | - name: mtxrHlTemperature 2572 | oid: 1.3.6.1.4.1.14988.1.1.3.10 2573 | type: gauge 2574 | help: ' - 1.3.6.1.4.1.14988.1.1.3.10' 2575 | - name: mtxrHlProcessorTemperature 2576 | oid: 1.3.6.1.4.1.14988.1.1.3.11 2577 | type: gauge 2578 | help: ' - 1.3.6.1.4.1.14988.1.1.3.11' 2579 | - name: mtxrHlPower 2580 | oid: 1.3.6.1.4.1.14988.1.1.3.12 2581 | type: gauge 2582 | help: Watts - 1.3.6.1.4.1.14988.1.1.3.12 2583 | - name: mtxrHlCurrent 2584 | oid: 1.3.6.1.4.1.14988.1.1.3.13 2585 | type: gauge 2586 | help: mA - 1.3.6.1.4.1.14988.1.1.3.13 2587 | - name: mtxrHlProcessorFrequency 2588 | oid: 1.3.6.1.4.1.14988.1.1.3.14 2589 | type: gauge 2590 | help: Mhz - 1.3.6.1.4.1.14988.1.1.3.14 2591 | - name: mtxrHlPowerSupplyState 2592 | oid: 1.3.6.1.4.1.14988.1.1.3.15 2593 | type: gauge 2594 | help: PSU state ok - 1.3.6.1.4.1.14988.1.1.3.15 2595 | enum_values: 2596 | 0: "false" 2597 | 1: "true" 2598 | - name: mtxrHlBackupPowerSupplyState 2599 | oid: 1.3.6.1.4.1.14988.1.1.3.16 2600 | type: gauge 2601 | help: backup PSU state ok - 1.3.6.1.4.1.14988.1.1.3.16 2602 | enum_values: 2603 | 0: "false" 2604 | 1: "true" 2605 | - name: mtxrHlFanSpeed1 2606 | oid: 1.3.6.1.4.1.14988.1.1.3.17 2607 | type: gauge 2608 | help: rpm - 1.3.6.1.4.1.14988.1.1.3.17 2609 | - name: mtxrHlFanSpeed2 2610 | oid: 1.3.6.1.4.1.14988.1.1.3.18 2611 | type: gauge 2612 | help: rpm - 1.3.6.1.4.1.14988.1.1.3.18 2613 | - name: mtxrGaugeIndex 2614 | oid: 1.3.6.1.4.1.14988.1.1.3.100.1.1 2615 | type: gauge 2616 | help: ' - 1.3.6.1.4.1.14988.1.1.3.100.1.1' 2617 | indexes: 2618 | - labelname: mtxrGaugeIndex 2619 | type: gauge 2620 | - name: mtxrGaugeName 2621 | oid: 1.3.6.1.4.1.14988.1.1.3.100.1.2 2622 | type: DisplayString 2623 | help: ' - 1.3.6.1.4.1.14988.1.1.3.100.1.2' 2624 | indexes: 2625 | - labelname: mtxrGaugeIndex 2626 | type: gauge 2627 | - name: mtxrGaugeValue 2628 | oid: 1.3.6.1.4.1.14988.1.1.3.100.1.3 2629 | type: gauge 2630 | help: ' - 1.3.6.1.4.1.14988.1.1.3.100.1.3' 2631 | indexes: 2632 | - labelname: mtxrGaugeIndex 2633 | type: gauge 2634 | - name: mtxrGaugeUnit 2635 | oid: 1.3.6.1.4.1.14988.1.1.3.100.1.4 2636 | type: gauge 2637 | help: units - 1.3.6.1.4.1.14988.1.1.3.100.1.4 2638 | indexes: 2639 | - labelname: mtxrGaugeIndex 2640 | type: gauge 2641 | enum_values: 2642 | 1: celsius 2643 | 2: rpm 2644 | 3: dV 2645 | 4: dA 2646 | 5: dW 2647 | 6: status 2648 | - name: mtxrLicSoftwareId 2649 | oid: 1.3.6.1.4.1.14988.1.1.4.1 2650 | type: DisplayString 2651 | help: software id - 1.3.6.1.4.1.14988.1.1.4.1 2652 | - name: mtxrLicUpgrUntil 2653 | oid: 1.3.6.1.4.1.14988.1.1.4.2 2654 | type: DateAndTime 2655 | help: current key allows upgrading until this date - 1.3.6.1.4.1.14988.1.1.4.2 2656 | - name: mtxrLicLevel 2657 | oid: 1.3.6.1.4.1.14988.1.1.4.3 2658 | type: gauge 2659 | help: current key level - 1.3.6.1.4.1.14988.1.1.4.3 2660 | - name: mtxrLicVersion 2661 | oid: 1.3.6.1.4.1.14988.1.1.4.4 2662 | type: DisplayString 2663 | help: software version - 1.3.6.1.4.1.14988.1.1.4.4 2664 | - name: mtxrLicUpgradableTo 2665 | oid: 1.3.6.1.4.1.14988.1.1.4.5 2666 | type: gauge 2667 | help: upgradable to - 1.3.6.1.4.1.14988.1.1.4.5 2668 | - name: mtxrHotspotActiveUserIndex 2669 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.1 2670 | type: gauge 2671 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.1' 2672 | indexes: 2673 | - labelname: mtxrHotspotActiveUserIndex 2674 | type: gauge 2675 | - name: mtxrHotspotActiveUserServerID 2676 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.2 2677 | type: gauge 2678 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.2' 2679 | indexes: 2680 | - labelname: mtxrHotspotActiveUserIndex 2681 | type: gauge 2682 | - name: mtxrHotspotActiveUserName 2683 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.3 2684 | type: DisplayString 2685 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.3' 2686 | indexes: 2687 | - labelname: mtxrHotspotActiveUserIndex 2688 | type: gauge 2689 | - name: mtxrHotspotActiveUserDomain 2690 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.4 2691 | type: DisplayString 2692 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.4' 2693 | indexes: 2694 | - labelname: mtxrHotspotActiveUserIndex 2695 | type: gauge 2696 | - name: mtxrHotspotActiveUserIP 2697 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.5 2698 | type: InetAddressIPv4 2699 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.5' 2700 | indexes: 2701 | - labelname: mtxrHotspotActiveUserIndex 2702 | type: gauge 2703 | - name: mtxrHotspotActiveUserMAC 2704 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.6 2705 | type: PhysAddress48 2706 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.6' 2707 | indexes: 2708 | - labelname: mtxrHotspotActiveUserIndex 2709 | type: gauge 2710 | - name: mtxrHotspotActiveUserConnectTime 2711 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.7 2712 | type: gauge 2713 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.7' 2714 | indexes: 2715 | - labelname: mtxrHotspotActiveUserIndex 2716 | type: gauge 2717 | - name: mtxrHotspotActiveUserValidTillTime 2718 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.8 2719 | type: gauge 2720 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.8' 2721 | indexes: 2722 | - labelname: mtxrHotspotActiveUserIndex 2723 | type: gauge 2724 | - name: mtxrHotspotActiveUserIdleStartTime 2725 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.9 2726 | type: gauge 2727 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.9' 2728 | indexes: 2729 | - labelname: mtxrHotspotActiveUserIndex 2730 | type: gauge 2731 | - name: mtxrHotspotActiveUserIdleTimeout 2732 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.10 2733 | type: gauge 2734 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.10' 2735 | indexes: 2736 | - labelname: mtxrHotspotActiveUserIndex 2737 | type: gauge 2738 | - name: mtxrHotspotActiveUserPingTimeout 2739 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.11 2740 | type: gauge 2741 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.11' 2742 | indexes: 2743 | - labelname: mtxrHotspotActiveUserIndex 2744 | type: gauge 2745 | - name: mtxrHotspotActiveUserBytesIn 2746 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.12 2747 | type: counter 2748 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.12' 2749 | indexes: 2750 | - labelname: mtxrHotspotActiveUserIndex 2751 | type: gauge 2752 | - name: mtxrHotspotActiveUserBytesOut 2753 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.13 2754 | type: counter 2755 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.13' 2756 | indexes: 2757 | - labelname: mtxrHotspotActiveUserIndex 2758 | type: gauge 2759 | - name: mtxrHotspotActiveUserPacketsIn 2760 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.14 2761 | type: counter 2762 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.14' 2763 | indexes: 2764 | - labelname: mtxrHotspotActiveUserIndex 2765 | type: gauge 2766 | - name: mtxrHotspotActiveUserPacketsOut 2767 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.15 2768 | type: counter 2769 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.15' 2770 | indexes: 2771 | - labelname: mtxrHotspotActiveUserIndex 2772 | type: gauge 2773 | - name: mtxrHotspotActiveUserLimitBytesIn 2774 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.16 2775 | type: counter 2776 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.16' 2777 | indexes: 2778 | - labelname: mtxrHotspotActiveUserIndex 2779 | type: gauge 2780 | - name: mtxrHotspotActiveUserLimitBytesOut 2781 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.17 2782 | type: counter 2783 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.17' 2784 | indexes: 2785 | - labelname: mtxrHotspotActiveUserIndex 2786 | type: gauge 2787 | - name: mtxrHotspotActiveUserAdvertStatus 2788 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.18 2789 | type: gauge 2790 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.18' 2791 | indexes: 2792 | - labelname: mtxrHotspotActiveUserIndex 2793 | type: gauge 2794 | - name: mtxrHotspotActiveUserRadius 2795 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.19 2796 | type: gauge 2797 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.19' 2798 | indexes: 2799 | - labelname: mtxrHotspotActiveUserIndex 2800 | type: gauge 2801 | - name: mtxrHotspotActiveUserBlockedByAdvert 2802 | oid: 1.3.6.1.4.1.14988.1.1.5.1.1.20 2803 | type: gauge 2804 | help: ' - 1.3.6.1.4.1.14988.1.1.5.1.1.20' 2805 | indexes: 2806 | - labelname: mtxrHotspotActiveUserIndex 2807 | type: gauge 2808 | - name: mtxrDHCPLeaseCount 2809 | oid: 1.3.6.1.4.1.14988.1.1.6.1 2810 | type: gauge 2811 | help: ' - 1.3.6.1.4.1.14988.1.1.6.1' 2812 | - name: mtxrSystemReboot 2813 | oid: 1.3.6.1.4.1.14988.1.1.7.1 2814 | type: gauge 2815 | help: set non zero to reboot - 1.3.6.1.4.1.14988.1.1.7.1 2816 | - name: mtxrUSBPowerReset 2817 | oid: 1.3.6.1.4.1.14988.1.1.7.2 2818 | type: gauge 2819 | help: switches off usb power for specified amout of seconds - 1.3.6.1.4.1.14988.1.1.7.2 2820 | - name: mtxrSerialNumber 2821 | oid: 1.3.6.1.4.1.14988.1.1.7.3 2822 | type: DisplayString 2823 | help: RouterBOARD serial number - 1.3.6.1.4.1.14988.1.1.7.3 2824 | - name: mtxrFirmwareVersion 2825 | oid: 1.3.6.1.4.1.14988.1.1.7.4 2826 | type: DisplayString 2827 | help: Current firmware version - 1.3.6.1.4.1.14988.1.1.7.4 2828 | - name: mtxrNote 2829 | oid: 1.3.6.1.4.1.14988.1.1.7.5 2830 | type: DisplayString 2831 | help: note - 1.3.6.1.4.1.14988.1.1.7.5 2832 | - name: mtxrBuildTime 2833 | oid: 1.3.6.1.4.1.14988.1.1.7.6 2834 | type: DisplayString 2835 | help: build time - 1.3.6.1.4.1.14988.1.1.7.6 2836 | - name: mtxrFirmwareUpgradeVersion 2837 | oid: 1.3.6.1.4.1.14988.1.1.7.7 2838 | type: DisplayString 2839 | help: Upgrade firmware version - 1.3.6.1.4.1.14988.1.1.7.7 2840 | - name: mtxrBoardName 2841 | oid: 1.3.6.1.4.1.14988.1.1.7.8 2842 | type: DisplayString 2843 | help: board name - 1.3.6.1.4.1.14988.1.1.7.8 2844 | - name: mtxrScriptIndex 2845 | oid: 1.3.6.1.4.1.14988.1.1.8.1.1.1 2846 | type: gauge 2847 | help: ' - 1.3.6.1.4.1.14988.1.1.8.1.1.1' 2848 | indexes: 2849 | - labelname: mtxrScriptIndex 2850 | type: gauge 2851 | - name: mtxrScriptName 2852 | oid: 1.3.6.1.4.1.14988.1.1.8.1.1.2 2853 | type: DisplayString 2854 | help: ' - 1.3.6.1.4.1.14988.1.1.8.1.1.2' 2855 | indexes: 2856 | - labelname: mtxrScriptIndex 2857 | type: gauge 2858 | - name: mtxrScriptRunCmd 2859 | oid: 1.3.6.1.4.1.14988.1.1.8.1.1.3 2860 | type: gauge 2861 | help: set non zero to run - 1.3.6.1.4.1.14988.1.1.8.1.1.3 2862 | indexes: 2863 | - labelname: mtxrScriptIndex 2864 | type: gauge 2865 | - name: mtxrDnStatIndex 2866 | oid: 1.3.6.1.4.1.14988.1.1.10.1.1.1 2867 | type: gauge 2868 | help: ' - 1.3.6.1.4.1.14988.1.1.10.1.1.1' 2869 | indexes: 2870 | - labelname: mtxrDnStatIndex 2871 | type: gauge 2872 | - name: mtxrDnStatTxRate 2873 | oid: 1.3.6.1.4.1.14988.1.1.10.1.1.2 2874 | type: gauge 2875 | help: bits per second - 1.3.6.1.4.1.14988.1.1.10.1.1.2 2876 | indexes: 2877 | - labelname: mtxrDnStatIndex 2878 | type: gauge 2879 | - name: mtxrDnStatRxRate 2880 | oid: 1.3.6.1.4.1.14988.1.1.10.1.1.3 2881 | type: gauge 2882 | help: bits per second - 1.3.6.1.4.1.14988.1.1.10.1.1.3 2883 | indexes: 2884 | - labelname: mtxrDnStatIndex 2885 | type: gauge 2886 | - name: mtxrDnStatTxStrength 2887 | oid: 1.3.6.1.4.1.14988.1.1.10.1.1.4 2888 | type: gauge 2889 | help: dBm - 1.3.6.1.4.1.14988.1.1.10.1.1.4 2890 | indexes: 2891 | - labelname: mtxrDnStatIndex 2892 | type: gauge 2893 | - name: mtxrDnStatRxStrength 2894 | oid: 1.3.6.1.4.1.14988.1.1.10.1.1.5 2895 | type: gauge 2896 | help: dBm - 1.3.6.1.4.1.14988.1.1.10.1.1.5 2897 | indexes: 2898 | - labelname: mtxrDnStatIndex 2899 | type: gauge 2900 | - name: mtxrDnConnected 2901 | oid: 1.3.6.1.4.1.14988.1.1.10.1.1.6 2902 | type: gauge 2903 | help: 0 - not connected, connected otherwise - 1.3.6.1.4.1.14988.1.1.10.1.1.6 2904 | indexes: 2905 | - labelname: mtxrDnStatIndex 2906 | type: gauge 2907 | - name: mtxrNeighborIndex 2908 | oid: 1.3.6.1.4.1.14988.1.1.11.1.1.1 2909 | type: gauge 2910 | help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.1' 2911 | indexes: 2912 | - labelname: mtxrNeighborIndex 2913 | type: gauge 2914 | - name: mtxrNeighborIpAddress 2915 | oid: 1.3.6.1.4.1.14988.1.1.11.1.1.2 2916 | type: InetAddressIPv4 2917 | help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.2' 2918 | indexes: 2919 | - labelname: mtxrNeighborIndex 2920 | type: gauge 2921 | - name: mtxrNeighborMacAddress 2922 | oid: 1.3.6.1.4.1.14988.1.1.11.1.1.3 2923 | type: PhysAddress48 2924 | help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.3' 2925 | indexes: 2926 | - labelname: mtxrNeighborIndex 2927 | type: gauge 2928 | - name: mtxrNeighborVersion 2929 | oid: 1.3.6.1.4.1.14988.1.1.11.1.1.4 2930 | type: DisplayString 2931 | help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.4' 2932 | indexes: 2933 | - labelname: mtxrNeighborIndex 2934 | type: gauge 2935 | - name: mtxrNeighborPlatform 2936 | oid: 1.3.6.1.4.1.14988.1.1.11.1.1.5 2937 | type: DisplayString 2938 | help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.5' 2939 | indexes: 2940 | - labelname: mtxrNeighborIndex 2941 | type: gauge 2942 | - name: mtxrNeighborIdentity 2943 | oid: 1.3.6.1.4.1.14988.1.1.11.1.1.6 2944 | type: DisplayString 2945 | help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.6' 2946 | indexes: 2947 | - labelname: mtxrNeighborIndex 2948 | type: gauge 2949 | - name: mtxrNeighborSoftwareID 2950 | oid: 1.3.6.1.4.1.14988.1.1.11.1.1.7 2951 | type: DisplayString 2952 | help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.7' 2953 | indexes: 2954 | - labelname: mtxrNeighborIndex 2955 | type: gauge 2956 | - name: mtxrNeighborInterfaceID 2957 | oid: 1.3.6.1.4.1.14988.1.1.11.1.1.8 2958 | type: gauge 2959 | help: ' - 1.3.6.1.4.1.14988.1.1.11.1.1.8' 2960 | indexes: 2961 | - labelname: mtxrNeighborIndex 2962 | type: gauge 2963 | - name: mtxrDate 2964 | oid: 1.3.6.1.4.1.14988.1.1.12.1 2965 | type: gauge 2966 | help: UNIX time - 1.3.6.1.4.1.14988.1.1.12.1 2967 | - name: mtxrLongtitude 2968 | oid: 1.3.6.1.4.1.14988.1.1.12.2 2969 | type: DisplayString 2970 | help: longtitude - 1.3.6.1.4.1.14988.1.1.12.2 2971 | - name: mtxrLatitude 2972 | oid: 1.3.6.1.4.1.14988.1.1.12.3 2973 | type: DisplayString 2974 | help: latitude - 1.3.6.1.4.1.14988.1.1.12.3 2975 | - name: mtxrAltitude 2976 | oid: 1.3.6.1.4.1.14988.1.1.12.4 2977 | type: DisplayString 2978 | help: altitude - 1.3.6.1.4.1.14988.1.1.12.4 2979 | - name: mtxrSpeed 2980 | oid: 1.3.6.1.4.1.14988.1.1.12.5 2981 | type: DisplayString 2982 | help: speed - 1.3.6.1.4.1.14988.1.1.12.5 2983 | - name: mtxrSattelites 2984 | oid: 1.3.6.1.4.1.14988.1.1.12.6 2985 | type: gauge 2986 | help: visible sattelite count - 1.3.6.1.4.1.14988.1.1.12.6 2987 | - name: mtxrValid 2988 | oid: 1.3.6.1.4.1.14988.1.1.12.7 2989 | type: gauge 2990 | help: is the data valid - 1.3.6.1.4.1.14988.1.1.12.7 2991 | - name: mtxrWirelessModemSignalStrength 2992 | oid: 1.3.6.1.4.1.14988.1.1.13.1 2993 | type: gauge 2994 | help: signal strength in dBm (if first ppp-client modem supports) - 1.3.6.1.4.1.14988.1.1.13.1 2995 | - name: mtxrWirelessModemSignalECIO 2996 | oid: 1.3.6.1.4.1.14988.1.1.13.2 2997 | type: gauge 2998 | help: signal EC/IO in dB (if first ppp-client modem supports) - 1.3.6.1.4.1.14988.1.1.13.2 2999 | - name: mtxrInterfaceStatsIndex 3000 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.1 3001 | type: gauge 3002 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.1' 3003 | indexes: 3004 | - labelname: mtxrInterfaceStatsIndex 3005 | type: gauge 3006 | lookups: 3007 | - labels: 3008 | - mtxrInterfaceStatsIndex 3009 | labelname: ifName 3010 | oid: 1.3.6.1.2.1.31.1.1.1.1 3011 | type: DisplayString 3012 | - name: mtxrInterfaceStatsName 3013 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.2 3014 | type: DisplayString 3015 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.2' 3016 | indexes: 3017 | - labelname: mtxrInterfaceStatsIndex 3018 | type: gauge 3019 | lookups: 3020 | - labels: 3021 | - mtxrInterfaceStatsIndex 3022 | labelname: ifName 3023 | oid: 1.3.6.1.2.1.31.1.1.1.1 3024 | type: DisplayString 3025 | - name: mtxrInterfaceStatsDriverRxBytes 3026 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.11 3027 | type: counter 3028 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.11' 3029 | indexes: 3030 | - labelname: mtxrInterfaceStatsIndex 3031 | type: gauge 3032 | lookups: 3033 | - labels: 3034 | - mtxrInterfaceStatsIndex 3035 | labelname: ifName 3036 | oid: 1.3.6.1.2.1.31.1.1.1.1 3037 | type: DisplayString 3038 | - name: mtxrInterfaceStatsDriverRxPackets 3039 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.12 3040 | type: counter 3041 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.12' 3042 | indexes: 3043 | - labelname: mtxrInterfaceStatsIndex 3044 | type: gauge 3045 | lookups: 3046 | - labels: 3047 | - mtxrInterfaceStatsIndex 3048 | labelname: ifName 3049 | oid: 1.3.6.1.2.1.31.1.1.1.1 3050 | type: DisplayString 3051 | - name: mtxrInterfaceStatsDriverTxBytes 3052 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.13 3053 | type: counter 3054 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.13' 3055 | indexes: 3056 | - labelname: mtxrInterfaceStatsIndex 3057 | type: gauge 3058 | lookups: 3059 | - labels: 3060 | - mtxrInterfaceStatsIndex 3061 | labelname: ifName 3062 | oid: 1.3.6.1.2.1.31.1.1.1.1 3063 | type: DisplayString 3064 | - name: mtxrInterfaceStatsDriverTxPackets 3065 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.14 3066 | type: counter 3067 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.14' 3068 | indexes: 3069 | - labelname: mtxrInterfaceStatsIndex 3070 | type: gauge 3071 | lookups: 3072 | - labels: 3073 | - mtxrInterfaceStatsIndex 3074 | labelname: ifName 3075 | oid: 1.3.6.1.2.1.31.1.1.1.1 3076 | type: DisplayString 3077 | - name: mtxrInterfaceStatsTxRx64 3078 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.15 3079 | type: counter 3080 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.15' 3081 | indexes: 3082 | - labelname: mtxrInterfaceStatsIndex 3083 | type: gauge 3084 | lookups: 3085 | - labels: 3086 | - mtxrInterfaceStatsIndex 3087 | labelname: ifName 3088 | oid: 1.3.6.1.2.1.31.1.1.1.1 3089 | type: DisplayString 3090 | - name: mtxrInterfaceStatsTxRx65To127 3091 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.16 3092 | type: counter 3093 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.16' 3094 | indexes: 3095 | - labelname: mtxrInterfaceStatsIndex 3096 | type: gauge 3097 | lookups: 3098 | - labels: 3099 | - mtxrInterfaceStatsIndex 3100 | labelname: ifName 3101 | oid: 1.3.6.1.2.1.31.1.1.1.1 3102 | type: DisplayString 3103 | - name: mtxrInterfaceStatsTxRx128To255 3104 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.17 3105 | type: counter 3106 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.17' 3107 | indexes: 3108 | - labelname: mtxrInterfaceStatsIndex 3109 | type: gauge 3110 | lookups: 3111 | - labels: 3112 | - mtxrInterfaceStatsIndex 3113 | labelname: ifName 3114 | oid: 1.3.6.1.2.1.31.1.1.1.1 3115 | type: DisplayString 3116 | - name: mtxrInterfaceStatsTxRx256To511 3117 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.18 3118 | type: counter 3119 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.18' 3120 | indexes: 3121 | - labelname: mtxrInterfaceStatsIndex 3122 | type: gauge 3123 | lookups: 3124 | - labels: 3125 | - mtxrInterfaceStatsIndex 3126 | labelname: ifName 3127 | oid: 1.3.6.1.2.1.31.1.1.1.1 3128 | type: DisplayString 3129 | - name: mtxrInterfaceStatsTxRx512To1023 3130 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.19 3131 | type: counter 3132 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.19' 3133 | indexes: 3134 | - labelname: mtxrInterfaceStatsIndex 3135 | type: gauge 3136 | lookups: 3137 | - labels: 3138 | - mtxrInterfaceStatsIndex 3139 | labelname: ifName 3140 | oid: 1.3.6.1.2.1.31.1.1.1.1 3141 | type: DisplayString 3142 | - name: mtxrInterfaceStatsTxRx1024To1518 3143 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.20 3144 | type: counter 3145 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.20' 3146 | indexes: 3147 | - labelname: mtxrInterfaceStatsIndex 3148 | type: gauge 3149 | lookups: 3150 | - labels: 3151 | - mtxrInterfaceStatsIndex 3152 | labelname: ifName 3153 | oid: 1.3.6.1.2.1.31.1.1.1.1 3154 | type: DisplayString 3155 | - name: mtxrInterfaceStatsTxRx1519ToMax 3156 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.21 3157 | type: counter 3158 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.21' 3159 | indexes: 3160 | - labelname: mtxrInterfaceStatsIndex 3161 | type: gauge 3162 | lookups: 3163 | - labels: 3164 | - mtxrInterfaceStatsIndex 3165 | labelname: ifName 3166 | oid: 1.3.6.1.2.1.31.1.1.1.1 3167 | type: DisplayString 3168 | - name: mtxrInterfaceStatsRxBytes 3169 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.31 3170 | type: counter 3171 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.31' 3172 | indexes: 3173 | - labelname: mtxrInterfaceStatsIndex 3174 | type: gauge 3175 | lookups: 3176 | - labels: 3177 | - mtxrInterfaceStatsIndex 3178 | labelname: ifName 3179 | oid: 1.3.6.1.2.1.31.1.1.1.1 3180 | type: DisplayString 3181 | - name: mtxrInterfaceStatsRxPackets 3182 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.32 3183 | type: counter 3184 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.32' 3185 | indexes: 3186 | - labelname: mtxrInterfaceStatsIndex 3187 | type: gauge 3188 | lookups: 3189 | - labels: 3190 | - mtxrInterfaceStatsIndex 3191 | labelname: ifName 3192 | oid: 1.3.6.1.2.1.31.1.1.1.1 3193 | type: DisplayString 3194 | - name: mtxrInterfaceStatsRxTooShort 3195 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.33 3196 | type: counter 3197 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.33' 3198 | indexes: 3199 | - labelname: mtxrInterfaceStatsIndex 3200 | type: gauge 3201 | lookups: 3202 | - labels: 3203 | - mtxrInterfaceStatsIndex 3204 | labelname: ifName 3205 | oid: 1.3.6.1.2.1.31.1.1.1.1 3206 | type: DisplayString 3207 | - name: mtxrInterfaceStatsRx64 3208 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.34 3209 | type: counter 3210 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.34' 3211 | indexes: 3212 | - labelname: mtxrInterfaceStatsIndex 3213 | type: gauge 3214 | lookups: 3215 | - labels: 3216 | - mtxrInterfaceStatsIndex 3217 | labelname: ifName 3218 | oid: 1.3.6.1.2.1.31.1.1.1.1 3219 | type: DisplayString 3220 | - name: mtxrInterfaceStatsRx65To127 3221 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.35 3222 | type: counter 3223 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.35' 3224 | indexes: 3225 | - labelname: mtxrInterfaceStatsIndex 3226 | type: gauge 3227 | lookups: 3228 | - labels: 3229 | - mtxrInterfaceStatsIndex 3230 | labelname: ifName 3231 | oid: 1.3.6.1.2.1.31.1.1.1.1 3232 | type: DisplayString 3233 | - name: mtxrInterfaceStatsRx128To255 3234 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.36 3235 | type: counter 3236 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.36' 3237 | indexes: 3238 | - labelname: mtxrInterfaceStatsIndex 3239 | type: gauge 3240 | lookups: 3241 | - labels: 3242 | - mtxrInterfaceStatsIndex 3243 | labelname: ifName 3244 | oid: 1.3.6.1.2.1.31.1.1.1.1 3245 | type: DisplayString 3246 | - name: mtxrInterfaceStatsRx256To511 3247 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.37 3248 | type: counter 3249 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.37' 3250 | indexes: 3251 | - labelname: mtxrInterfaceStatsIndex 3252 | type: gauge 3253 | lookups: 3254 | - labels: 3255 | - mtxrInterfaceStatsIndex 3256 | labelname: ifName 3257 | oid: 1.3.6.1.2.1.31.1.1.1.1 3258 | type: DisplayString 3259 | - name: mtxrInterfaceStatsRx512To1023 3260 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.38 3261 | type: counter 3262 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.38' 3263 | indexes: 3264 | - labelname: mtxrInterfaceStatsIndex 3265 | type: gauge 3266 | lookups: 3267 | - labels: 3268 | - mtxrInterfaceStatsIndex 3269 | labelname: ifName 3270 | oid: 1.3.6.1.2.1.31.1.1.1.1 3271 | type: DisplayString 3272 | - name: mtxrInterfaceStatsRx1024To1518 3273 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.39 3274 | type: counter 3275 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.39' 3276 | indexes: 3277 | - labelname: mtxrInterfaceStatsIndex 3278 | type: gauge 3279 | lookups: 3280 | - labels: 3281 | - mtxrInterfaceStatsIndex 3282 | labelname: ifName 3283 | oid: 1.3.6.1.2.1.31.1.1.1.1 3284 | type: DisplayString 3285 | - name: mtxrInterfaceStatsRx1519ToMax 3286 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.40 3287 | type: counter 3288 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.40' 3289 | indexes: 3290 | - labelname: mtxrInterfaceStatsIndex 3291 | type: gauge 3292 | lookups: 3293 | - labels: 3294 | - mtxrInterfaceStatsIndex 3295 | labelname: ifName 3296 | oid: 1.3.6.1.2.1.31.1.1.1.1 3297 | type: DisplayString 3298 | - name: mtxrInterfaceStatsRxTooLong 3299 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.41 3300 | type: counter 3301 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.41' 3302 | indexes: 3303 | - labelname: mtxrInterfaceStatsIndex 3304 | type: gauge 3305 | lookups: 3306 | - labels: 3307 | - mtxrInterfaceStatsIndex 3308 | labelname: ifName 3309 | oid: 1.3.6.1.2.1.31.1.1.1.1 3310 | type: DisplayString 3311 | - name: mtxrInterfaceStatsRxBroadcast 3312 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.42 3313 | type: counter 3314 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.42' 3315 | indexes: 3316 | - labelname: mtxrInterfaceStatsIndex 3317 | type: gauge 3318 | lookups: 3319 | - labels: 3320 | - mtxrInterfaceStatsIndex 3321 | labelname: ifName 3322 | oid: 1.3.6.1.2.1.31.1.1.1.1 3323 | type: DisplayString 3324 | - name: mtxrInterfaceStatsRxPause 3325 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.43 3326 | type: counter 3327 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.43' 3328 | indexes: 3329 | - labelname: mtxrInterfaceStatsIndex 3330 | type: gauge 3331 | lookups: 3332 | - labels: 3333 | - mtxrInterfaceStatsIndex 3334 | labelname: ifName 3335 | oid: 1.3.6.1.2.1.31.1.1.1.1 3336 | type: DisplayString 3337 | - name: mtxrInterfaceStatsRxMulticast 3338 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.44 3339 | type: counter 3340 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.44' 3341 | indexes: 3342 | - labelname: mtxrInterfaceStatsIndex 3343 | type: gauge 3344 | lookups: 3345 | - labels: 3346 | - mtxrInterfaceStatsIndex 3347 | labelname: ifName 3348 | oid: 1.3.6.1.2.1.31.1.1.1.1 3349 | type: DisplayString 3350 | - name: mtxrInterfaceStatsRxFCSError 3351 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.45 3352 | type: counter 3353 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.45' 3354 | indexes: 3355 | - labelname: mtxrInterfaceStatsIndex 3356 | type: gauge 3357 | lookups: 3358 | - labels: 3359 | - mtxrInterfaceStatsIndex 3360 | labelname: ifName 3361 | oid: 1.3.6.1.2.1.31.1.1.1.1 3362 | type: DisplayString 3363 | - name: mtxrInterfaceStatsRxAlignError 3364 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.46 3365 | type: counter 3366 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.46' 3367 | indexes: 3368 | - labelname: mtxrInterfaceStatsIndex 3369 | type: gauge 3370 | lookups: 3371 | - labels: 3372 | - mtxrInterfaceStatsIndex 3373 | labelname: ifName 3374 | oid: 1.3.6.1.2.1.31.1.1.1.1 3375 | type: DisplayString 3376 | - name: mtxrInterfaceStatsRxFragment 3377 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.47 3378 | type: counter 3379 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.47' 3380 | indexes: 3381 | - labelname: mtxrInterfaceStatsIndex 3382 | type: gauge 3383 | lookups: 3384 | - labels: 3385 | - mtxrInterfaceStatsIndex 3386 | labelname: ifName 3387 | oid: 1.3.6.1.2.1.31.1.1.1.1 3388 | type: DisplayString 3389 | - name: mtxrInterfaceStatsRxOverflow 3390 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.48 3391 | type: counter 3392 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.48' 3393 | indexes: 3394 | - labelname: mtxrInterfaceStatsIndex 3395 | type: gauge 3396 | lookups: 3397 | - labels: 3398 | - mtxrInterfaceStatsIndex 3399 | labelname: ifName 3400 | oid: 1.3.6.1.2.1.31.1.1.1.1 3401 | type: DisplayString 3402 | - name: mtxrInterfaceStatsRxControl 3403 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.49 3404 | type: counter 3405 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.49' 3406 | indexes: 3407 | - labelname: mtxrInterfaceStatsIndex 3408 | type: gauge 3409 | lookups: 3410 | - labels: 3411 | - mtxrInterfaceStatsIndex 3412 | labelname: ifName 3413 | oid: 1.3.6.1.2.1.31.1.1.1.1 3414 | type: DisplayString 3415 | - name: mtxrInterfaceStatsRxUnknownOp 3416 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.50 3417 | type: counter 3418 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.50' 3419 | indexes: 3420 | - labelname: mtxrInterfaceStatsIndex 3421 | type: gauge 3422 | lookups: 3423 | - labels: 3424 | - mtxrInterfaceStatsIndex 3425 | labelname: ifName 3426 | oid: 1.3.6.1.2.1.31.1.1.1.1 3427 | type: DisplayString 3428 | - name: mtxrInterfaceStatsRxLengthError 3429 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.51 3430 | type: counter 3431 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.51' 3432 | indexes: 3433 | - labelname: mtxrInterfaceStatsIndex 3434 | type: gauge 3435 | lookups: 3436 | - labels: 3437 | - mtxrInterfaceStatsIndex 3438 | labelname: ifName 3439 | oid: 1.3.6.1.2.1.31.1.1.1.1 3440 | type: DisplayString 3441 | - name: mtxrInterfaceStatsRxCodeError 3442 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.52 3443 | type: counter 3444 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.52' 3445 | indexes: 3446 | - labelname: mtxrInterfaceStatsIndex 3447 | type: gauge 3448 | lookups: 3449 | - labels: 3450 | - mtxrInterfaceStatsIndex 3451 | labelname: ifName 3452 | oid: 1.3.6.1.2.1.31.1.1.1.1 3453 | type: DisplayString 3454 | - name: mtxrInterfaceStatsRxCarrierError 3455 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.53 3456 | type: counter 3457 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.53' 3458 | indexes: 3459 | - labelname: mtxrInterfaceStatsIndex 3460 | type: gauge 3461 | lookups: 3462 | - labels: 3463 | - mtxrInterfaceStatsIndex 3464 | labelname: ifName 3465 | oid: 1.3.6.1.2.1.31.1.1.1.1 3466 | type: DisplayString 3467 | - name: mtxrInterfaceStatsRxJabber 3468 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.54 3469 | type: counter 3470 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.54' 3471 | indexes: 3472 | - labelname: mtxrInterfaceStatsIndex 3473 | type: gauge 3474 | lookups: 3475 | - labels: 3476 | - mtxrInterfaceStatsIndex 3477 | labelname: ifName 3478 | oid: 1.3.6.1.2.1.31.1.1.1.1 3479 | type: DisplayString 3480 | - name: mtxrInterfaceStatsRxDrop 3481 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.55 3482 | type: counter 3483 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.55' 3484 | indexes: 3485 | - labelname: mtxrInterfaceStatsIndex 3486 | type: gauge 3487 | lookups: 3488 | - labels: 3489 | - mtxrInterfaceStatsIndex 3490 | labelname: ifName 3491 | oid: 1.3.6.1.2.1.31.1.1.1.1 3492 | type: DisplayString 3493 | - name: mtxrInterfaceStatsTxBytes 3494 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.61 3495 | type: counter 3496 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.61' 3497 | indexes: 3498 | - labelname: mtxrInterfaceStatsIndex 3499 | type: gauge 3500 | lookups: 3501 | - labels: 3502 | - mtxrInterfaceStatsIndex 3503 | labelname: ifName 3504 | oid: 1.3.6.1.2.1.31.1.1.1.1 3505 | type: DisplayString 3506 | - name: mtxrInterfaceStatsTxPackets 3507 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.62 3508 | type: counter 3509 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.62' 3510 | indexes: 3511 | - labelname: mtxrInterfaceStatsIndex 3512 | type: gauge 3513 | lookups: 3514 | - labels: 3515 | - mtxrInterfaceStatsIndex 3516 | labelname: ifName 3517 | oid: 1.3.6.1.2.1.31.1.1.1.1 3518 | type: DisplayString 3519 | - name: mtxrInterfaceStatsTxTooShort 3520 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.63 3521 | type: counter 3522 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.63' 3523 | indexes: 3524 | - labelname: mtxrInterfaceStatsIndex 3525 | type: gauge 3526 | lookups: 3527 | - labels: 3528 | - mtxrInterfaceStatsIndex 3529 | labelname: ifName 3530 | oid: 1.3.6.1.2.1.31.1.1.1.1 3531 | type: DisplayString 3532 | - name: mtxrInterfaceStatsTx64 3533 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.64 3534 | type: counter 3535 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.64' 3536 | indexes: 3537 | - labelname: mtxrInterfaceStatsIndex 3538 | type: gauge 3539 | lookups: 3540 | - labels: 3541 | - mtxrInterfaceStatsIndex 3542 | labelname: ifName 3543 | oid: 1.3.6.1.2.1.31.1.1.1.1 3544 | type: DisplayString 3545 | - name: mtxrInterfaceStatsTx65To127 3546 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.65 3547 | type: counter 3548 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.65' 3549 | indexes: 3550 | - labelname: mtxrInterfaceStatsIndex 3551 | type: gauge 3552 | lookups: 3553 | - labels: 3554 | - mtxrInterfaceStatsIndex 3555 | labelname: ifName 3556 | oid: 1.3.6.1.2.1.31.1.1.1.1 3557 | type: DisplayString 3558 | - name: mtxrInterfaceStatsTx128To255 3559 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.66 3560 | type: counter 3561 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.66' 3562 | indexes: 3563 | - labelname: mtxrInterfaceStatsIndex 3564 | type: gauge 3565 | lookups: 3566 | - labels: 3567 | - mtxrInterfaceStatsIndex 3568 | labelname: ifName 3569 | oid: 1.3.6.1.2.1.31.1.1.1.1 3570 | type: DisplayString 3571 | - name: mtxrInterfaceStatsTx256To511 3572 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.67 3573 | type: counter 3574 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.67' 3575 | indexes: 3576 | - labelname: mtxrInterfaceStatsIndex 3577 | type: gauge 3578 | lookups: 3579 | - labels: 3580 | - mtxrInterfaceStatsIndex 3581 | labelname: ifName 3582 | oid: 1.3.6.1.2.1.31.1.1.1.1 3583 | type: DisplayString 3584 | - name: mtxrInterfaceStatsTx512To1023 3585 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.68 3586 | type: counter 3587 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.68' 3588 | indexes: 3589 | - labelname: mtxrInterfaceStatsIndex 3590 | type: gauge 3591 | lookups: 3592 | - labels: 3593 | - mtxrInterfaceStatsIndex 3594 | labelname: ifName 3595 | oid: 1.3.6.1.2.1.31.1.1.1.1 3596 | type: DisplayString 3597 | - name: mtxrInterfaceStatsTx1024To1518 3598 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.69 3599 | type: counter 3600 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.69' 3601 | indexes: 3602 | - labelname: mtxrInterfaceStatsIndex 3603 | type: gauge 3604 | lookups: 3605 | - labels: 3606 | - mtxrInterfaceStatsIndex 3607 | labelname: ifName 3608 | oid: 1.3.6.1.2.1.31.1.1.1.1 3609 | type: DisplayString 3610 | - name: mtxrInterfaceStatsTx1519ToMax 3611 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.70 3612 | type: counter 3613 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.70' 3614 | indexes: 3615 | - labelname: mtxrInterfaceStatsIndex 3616 | type: gauge 3617 | lookups: 3618 | - labels: 3619 | - mtxrInterfaceStatsIndex 3620 | labelname: ifName 3621 | oid: 1.3.6.1.2.1.31.1.1.1.1 3622 | type: DisplayString 3623 | - name: mtxrInterfaceStatsTxTooLong 3624 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.71 3625 | type: counter 3626 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.71' 3627 | indexes: 3628 | - labelname: mtxrInterfaceStatsIndex 3629 | type: gauge 3630 | lookups: 3631 | - labels: 3632 | - mtxrInterfaceStatsIndex 3633 | labelname: ifName 3634 | oid: 1.3.6.1.2.1.31.1.1.1.1 3635 | type: DisplayString 3636 | - name: mtxrInterfaceStatsTxBroadcast 3637 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.72 3638 | type: counter 3639 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.72' 3640 | indexes: 3641 | - labelname: mtxrInterfaceStatsIndex 3642 | type: gauge 3643 | lookups: 3644 | - labels: 3645 | - mtxrInterfaceStatsIndex 3646 | labelname: ifName 3647 | oid: 1.3.6.1.2.1.31.1.1.1.1 3648 | type: DisplayString 3649 | - name: mtxrInterfaceStatsTxPause 3650 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.73 3651 | type: counter 3652 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.73' 3653 | indexes: 3654 | - labelname: mtxrInterfaceStatsIndex 3655 | type: gauge 3656 | lookups: 3657 | - labels: 3658 | - mtxrInterfaceStatsIndex 3659 | labelname: ifName 3660 | oid: 1.3.6.1.2.1.31.1.1.1.1 3661 | type: DisplayString 3662 | - name: mtxrInterfaceStatsTxMulticast 3663 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.74 3664 | type: counter 3665 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.74' 3666 | indexes: 3667 | - labelname: mtxrInterfaceStatsIndex 3668 | type: gauge 3669 | lookups: 3670 | - labels: 3671 | - mtxrInterfaceStatsIndex 3672 | labelname: ifName 3673 | oid: 1.3.6.1.2.1.31.1.1.1.1 3674 | type: DisplayString 3675 | - name: mtxrInterfaceStatsTxUnderrun 3676 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.75 3677 | type: counter 3678 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.75' 3679 | indexes: 3680 | - labelname: mtxrInterfaceStatsIndex 3681 | type: gauge 3682 | lookups: 3683 | - labels: 3684 | - mtxrInterfaceStatsIndex 3685 | labelname: ifName 3686 | oid: 1.3.6.1.2.1.31.1.1.1.1 3687 | type: DisplayString 3688 | - name: mtxrInterfaceStatsTxCollision 3689 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.76 3690 | type: counter 3691 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.76' 3692 | indexes: 3693 | - labelname: mtxrInterfaceStatsIndex 3694 | type: gauge 3695 | lookups: 3696 | - labels: 3697 | - mtxrInterfaceStatsIndex 3698 | labelname: ifName 3699 | oid: 1.3.6.1.2.1.31.1.1.1.1 3700 | type: DisplayString 3701 | - name: mtxrInterfaceStatsTxExcessiveCollision 3702 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.77 3703 | type: counter 3704 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.77' 3705 | indexes: 3706 | - labelname: mtxrInterfaceStatsIndex 3707 | type: gauge 3708 | lookups: 3709 | - labels: 3710 | - mtxrInterfaceStatsIndex 3711 | labelname: ifName 3712 | oid: 1.3.6.1.2.1.31.1.1.1.1 3713 | type: DisplayString 3714 | - name: mtxrInterfaceStatsTxMultipleCollision 3715 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.78 3716 | type: counter 3717 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.78' 3718 | indexes: 3719 | - labelname: mtxrInterfaceStatsIndex 3720 | type: gauge 3721 | lookups: 3722 | - labels: 3723 | - mtxrInterfaceStatsIndex 3724 | labelname: ifName 3725 | oid: 1.3.6.1.2.1.31.1.1.1.1 3726 | type: DisplayString 3727 | - name: mtxrInterfaceStatsTxSingleCollision 3728 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.79 3729 | type: counter 3730 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.79' 3731 | indexes: 3732 | - labelname: mtxrInterfaceStatsIndex 3733 | type: gauge 3734 | lookups: 3735 | - labels: 3736 | - mtxrInterfaceStatsIndex 3737 | labelname: ifName 3738 | oid: 1.3.6.1.2.1.31.1.1.1.1 3739 | type: DisplayString 3740 | - name: mtxrInterfaceStatsTxExcessiveDeferred 3741 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.80 3742 | type: counter 3743 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.80' 3744 | indexes: 3745 | - labelname: mtxrInterfaceStatsIndex 3746 | type: gauge 3747 | lookups: 3748 | - labels: 3749 | - mtxrInterfaceStatsIndex 3750 | labelname: ifName 3751 | oid: 1.3.6.1.2.1.31.1.1.1.1 3752 | type: DisplayString 3753 | - name: mtxrInterfaceStatsTxDeferred 3754 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.81 3755 | type: counter 3756 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.81' 3757 | indexes: 3758 | - labelname: mtxrInterfaceStatsIndex 3759 | type: gauge 3760 | lookups: 3761 | - labels: 3762 | - mtxrInterfaceStatsIndex 3763 | labelname: ifName 3764 | oid: 1.3.6.1.2.1.31.1.1.1.1 3765 | type: DisplayString 3766 | - name: mtxrInterfaceStatsTxLateCollision 3767 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.82 3768 | type: counter 3769 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.82' 3770 | indexes: 3771 | - labelname: mtxrInterfaceStatsIndex 3772 | type: gauge 3773 | lookups: 3774 | - labels: 3775 | - mtxrInterfaceStatsIndex 3776 | labelname: ifName 3777 | oid: 1.3.6.1.2.1.31.1.1.1.1 3778 | type: DisplayString 3779 | - name: mtxrInterfaceStatsTxTotalCollision 3780 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.83 3781 | type: counter 3782 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.83' 3783 | indexes: 3784 | - labelname: mtxrInterfaceStatsIndex 3785 | type: gauge 3786 | lookups: 3787 | - labels: 3788 | - mtxrInterfaceStatsIndex 3789 | labelname: ifName 3790 | oid: 1.3.6.1.2.1.31.1.1.1.1 3791 | type: DisplayString 3792 | - name: mtxrInterfaceStatsTxPauseHonored 3793 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.84 3794 | type: counter 3795 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.84' 3796 | indexes: 3797 | - labelname: mtxrInterfaceStatsIndex 3798 | type: gauge 3799 | lookups: 3800 | - labels: 3801 | - mtxrInterfaceStatsIndex 3802 | labelname: ifName 3803 | oid: 1.3.6.1.2.1.31.1.1.1.1 3804 | type: DisplayString 3805 | - name: mtxrInterfaceStatsTxDrop 3806 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.85 3807 | type: counter 3808 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.85' 3809 | indexes: 3810 | - labelname: mtxrInterfaceStatsIndex 3811 | type: gauge 3812 | lookups: 3813 | - labels: 3814 | - mtxrInterfaceStatsIndex 3815 | labelname: ifName 3816 | oid: 1.3.6.1.2.1.31.1.1.1.1 3817 | type: DisplayString 3818 | - name: mtxrInterfaceStatsTxJabber 3819 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.86 3820 | type: counter 3821 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.86' 3822 | indexes: 3823 | - labelname: mtxrInterfaceStatsIndex 3824 | type: gauge 3825 | lookups: 3826 | - labels: 3827 | - mtxrInterfaceStatsIndex 3828 | labelname: ifName 3829 | oid: 1.3.6.1.2.1.31.1.1.1.1 3830 | type: DisplayString 3831 | - name: mtxrInterfaceStatsTxFCSError 3832 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.87 3833 | type: counter 3834 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.87' 3835 | indexes: 3836 | - labelname: mtxrInterfaceStatsIndex 3837 | type: gauge 3838 | lookups: 3839 | - labels: 3840 | - mtxrInterfaceStatsIndex 3841 | labelname: ifName 3842 | oid: 1.3.6.1.2.1.31.1.1.1.1 3843 | type: DisplayString 3844 | - name: mtxrInterfaceStatsTxControl 3845 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.88 3846 | type: counter 3847 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.88' 3848 | indexes: 3849 | - labelname: mtxrInterfaceStatsIndex 3850 | type: gauge 3851 | lookups: 3852 | - labels: 3853 | - mtxrInterfaceStatsIndex 3854 | labelname: ifName 3855 | oid: 1.3.6.1.2.1.31.1.1.1.1 3856 | type: DisplayString 3857 | - name: mtxrInterfaceStatsTxFragment 3858 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.89 3859 | type: counter 3860 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.89' 3861 | indexes: 3862 | - labelname: mtxrInterfaceStatsIndex 3863 | type: gauge 3864 | lookups: 3865 | - labels: 3866 | - mtxrInterfaceStatsIndex 3867 | labelname: ifName 3868 | oid: 1.3.6.1.2.1.31.1.1.1.1 3869 | type: DisplayString 3870 | - name: mtxrInterfaceStatsLinkDowns 3871 | oid: 1.3.6.1.4.1.14988.1.1.14.1.1.90 3872 | type: counter 3873 | help: ' - 1.3.6.1.4.1.14988.1.1.14.1.1.90' 3874 | indexes: 3875 | - labelname: mtxrInterfaceStatsIndex 3876 | type: gauge 3877 | lookups: 3878 | - labels: 3879 | - mtxrInterfaceStatsIndex 3880 | labelname: ifName 3881 | oid: 1.3.6.1.2.1.31.1.1.1.1 3882 | type: DisplayString 3883 | - name: mtxrPOEInterfaceIndex 3884 | oid: 1.3.6.1.4.1.14988.1.1.15.1.1.1 3885 | type: gauge 3886 | help: ' - 1.3.6.1.4.1.14988.1.1.15.1.1.1' 3887 | indexes: 3888 | - labelname: mtxrPOEInterfaceIndex 3889 | type: gauge 3890 | - name: mtxrPOEName 3891 | oid: 1.3.6.1.4.1.14988.1.1.15.1.1.2 3892 | type: DisplayString 3893 | help: ' - 1.3.6.1.4.1.14988.1.1.15.1.1.2' 3894 | indexes: 3895 | - labelname: mtxrPOEInterfaceIndex 3896 | type: gauge 3897 | - name: mtxrPOEStatus 3898 | oid: 1.3.6.1.4.1.14988.1.1.15.1.1.3 3899 | type: gauge 3900 | help: ' - 1.3.6.1.4.1.14988.1.1.15.1.1.3' 3901 | indexes: 3902 | - labelname: mtxrPOEInterfaceIndex 3903 | type: gauge 3904 | enum_values: 3905 | 1: disabled 3906 | 2: waitingForLoad 3907 | 3: poweredOn 3908 | 4: overload 3909 | - name: mtxrPOEVoltage 3910 | oid: 1.3.6.1.4.1.14988.1.1.15.1.1.4 3911 | type: gauge 3912 | help: V - 1.3.6.1.4.1.14988.1.1.15.1.1.4 3913 | indexes: 3914 | - labelname: mtxrPOEInterfaceIndex 3915 | type: gauge 3916 | - name: mtxrPOECurrent 3917 | oid: 1.3.6.1.4.1.14988.1.1.15.1.1.5 3918 | type: gauge 3919 | help: mA - 1.3.6.1.4.1.14988.1.1.15.1.1.5 3920 | indexes: 3921 | - labelname: mtxrPOEInterfaceIndex 3922 | type: gauge 3923 | - name: mtxrPOEPower 3924 | oid: 1.3.6.1.4.1.14988.1.1.15.1.1.6 3925 | type: gauge 3926 | help: W - 1.3.6.1.4.1.14988.1.1.15.1.1.6 3927 | indexes: 3928 | - labelname: mtxrPOEInterfaceIndex 3929 | type: gauge 3930 | - name: mtxrLTEModemInterfaceIndex 3931 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.1 3932 | type: gauge 3933 | help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.1' 3934 | indexes: 3935 | - labelname: mtxrLTEModemInterfaceIndex 3936 | type: gauge 3937 | - name: mtxrLTEModemSignalRSSI 3938 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.2 3939 | type: gauge 3940 | help: dBm - 1.3.6.1.4.1.14988.1.1.16.1.1.2 3941 | indexes: 3942 | - labelname: mtxrLTEModemInterfaceIndex 3943 | type: gauge 3944 | - name: mtxrLTEModemSignalRSRQ 3945 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.3 3946 | type: gauge 3947 | help: dB - 1.3.6.1.4.1.14988.1.1.16.1.1.3 3948 | indexes: 3949 | - labelname: mtxrLTEModemInterfaceIndex 3950 | type: gauge 3951 | - name: mtxrLTEModemSignalRSRP 3952 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.4 3953 | type: gauge 3954 | help: dBm - 1.3.6.1.4.1.14988.1.1.16.1.1.4 3955 | indexes: 3956 | - labelname: mtxrLTEModemInterfaceIndex 3957 | type: gauge 3958 | - name: mtxrLTEModemCellId 3959 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.5 3960 | type: gauge 3961 | help: current cell ID - 1.3.6.1.4.1.14988.1.1.16.1.1.5 3962 | indexes: 3963 | - labelname: mtxrLTEModemInterfaceIndex 3964 | type: gauge 3965 | - name: mtxrLTEModemAccessTechnology 3966 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.6 3967 | type: gauge 3968 | help: as reported by +CREG - 1.3.6.1.4.1.14988.1.1.16.1.1.6 3969 | indexes: 3970 | - labelname: mtxrLTEModemInterfaceIndex 3971 | type: gauge 3972 | enum_values: 3973 | -1: unknown 3974 | 0: gsmcompact 3975 | 1: gsm 3976 | 2: utran 3977 | 3: egprs 3978 | 4: hsdpa 3979 | 5: hsupa 3980 | 6: hsdpahsupa 3981 | 7: eutran 3982 | - name: mtxrLTEModemSignalSINR 3983 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.7 3984 | type: gauge 3985 | help: dB - 1.3.6.1.4.1.14988.1.1.16.1.1.7 3986 | indexes: 3987 | - labelname: mtxrLTEModemInterfaceIndex 3988 | type: gauge 3989 | - name: mtxrLTEModemEnbId 3990 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.8 3991 | type: gauge 3992 | help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.8' 3993 | indexes: 3994 | - labelname: mtxrLTEModemInterfaceIndex 3995 | type: gauge 3996 | - name: mtxrLTEModemSectorId 3997 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.9 3998 | type: gauge 3999 | help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.9' 4000 | indexes: 4001 | - labelname: mtxrLTEModemInterfaceIndex 4002 | type: gauge 4003 | - name: mtxrLTEModemLac 4004 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.10 4005 | type: gauge 4006 | help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.10' 4007 | indexes: 4008 | - labelname: mtxrLTEModemInterfaceIndex 4009 | type: gauge 4010 | - name: mtxrLTEModemIMEI 4011 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.11 4012 | type: DisplayString 4013 | help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.11' 4014 | indexes: 4015 | - labelname: mtxrLTEModemInterfaceIndex 4016 | type: gauge 4017 | - name: mtxrLTEModemIMSI 4018 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.12 4019 | type: DisplayString 4020 | help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.12' 4021 | indexes: 4022 | - labelname: mtxrLTEModemInterfaceIndex 4023 | type: gauge 4024 | - name: mtxrLTEModemUICC 4025 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.13 4026 | type: DisplayString 4027 | help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.13' 4028 | indexes: 4029 | - labelname: mtxrLTEModemInterfaceIndex 4030 | type: gauge 4031 | - name: mtxrLTEModemRAT 4032 | oid: 1.3.6.1.4.1.14988.1.1.16.1.1.14 4033 | type: DisplayString 4034 | help: ' - 1.3.6.1.4.1.14988.1.1.16.1.1.14' 4035 | indexes: 4036 | - labelname: mtxrLTEModemInterfaceIndex 4037 | type: gauge 4038 | - name: mtxrPartitionIndex 4039 | oid: 1.3.6.1.4.1.14988.1.1.17.1.1.1 4040 | type: gauge 4041 | help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.1' 4042 | indexes: 4043 | - labelname: mtxrPartitionIndex 4044 | type: gauge 4045 | - name: mtxrPartitionName 4046 | oid: 1.3.6.1.4.1.14988.1.1.17.1.1.2 4047 | type: DisplayString 4048 | help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.2' 4049 | indexes: 4050 | - labelname: mtxrPartitionIndex 4051 | type: gauge 4052 | - name: mtxrPartitionSize 4053 | oid: 1.3.6.1.4.1.14988.1.1.17.1.1.3 4054 | type: gauge 4055 | help: MB - 1.3.6.1.4.1.14988.1.1.17.1.1.3 4056 | indexes: 4057 | - labelname: mtxrPartitionIndex 4058 | type: gauge 4059 | - name: mtxrPartitionVersion 4060 | oid: 1.3.6.1.4.1.14988.1.1.17.1.1.4 4061 | type: DisplayString 4062 | help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.4' 4063 | indexes: 4064 | - labelname: mtxrPartitionIndex 4065 | type: gauge 4066 | - name: mtxrPartitionActive 4067 | oid: 1.3.6.1.4.1.14988.1.1.17.1.1.5 4068 | type: gauge 4069 | help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.5' 4070 | indexes: 4071 | - labelname: mtxrPartitionIndex 4072 | type: gauge 4073 | enum_values: 4074 | 0: "false" 4075 | 1: "true" 4076 | - name: mtxrPartitionRunning 4077 | oid: 1.3.6.1.4.1.14988.1.1.17.1.1.6 4078 | type: gauge 4079 | help: ' - 1.3.6.1.4.1.14988.1.1.17.1.1.6' 4080 | indexes: 4081 | - labelname: mtxrPartitionIndex 4082 | type: gauge 4083 | enum_values: 4084 | 0: "false" 4085 | 1: "true" 4086 | - name: mtxrScriptRunIndex 4087 | oid: 1.3.6.1.4.1.14988.1.1.18.1.1.1 4088 | type: gauge 4089 | help: ' - 1.3.6.1.4.1.14988.1.1.18.1.1.1' 4090 | indexes: 4091 | - labelname: mtxrScriptRunIndex 4092 | type: gauge 4093 | - name: mtxrScriptRunOutput 4094 | oid: 1.3.6.1.4.1.14988.1.1.18.1.1.2 4095 | type: DisplayString 4096 | help: this oid on get request will run script and return it's output - 1.3.6.1.4.1.14988.1.1.18.1.1.2 4097 | indexes: 4098 | - labelname: mtxrScriptRunIndex 4099 | type: gauge 4100 | - name: mtxrOpticalIndex 4101 | oid: 1.3.6.1.4.1.14988.1.1.19.1.1.1 4102 | type: gauge 4103 | help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.1' 4104 | indexes: 4105 | - labelname: mtxrOpticalIndex 4106 | type: gauge 4107 | - name: mtxrOpticalName 4108 | oid: 1.3.6.1.4.1.14988.1.1.19.1.1.2 4109 | type: DisplayString 4110 | help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.2' 4111 | indexes: 4112 | - labelname: mtxrOpticalIndex 4113 | type: gauge 4114 | - name: mtxrOpticalRxLoss 4115 | oid: 1.3.6.1.4.1.14988.1.1.19.1.1.3 4116 | type: gauge 4117 | help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.3' 4118 | indexes: 4119 | - labelname: mtxrOpticalIndex 4120 | type: gauge 4121 | enum_values: 4122 | 0: "false" 4123 | 1: "true" 4124 | - name: mtxrOpticalTxFault 4125 | oid: 1.3.6.1.4.1.14988.1.1.19.1.1.4 4126 | type: gauge 4127 | help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.4' 4128 | indexes: 4129 | - labelname: mtxrOpticalIndex 4130 | type: gauge 4131 | enum_values: 4132 | 0: "false" 4133 | 1: "true" 4134 | - name: mtxrOpticalWavelength 4135 | oid: 1.3.6.1.4.1.14988.1.1.19.1.1.5 4136 | type: gauge 4137 | help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.5' 4138 | indexes: 4139 | - labelname: mtxrOpticalIndex 4140 | type: gauge 4141 | - name: mtxrOpticalTemperature 4142 | oid: 1.3.6.1.4.1.14988.1.1.19.1.1.6 4143 | type: gauge 4144 | help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.6' 4145 | indexes: 4146 | - labelname: mtxrOpticalIndex 4147 | type: gauge 4148 | - name: mtxrOpticalSupplyVoltage 4149 | oid: 1.3.6.1.4.1.14988.1.1.19.1.1.7 4150 | type: gauge 4151 | help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.7' 4152 | indexes: 4153 | - labelname: mtxrOpticalIndex 4154 | type: gauge 4155 | - name: mtxrOpticalTxBiasCurrent 4156 | oid: 1.3.6.1.4.1.14988.1.1.19.1.1.8 4157 | type: gauge 4158 | help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.8' 4159 | indexes: 4160 | - labelname: mtxrOpticalIndex 4161 | type: gauge 4162 | - name: mtxrOpticalTxPower 4163 | oid: 1.3.6.1.4.1.14988.1.1.19.1.1.9 4164 | type: gauge 4165 | help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.9' 4166 | indexes: 4167 | - labelname: mtxrOpticalIndex 4168 | type: gauge 4169 | - name: mtxrOpticalRxPower 4170 | oid: 1.3.6.1.4.1.14988.1.1.19.1.1.10 4171 | type: gauge 4172 | help: ' - 1.3.6.1.4.1.14988.1.1.19.1.1.10' 4173 | indexes: 4174 | - labelname: mtxrOpticalIndex 4175 | type: gauge 4176 | - name: mtxrIkeSACount 4177 | oid: 1.3.6.1.4.1.14988.1.1.20.1 4178 | type: gauge 4179 | help: IKE SA count - 1.3.6.1.4.1.14988.1.1.20.1 4180 | - name: mtxrIkeSAIndex 4181 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.1 4182 | type: gauge 4183 | help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.1' 4184 | indexes: 4185 | - labelname: mtxrIkeSAIndex 4186 | type: gauge 4187 | - name: mtxrIkeSAInitiatorCookie 4188 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.2 4189 | type: DisplayString 4190 | help: initiator SPI - 1.3.6.1.4.1.14988.1.1.20.2.1.2 4191 | indexes: 4192 | - labelname: mtxrIkeSAIndex 4193 | type: gauge 4194 | - name: mtxrIkeSAResponderCookie 4195 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.3 4196 | type: DisplayString 4197 | help: responder SPI - 1.3.6.1.4.1.14988.1.1.20.2.1.3 4198 | indexes: 4199 | - labelname: mtxrIkeSAIndex 4200 | type: gauge 4201 | - name: mtxrIkeSAResponder 4202 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.4 4203 | type: gauge 4204 | help: IKE side - 1.3.6.1.4.1.14988.1.1.20.2.1.4 4205 | indexes: 4206 | - labelname: mtxrIkeSAIndex 4207 | type: gauge 4208 | enum_values: 4209 | 0: "false" 4210 | 1: "true" 4211 | - name: mtxrIkeSANatt 4212 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.5 4213 | type: gauge 4214 | help: NAT is detected - 1.3.6.1.4.1.14988.1.1.20.2.1.5 4215 | indexes: 4216 | - labelname: mtxrIkeSAIndex 4217 | type: gauge 4218 | enum_values: 4219 | 0: "false" 4220 | 1: "true" 4221 | - name: mtxrIkeSAVersion 4222 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.6 4223 | type: gauge 4224 | help: protocol version - 1.3.6.1.4.1.14988.1.1.20.2.1.6 4225 | indexes: 4226 | - labelname: mtxrIkeSAIndex 4227 | type: gauge 4228 | - name: mtxrIkeSAState 4229 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.7 4230 | type: gauge 4231 | help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.7' 4232 | indexes: 4233 | - labelname: mtxrIkeSAIndex 4234 | type: gauge 4235 | enum_values: 4236 | 1: exchange 4237 | 2: established 4238 | 3: expired 4239 | 4: eap 4240 | - name: mtxrIkeSAUptime 4241 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.8 4242 | type: gauge 4243 | help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.8' 4244 | indexes: 4245 | - labelname: mtxrIkeSAIndex 4246 | type: gauge 4247 | - name: mtxrIkeSASeen 4248 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.9 4249 | type: gauge 4250 | help: time elapsed since last valid IKE packet - 1.3.6.1.4.1.14988.1.1.20.2.1.9 4251 | indexes: 4252 | - labelname: mtxrIkeSAIndex 4253 | type: gauge 4254 | - name: mtxrIkeSAIdentity 4255 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.10 4256 | type: DisplayString 4257 | help: peer identity - 1.3.6.1.4.1.14988.1.1.20.2.1.10 4258 | indexes: 4259 | - labelname: mtxrIkeSAIndex 4260 | type: gauge 4261 | - name: mtxrIkeSAPh2Count 4262 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.11 4263 | type: gauge 4264 | help: total ph2 SA pairs - 1.3.6.1.4.1.14988.1.1.20.2.1.11 4265 | indexes: 4266 | - labelname: mtxrIkeSAIndex 4267 | type: gauge 4268 | - name: mtxrIkeSALocalAddressType 4269 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.12 4270 | type: gauge 4271 | help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.12' 4272 | indexes: 4273 | - labelname: mtxrIkeSAIndex 4274 | type: gauge 4275 | enum_values: 4276 | 0: unknown 4277 | 1: ipv4 4278 | 2: ipv6 4279 | 3: ipv4z 4280 | 4: ipv6z 4281 | 16: dns 4282 | - name: mtxrIkeSALocalAddress 4283 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.13 4284 | type: InetAddress 4285 | help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.13' 4286 | indexes: 4287 | - labelname: mtxrIkeSAIndex 4288 | type: gauge 4289 | - name: mtxrIkeSALocalPort 4290 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.14 4291 | type: gauge 4292 | help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.14' 4293 | indexes: 4294 | - labelname: mtxrIkeSAIndex 4295 | type: gauge 4296 | - name: mtxrIkeSAPeerAddressType 4297 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.15 4298 | type: gauge 4299 | help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.15' 4300 | indexes: 4301 | - labelname: mtxrIkeSAIndex 4302 | type: gauge 4303 | enum_values: 4304 | 0: unknown 4305 | 1: ipv4 4306 | 2: ipv6 4307 | 3: ipv4z 4308 | 4: ipv6z 4309 | 16: dns 4310 | - name: mtxrIkeSAPeerAddress 4311 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.16 4312 | type: InetAddress 4313 | help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.16' 4314 | indexes: 4315 | - labelname: mtxrIkeSAIndex 4316 | type: gauge 4317 | - name: mtxrIkeSAPeerPort 4318 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.17 4319 | type: gauge 4320 | help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.17' 4321 | indexes: 4322 | - labelname: mtxrIkeSAIndex 4323 | type: gauge 4324 | - name: mtxrIkeSADynamicAddressType 4325 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.18 4326 | type: gauge 4327 | help: ' - 1.3.6.1.4.1.14988.1.1.20.2.1.18' 4328 | indexes: 4329 | - labelname: mtxrIkeSAIndex 4330 | type: gauge 4331 | enum_values: 4332 | 0: unknown 4333 | 1: ipv4 4334 | 2: ipv6 4335 | 3: ipv4z 4336 | 4: ipv6z 4337 | 16: dns 4338 | - name: mtxrIkeSADynamicAddress 4339 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.19 4340 | type: InetAddress 4341 | help: dynamic address allocated by mode config - 1.3.6.1.4.1.14988.1.1.20.2.1.19 4342 | indexes: 4343 | - labelname: mtxrIkeSAIndex 4344 | type: gauge 4345 | - name: mtxrIkeSATxBytes 4346 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.20 4347 | type: counter 4348 | help: ph2 SA tx bytes - 1.3.6.1.4.1.14988.1.1.20.2.1.20 4349 | indexes: 4350 | - labelname: mtxrIkeSAIndex 4351 | type: gauge 4352 | - name: mtxrIkeSARxBytes 4353 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.21 4354 | type: counter 4355 | help: ph2 SA rx bytes - 1.3.6.1.4.1.14988.1.1.20.2.1.21 4356 | indexes: 4357 | - labelname: mtxrIkeSAIndex 4358 | type: gauge 4359 | - name: mtxrIkeSATxPackets 4360 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.22 4361 | type: counter 4362 | help: ph2 SA tx packets - 1.3.6.1.4.1.14988.1.1.20.2.1.22 4363 | indexes: 4364 | - labelname: mtxrIkeSAIndex 4365 | type: gauge 4366 | - name: mtxrIkeSARxPackets 4367 | oid: 1.3.6.1.4.1.14988.1.1.20.2.1.23 4368 | type: counter 4369 | help: ph2 SA rx packets - 1.3.6.1.4.1.14988.1.1.20.2.1.23 4370 | indexes: 4371 | - labelname: mtxrIkeSAIndex 4372 | type: gauge 4373 | - name: laIndex 4374 | oid: 1.3.6.1.4.1.2021.10.1.1 4375 | type: gauge 4376 | help: reference index/row number for each observed loadave. - 1.3.6.1.4.1.2021.10.1.1 4377 | indexes: 4378 | - labelname: laIndex 4379 | type: gauge 4380 | lookups: 4381 | - labels: 4382 | - laIndex 4383 | labelname: laNames 4384 | oid: 1.3.6.1.4.1.2021.10.1.2 4385 | type: DisplayString 4386 | - labels: [] 4387 | labelname: laIndex 4388 | -------------------------------------------------------------------------------- /snmp/snmp_exporter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorKha/Grafana-Mikrotik/da35426cfddf3ce0a664fe6adc79d9d2e6766a4e/snmp/snmp_exporter --------------------------------------------------------------------------------