├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── Template ├── Intelbras_NVD3116P_template_v1.yaml ├── Intelbras_NVD3116P_template_v2.yaml ├── Intelbras_NVD3116P_template_v3.yaml ├── Intelbras_NVD_main_MIB_TREE.txt ├── Intelbras_NVR_template_v4.yaml ├── Intelbras_NVR_template_v6017.yaml ├── Intelbras_NVR_template_v6021.yaml ├── Intelbras_NVR_template_v6022.yaml ├── Intelbras_NVR_template_v642.yaml ├── Intelbras_NVR_template_v646.yaml ├── Intelbras_NVR_template_v647.yaml ├── Intelbras_NVR_template_v700.yaml ├── Intelbras_NVR_template_v701.yaml ├── Intelbras_NVR_template_v703.yaml └── Intelbras_NVR_template_v722.yaml └── images ├── grafana_dash_nvd_3316_P.png ├── grafana_dashboard_sample.json ├── nvr_dashboard.png └── nvr_dashboard2.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: ["https://www.paypal.com/donate?business=6FAVMAA4VLWC2&item_name=AsusWRT+Zbx+Template+Coffe¤cy_code=BRL"] 13 | -------------------------------------------------------------------------------- /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 | # Zabbix Template - NVR Intelbras / Dahua by SNMP 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 |
13 | 14 | ### OVERVIEW 15 | 16 | Monitore dados SNMP do seu NVR Intelbras ou Dahua. \ 17 | *Monitor SNMP data from your Intelbras or Dahua NVR.* 18 | 19 | Funciona em modelos de NVR da **Intelbras** ou **Dahua**, entretanto, adaptações podem ser necessárias dependendo do dispositivo. \ 20 | *Works on **Intelbras** or **Dahua** NVR models, although customization might be required depending on the device.* 21 | 22 | Versões antigas disponíveis no diretório [Template](./Template). \ 23 | *Older versions available in the [Template](./Template) directory.* 24 | 25 |
26 | 27 | ### TESTED VERSION 28 | 29 | Esta template foi testada somente com os NVRs Intelbras "NVD 3116 P" e "NVD 3316 P". Também deve funcionar em outros NVRs Intelbras ou Dahua. \ 30 | _This template was tested on Intelbras NVR "NVD 3116 P" and "NVD 3316 P". It should also work with other Intelbras or Dahua NVRs as well._ 31 | 32 |
33 | 34 | **Observações são bem-vindas.** \ 35 | _**Feedbacks are welcome.**_ 36 | 37 |
38 | 39 | --- 40 | ### ➡️ [Download (releases)](https://github.com/diasdmhub/Intelbras_NVR_Zabbix_Template/releases) 41 | --- 42 | #### ➡️ [*Como importar templates/How to import templates.*](https://www.zabbix.com/documentation/current/en/manual/xml_export_import/templates#importing) 43 | --- 44 | 45 |
46 | 47 | 64 | 65 | 66 | ### MACROS USED 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 |
NameDefault valueDescription
{$API_PASS}Set your API password if used
{$API_USER}adminSet your API user if used
{$DISK_FREE_WARN}100Disk free percentage threshold. Set to 100 if the disk stays full
{$MEDIA_PORT}37777Media port for image access
{$SNMP.TIMEOUT}5mSNMP availability timeout threshold
{$WEB_PORT}80HTTP port for WEB UI access
{$WEB_SERVICE}httpSet your Web service (http or https)
Network Interface macrosFor interface discovery
115 | 116 | > **Essas macros devem ser alteradas a nível de Host para refletir as configurações de seu host monitorado.** \ 117 | > _**These macros should be changed at the Host level to reflect your monitored host configuration.**_ 118 | 119 |
120 | 121 | ### ITEMS 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 |
CPU Utilization
Device Channel Number
Device contact details
Device description
Device IP
Device location
Device name
Device Serial Number
Device Status
Device System Version
Device Type
Device Walk Network
Device Walk Remote Cam
Device Walk Storage
Device Walk System General
Device Walk System Info
Memory Total
Memory Utilization
TCP Performance Media
TCP Performance Web
SNMP Agent Availability
SNMP Traps Fallback
System OS Name
System OS Version
System Status
System Time
Uptime Enterprise
206 | 207 |
208 | 209 | ### TRIGGERS 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 |
CPU High Utilization
Device IP changed
Device Status Changed to Bad
Device System Version changed
Memory High Utilization
No SNMP data collection
System has been restarted (uptime < 10m)
System name has changed
System Status Offline
Unresponsive Media Port
Unresponsive Web Port
246 | 247 |
248 | 249 | ### DISCOVERY RULES 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 |
Camera Discovery (items, trigger)
Disk Discovery (items, trigger, graph)
Network interfaces discovery (items, trigger, graph)
262 | 263 |
264 | 265 | ### ITEM PROTOTYPES 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 |
Camera IP
Camera Name
Camera Status
Disk Name
Disk Size
Disk Status
Disk Usage
Disk Utilization
Interface Admin status
Interface Bits received
Interface Bits sent
Interface Inbound packets discarded
Interface Inbound packets with errors
Interface Operational status
Interface Outbound packets discarded
Interface Outbound packets with errors
Interface Speed
Interface Type
323 | 324 |
325 | 326 | ### TRIGGER PROTOTYPES 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 |
Camera absent
Camera disconnected
Disk Error
Disk Utilization is High
Interface: Ethernet has changed to lower speed than it was before
Interface: High bandwidth usage
Interface: High error rate
Interface: Link down
354 | 355 |
356 | 357 | ### GRAPHS 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 |
CPU Utilization
Memory Utilization
NVR Response Time
Disk Usage (discovery)
Interface: Network traffic (discovery)
376 | 377 |
378 | 379 | ### DASHBOARDS 380 | 381 | 382 | 383 | 384 | 385 |
NVR Dashboard
386 | 387 |
388 | 389 | ### WEB SCENARIOS 390 | 391 | 392 | 393 | 394 | 395 |
NVR Web Performance
396 | 397 |
398 | 399 | 400 | ### DASHBOARD EXAMPLE 401 | 402 | ![Dashboard example 1](images/nvr_dashboard.png) 403 | 404 | --- 405 | 406 | ![Dashboard example 2](images/nvr_dashboard2.png) 407 | 408 | --- 409 | 410 | ![Dashboard example 3](images/grafana_dash_nvd_3316_P.png) 411 | -------------------------------------------------------------------------------- /Template/Intelbras_NVD3116P_template_v1.yaml: -------------------------------------------------------------------------------- 1 | zabbix_export: 2 | version: '5.4' 3 | date: '2021-07-28T23:27:08Z' 4 | groups: 5 | - 6 | uuid: 36bff6c29af64692839d077febfc7079 7 | name: 'Templates/Network devices' 8 | templates: 9 | - 10 | uuid: c3b8aef8c6d24ee493fc7f1d698cfc71 11 | template: 'Intelbras NVR NVD3116P SNMP' 12 | name: 'Intelbras NVR NVD3116P SNMP' 13 | description: | 14 | NVR Intelbras "NVD 3116 P" template. 15 | 16 | For Zabbix 5.4 and higher. 17 | 18 | https://github.com/diasdmhub/Intelbras_NVD3116P_Template 19 | templates: 20 | - 21 | name: 'Interfaces Simple SNMP' 22 | groups: 23 | - 24 | name: 'Templates/Network devices' 25 | items: 26 | - 27 | uuid: 9451b00c5db743db84baa9cfcdea31f9 28 | name: 'CPU Usage' 29 | type: SNMP_AGENT 30 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.3.0 31 | key: enterprises.cpuUsage 32 | delay: 3m 33 | history: 7d 34 | units: '%' 35 | description: 'Uso da CPU em percentual' 36 | tags: 37 | - 38 | tag: System 39 | value: status 40 | triggers: 41 | - 42 | uuid: 5d2df2d2003b4dcf9583de1d37df9c1d 43 | expression: 'avg(/Intelbras NVR NVD3116P SNMP/enterprises.cpuUsage,#3)>90' 44 | recovery_mode: RECOVERY_EXPRESSION 45 | recovery_expression: 'avg(/Intelbras NVR NVD3116P SNMP/enterprises.cpuUsage,#3)<90' 46 | name: 'CPU High Utilization' 47 | opdata: '{ITEM.LASTVALUE1}' 48 | priority: HIGH 49 | description: 'Alto uso de CPU' 50 | - 51 | uuid: a7e4eeab5e204d86aaef95bedc867aa1 52 | name: 'Device Status' 53 | type: SNMP_AGENT 54 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.8.0 55 | key: enterprises.deviceStatus 56 | delay: 3m 57 | history: 7d 58 | description: 'Status do dispositivo 0 (ruim) ou 1 (bom)' 59 | valuemap: 60 | name: 'NVR Device Status' 61 | tags: 62 | - 63 | tag: Device 64 | value: general 65 | triggers: 66 | - 67 | uuid: 2e9b93f0b584449d9a5c17cac3f14fe1 68 | expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.deviceStatus)=0' 69 | recovery_mode: RECOVERY_EXPRESSION 70 | recovery_expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.deviceStatus)=1' 71 | name: 'Device Status Changed' 72 | opdata: '{ITEM.LASTVALUE1}' 73 | priority: HIGH 74 | description: | 75 | Dispositivo com status divergente 76 | 1 = Bom 77 | 0 = Ruim 78 | - 79 | uuid: 0bf7b2d975fc44419f97e0008c5e5de2 80 | name: 'Device Type' 81 | type: SNMP_AGENT 82 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.6.0 83 | key: enterprises.deviceType 84 | delay: 3m 85 | history: 2d 86 | trends: '0' 87 | value_type: CHAR 88 | description: 'Tipo e modelo do dispositivo' 89 | inventory_link: TYPE 90 | tags: 91 | - 92 | tag: Device 93 | value: general 94 | - 95 | uuid: 26a925a7f30d4dd69b5b7da4998c0d15 96 | name: 'Uptime Enterprise' 97 | type: SNMP_AGENT 98 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.6.0 99 | key: enterprises.deviceUpTime 100 | delay: 10m 101 | history: 2w 102 | trends: '0' 103 | units: uptime 104 | description: 'UpTime desde a última reinicialização' 105 | preprocessing: 106 | - 107 | type: MULTIPLIER 108 | parameters: 109 | - '0.01' 110 | tags: 111 | - 112 | tag: System 113 | value: status 114 | - 115 | uuid: c5245c9c006a4054b14beb7c7b091adb 116 | name: 'Device IP' 117 | type: SNMP_AGENT 118 | snmp_oid: 1.3.6.1.4.1.1004849.2.2.2.8.0 119 | key: enterprises.ipAddr 120 | delay: 1h 121 | history: 2d 122 | trends: '0' 123 | value_type: CHAR 124 | description: 'IP Address' 125 | tags: 126 | - 127 | tag: Device 128 | value: general 129 | triggers: 130 | - 131 | uuid: 7d91eda4419147ad892b8cec56b707e7 132 | expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.ipAddr,#1)<>last(/Intelbras NVR NVD3116P SNMP/enterprises.ipAddr,#2)' 133 | name: 'Device IP changed' 134 | opdata: 'IP: {ITEM.VALUE}' 135 | priority: WARNING 136 | description: 'Device IP changed' 137 | manual_close: 'YES' 138 | - 139 | uuid: 7325299946594f378a6335d7099371a8 140 | name: 'Memory Utilization' 141 | type: SNMP_AGENT 142 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.9.2.0 143 | key: enterprises.memoryUsage 144 | delay: 3m 145 | history: 7d 146 | value_type: FLOAT 147 | units: '%' 148 | description: 'Uso da memória em percentual' 149 | tags: 150 | - 151 | tag: System 152 | value: status 153 | triggers: 154 | - 155 | uuid: 126b8f21ad36457fbc20aa199bec26a6 156 | expression: 'avg(/Intelbras NVR NVD3116P SNMP/enterprises.memoryUsage,#3)>90' 157 | recovery_mode: RECOVERY_EXPRESSION 158 | recovery_expression: 'avg(/Intelbras NVR NVD3116P SNMP/enterprises.memoryUsage,#3)<90' 159 | name: 'Memory High Utilization' 160 | opdata: '{ITEM.LASTVALUE1}' 161 | priority: HIGH 162 | description: 'Alto uso de memória' 163 | - 164 | uuid: 0b41eaf4f4624b539402c4070c3a1020 165 | name: 'Device Serial Number' 166 | type: SNMP_AGENT 167 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.4.0 168 | key: enterprises.serialNumber 169 | delay: 1d 170 | history: 2d 171 | trends: '0' 172 | value_type: CHAR 173 | description: 'Número de série do dispositivo' 174 | inventory_link: SERIALNO_A 175 | tags: 176 | - 177 | tag: Device 178 | value: general 179 | - 180 | uuid: 9a217be202584a858c2857f64913f96e 181 | name: 'System Status' 182 | type: SNMP_AGENT 183 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.7.0 184 | key: enterprises.systemStatus 185 | delay: 3m 186 | history: 7d 187 | description: 'Status do sistema: online(0), offline(1), reboot(2)' 188 | valuemap: 189 | name: 'NVR System Status' 190 | tags: 191 | - 192 | tag: Device 193 | value: general 194 | triggers: 195 | - 196 | uuid: 7b27f2cbce1941f4842db349be14df7d 197 | expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.systemStatus)=1' 198 | recovery_mode: RECOVERY_EXPRESSION 199 | recovery_expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.systemStatus)=0' 200 | name: 'System Status Offline' 201 | opdata: '{ITEM.LASTVALUE1}' 202 | priority: DISASTER 203 | description: | 204 | Sistema parado! 205 | 0 - online 206 | 1 - offline 207 | 2- reboot 208 | - 209 | uuid: 2b4e8785ba8441afae57a848b09b566a 210 | name: 'System Time' 211 | type: SNMP_AGENT 212 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.8.0 213 | key: enterprises.systemTime 214 | delay: 3m 215 | history: 2d 216 | trends: '0' 217 | value_type: CHAR 218 | description: | 219 | Horário do dispositivo 220 | (String) formato: YYYY/MM/DD HOUR:MIN:SEC. ex: 2014/10/13 10:32:31" 221 | tags: 222 | - 223 | tag: System 224 | value: status 225 | - 226 | uuid: 77f25d88e8554c6a83ca14f4e8285497 227 | name: 'Device System Version' 228 | type: SNMP_AGENT 229 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.5.0 230 | key: enterprises.systemVersion 231 | delay: 1d 232 | history: 7d 233 | trends: '0' 234 | value_type: CHAR 235 | description: 'Versão do sistema' 236 | inventory_link: SOFTWARE 237 | tags: 238 | - 239 | tag: Device 240 | value: general 241 | triggers: 242 | - 243 | uuid: 792c5acff95e4c12bc7b2844cc4e5d8e 244 | expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.systemVersion,#1)<>last(/Intelbras NVR NVD3116P SNMP/enterprises.systemVersion,#2)' 245 | name: 'Device System Version changed' 246 | opdata: '{ITEM.VALUE}' 247 | priority: WARNING 248 | description: 'Device system version changed' 249 | manual_close: 'YES' 250 | - 251 | uuid: bcce907e78f04f2dad9a9ddbafa52da8 252 | name: 'TCP Established Connections' 253 | type: SNMP_AGENT 254 | snmp_oid: 1.3.6.1.2.1.6.9.0 255 | key: 'net.tcp.estab[tcpCurrEstab.0]' 256 | delay: 3m 257 | history: 7d 258 | trends: '0' 259 | description: 'Total currently established connections.' 260 | tags: 261 | - 262 | tag: System 263 | value: status 264 | - 265 | uuid: 4acf9f67f76240c1a032e103826c53aa 266 | name: 'NVR WEB Performance' 267 | type: SIMPLE 268 | key: 'net.tcp.service.perf[tcp,,{$HTTP_PORT}]' 269 | delay: 5m 270 | history: 1w 271 | status: DISABLED 272 | value_type: FLOAT 273 | units: s 274 | description: | 275 | NVR's web interface performance check. 276 | Web Scenario already collects Web data. 277 | If necessary enable this item for TCP data collection. 278 | Verificação do desempenho da interface WEB do NVR. 279 | Cenário Web já coleta dados Web. 280 | Se necessário habilite este item para coleta de dados TCP. 281 | tags: 282 | - 283 | tag: System 284 | value: status 285 | - 286 | uuid: 465aa59acfd14b37815b3aa22f3004c2 287 | name: 'NVR Performance' 288 | type: SIMPLE 289 | key: 'net.tcp.service.perf[tcp,,{$MEDIA_PORT}]' 290 | delay: 5m 291 | history: 1w 292 | value_type: FLOAT 293 | units: s 294 | description: 'Verificação do desempenho do NVR.' 295 | tags: 296 | - 297 | tag: System 298 | value: status 299 | - 300 | uuid: 4e314ab95cb54c909e6b095ed3817d1d 301 | name: 'NVR Performance Average' 302 | type: CALCULATED 303 | key: service.perf.avg.tcp 304 | delay: 5m 305 | history: 1w 306 | value_type: FLOAT 307 | units: s 308 | params: 'avg(//net.tcp.service.perf[tcp,,16990],25m)' 309 | tags: 310 | - 311 | tag: System 312 | value: status 313 | - 314 | uuid: 439b91cea8b4473eae485cb5f3b37e1a 315 | name: 'SNMP Bad community' 316 | type: SNMP_AGENT 317 | snmp_oid: 1.3.6.1.2.1.11.4.0 318 | key: snmpInBadCommunityNames 319 | delay: 5m 320 | history: 7d 321 | trends: '0' 322 | description: 'Incorrect SNMP community received.' 323 | tags: 324 | - 325 | tag: System 326 | value: status 327 | triggers: 328 | - 329 | uuid: 8196813c27954ad7a3efc8df0bf77bc9 330 | expression: '(max(/Intelbras NVR NVD3116P SNMP/snmpInBadCommunityNames,#4)-min(/Intelbras NVR NVD3116P SNMP/snmpInBadCommunityNames,#4))>4' 331 | name: 'SNMP Bad community attempt' 332 | opdata: 'Latest attempts: {ITEM.LASTVALUE1}' 333 | priority: WARNING 334 | description: 'Check for possible invalid access attempt' 335 | manual_close: 'YES' 336 | dependencies: 337 | - 338 | name: 'No SNMP data collection' 339 | expression: 'max(/Intelbras NVR NVD3116P SNMP/zabbix[host,snmp,available],{$SNMP.TIMEOUT})=0' 340 | - 341 | uuid: f59250bbe20a47fbafc5b3f4fe208be7 342 | name: 'SNMP traps (fallback)' 343 | type: SNMP_TRAP 344 | key: snmptrap.fallback 345 | delay: '0' 346 | history: 2w 347 | trends: '0' 348 | value_type: LOG 349 | description: 'Item is used to collect all SNMP traps unmatched by other snmptrap items' 350 | logtimefmt: 'hh:mm:sszyyyy/MM/dd' 351 | tags: 352 | - 353 | tag: System 354 | value: status 355 | - 356 | uuid: 9fdc05f7a808453cadd6090b49930a3a 357 | name: 'System contact details' 358 | type: SNMP_AGENT 359 | snmp_oid: 1.3.6.1.2.1.1.4.0 360 | key: 'system.contact[sysContact.0]' 361 | delay: 1d 362 | history: 2d 363 | trends: '0' 364 | status: DISABLED 365 | value_type: CHAR 366 | description: | 367 | MIB: SNMPv2-MIB 368 | The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. 369 | inventory_link: CONTACT 370 | preprocessing: 371 | - 372 | type: DISCARD_UNCHANGED_HEARTBEAT 373 | parameters: 374 | - 1d 375 | tags: 376 | - 377 | tag: Device 378 | value: general 379 | - 380 | uuid: 1c3f4f8993ea407c8796ea299bd74c36 381 | name: 'System description' 382 | type: SNMP_AGENT 383 | snmp_oid: 1.3.6.1.2.1.1.1.0 384 | key: 'system.descr[sysDescr.0]' 385 | delay: 1d 386 | history: 2d 387 | trends: '0' 388 | status: DISABLED 389 | value_type: CHAR 390 | description: | 391 | MIB: SNMPv2-MIB 392 | A textual description of the entity. This value should 393 | include the full name and version identification of the system's hardware type, software operating-system, and 394 | networking software. 395 | inventory_link: NOTES 396 | preprocessing: 397 | - 398 | type: DISCARD_UNCHANGED_HEARTBEAT 399 | parameters: 400 | - 1d 401 | tags: 402 | - 403 | tag: Device 404 | value: general 405 | - 406 | uuid: e861b80b0a91478886046b98e1c1b73a 407 | name: 'System location' 408 | type: SNMP_AGENT 409 | snmp_oid: 1.3.6.1.2.1.1.6.0 410 | key: 'system.location[sysLocation.0]' 411 | delay: 1d 412 | history: 2d 413 | trends: '0' 414 | status: DISABLED 415 | value_type: CHAR 416 | description: | 417 | MIB: SNMPv2-MIB 418 | The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. 419 | inventory_link: LOCATION 420 | preprocessing: 421 | - 422 | type: DISCARD_UNCHANGED_HEARTBEAT 423 | parameters: 424 | - 1h 425 | tags: 426 | - 427 | tag: Device 428 | value: general 429 | - 430 | uuid: 83fa01fe8049481f808e0dd9ca477422 431 | name: 'System name' 432 | type: SNMP_AGENT 433 | snmp_oid: 1.3.6.1.2.1.1.5.0 434 | key: system.name 435 | delay: 1d 436 | history: 2d 437 | trends: '0' 438 | value_type: CHAR 439 | description: | 440 | MIB: SNMPv2-MIB 441 | An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. 442 | inventory_link: NAME 443 | preprocessing: 444 | - 445 | type: DISCARD_UNCHANGED_HEARTBEAT 446 | parameters: 447 | - 1h 448 | tags: 449 | - 450 | tag: Device 451 | value: general 452 | triggers: 453 | - 454 | uuid: c6349c2779c94046abf8fdc996d7ff79 455 | expression: '(last(/Intelbras NVR NVD3116P SNMP/system.name,#1)<>last(/Intelbras NVR NVD3116P SNMP/system.name,#2))=1 and length(last(/Intelbras NVR NVD3116P SNMP/system.name))>0' 456 | name: 'System name has changed' 457 | opdata: 'New name: {ITEM.VALUE}' 458 | priority: INFO 459 | description: 'System name has changed. Ack to close.' 460 | manual_close: 'YES' 461 | - 462 | uuid: eba033190e72492d80dda3c44a95b72c 463 | name: 'System object ID' 464 | type: SNMP_AGENT 465 | snmp_oid: 1.3.6.1.2.1.1.2.0 466 | key: 'system.objectid[sysObjectID.0]' 467 | delay: 1d 468 | history: 2d 469 | trends: '0' 470 | value_type: CHAR 471 | description: | 472 | MIB: SNMPv2-MIB 473 | The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. 474 | **Might be invalid** 475 | preprocessing: 476 | - 477 | type: DISCARD_UNCHANGED_HEARTBEAT 478 | parameters: 479 | - 1h 480 | tags: 481 | - 482 | tag: Device 483 | value: general 484 | - 485 | uuid: 2877e152c6f94e408dff1805528864f3 486 | name: 'Uptime Generic' 487 | type: SNMP_AGENT 488 | snmp_oid: 1.3.6.1.2.1.1.3.0 489 | key: 'system.uptime[sysUpTime.0]' 490 | delay: 10m 491 | history: 2w 492 | trends: '0' 493 | units: uptime 494 | description: | 495 | MIB: SNMPv2-MIB 496 | The time (in hundredths of a second) since the network management portion of the system was last re-initialized. 497 | preprocessing: 498 | - 499 | type: MULTIPLIER 500 | parameters: 501 | - '0.01' 502 | tags: 503 | - 504 | tag: System 505 | value: status 506 | - 507 | uuid: 9385027fca664ffe8bfab056ed9d681c 508 | name: 'SNMP agent availability' 509 | type: INTERNAL 510 | key: 'zabbix[host,snmp,available]' 511 | history: 7d 512 | trends: '0' 513 | tags: 514 | - 515 | tag: System 516 | value: status 517 | triggers: 518 | - 519 | uuid: 402a97ff650c44a791c6eb60d33cc889 520 | expression: 'max(/Intelbras NVR NVD3116P SNMP/zabbix[host,snmp,available],{$SNMP.TIMEOUT})=0' 521 | name: 'No SNMP data collection' 522 | opdata: 'Current state: {ITEM.LASTVALUE1}' 523 | priority: HIGH 524 | description: 'SNMP is not available for polling. Please check device connectivity and SNMP settings.' 525 | discovery_rules: 526 | - 527 | uuid: db9a014c00de49e086c51215efad802e 528 | name: 'Camera Discovery' 529 | type: SNMP_AGENT 530 | snmp_oid: 'discovery[{#ICAM_IP}, 1.3.6.1.4.1.1004849.2.10.2.2.1.2, {#CAM_NAME}, 1.3.6.1.4.1.1004849.2.10.2.2.1.4, {#CAM_STATUS}, 1.3.6.1.4.1.1004849.2.10.2.2.1.3]' 531 | key: net.cam.discovery 532 | delay: 1h 533 | lifetime: 1d 534 | item_prototypes: 535 | - 536 | uuid: 0763a7279bde44c8bd467b2af73fe250 537 | name: 'Camera {#SNMPINDEX} IP' 538 | type: SNMP_AGENT 539 | snmp_oid: '1.3.6.1.4.1.1004849.2.10.2.2.1.2.{#SNMPINDEX}' 540 | key: 'remoteCam[IpAddr{#SNMPINDEX}]' 541 | delay: 15m 542 | history: 2d 543 | trends: '0' 544 | value_type: CHAR 545 | tags: 546 | - 547 | tag: Camera 548 | value: ip 549 | - 550 | uuid: 2bcbdfe288d34915ae6390b6349bcc05 551 | name: 'Camera {#SNMPINDEX} Name' 552 | type: SNMP_AGENT 553 | snmp_oid: '1.3.6.1.4.1.1004849.2.10.2.2.1.4.{#SNMPINDEX}' 554 | key: 'remoteCam[name{#SNMPINDEX}]' 555 | delay: 15m 556 | history: 2d 557 | trends: '0' 558 | value_type: CHAR 559 | tags: 560 | - 561 | tag: Camera 562 | value: name 563 | - 564 | uuid: 1fa48e4640f2410098eb1b62e0adbd94 565 | name: 'Camera {#SNMPINDEX} Status' 566 | type: SNMP_AGENT 567 | snmp_oid: '1.3.6.1.4.1.1004849.2.10.2.2.1.3.{#SNMPINDEX}' 568 | key: 'remoteCam[status{#SNMPINDEX}]' 569 | delay: 5m 570 | history: 2d 571 | trends: '0' 572 | value_type: CHAR 573 | description: 'The status of remote device (Connecting, Conneted, Unconnect, Empty, Disable).' 574 | tags: 575 | - 576 | tag: Camera 577 | value: status 578 | trigger_prototypes: 579 | - 580 | uuid: 751f317495fb42e1927b45d10327385d 581 | expression: 'last(/Intelbras NVR NVD3116P SNMP/remoteCam[status{#SNMPINDEX}],#1)<>last(/Intelbras NVR NVD3116P SNMP/remoteCam[status{#SNMPINDEX}],#2)' 582 | name: 'Camera {#SNMPINDEX} status changed' 583 | opdata: '{#CAM_STATUS} - {#CAM_NAME}' 584 | priority: WARNING 585 | - 586 | uuid: 5ed49bd1ed5d4f5cb2acf00dd9536ab7 587 | name: 'Disk Discovery' 588 | type: SNMP_AGENT 589 | snmp_oid: 'discovery[{#DISK_NAME}, 1.3.6.1.4.1.1004849.2.4.1.1.4, {#DISK_STATUS}, 1.3.6.1.4.1.1004849.2.4.1.1.5, {#DISK_USED}, 1.3.6.1.4.1.1004849.2.4.1.1.6, {#DISK_SIZE}, 1.3.6.1.4.1.1004849.2.4.1.1.7]' 590 | key: vfs.disk.discovery 591 | delay: 1h 592 | lifetime: 1d 593 | description: 'Infomation of physical volume' 594 | item_prototypes: 595 | - 596 | uuid: d562009a815747ea84de42c97b2e86b5 597 | name: 'Disk {#SNMPINDEX} Percent Free - {#DISK_NAME}' 598 | type: CALCULATED 599 | key: 'physicalVolume[free{#SNMPINDEX}]' 600 | delay: 5m 601 | history: 7d 602 | units: '%' 603 | params: | 604 | 100 - (last(//physicalVolume[used{#SNMPINDEX}]) 605 | * 100 / 606 | last(//physicalVolume[size{#SNMPINDEX}])) 607 | tags: 608 | - 609 | tag: Disk 610 | value: used 611 | - 612 | uuid: 70d9dd5e4dbe4801b8d1862c2ad8c642 613 | name: 'Disk {#SNMPINDEX} Name - {#DISK_NAME}' 614 | type: SNMP_AGENT 615 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.4.{#SNMPINDEX}' 616 | key: 'physicalVolume[name{#SNMPINDEX}]' 617 | delay: 1h 618 | history: 2d 619 | trends: '0' 620 | value_type: CHAR 621 | tags: 622 | - 623 | tag: Disk 624 | value: name 625 | - 626 | uuid: a2af9406213f4664bf2e9e5513110636 627 | name: 'Disk {#SNMPINDEX} Size - {#DISK_NAME}' 628 | type: SNMP_AGENT 629 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.7.{#SNMPINDEX}' 630 | key: 'physicalVolume[size{#SNMPINDEX}]' 631 | delay: 1h 632 | history: 1d 633 | trends: '0' 634 | units: '!MB' 635 | tags: 636 | - 637 | tag: Disk 638 | value: size 639 | - 640 | uuid: feef0553ed5c4af4b9dc4509aba57011 641 | name: 'Disk {#SNMPINDEX} Status - {#DISK_NAME}' 642 | type: SNMP_AGENT 643 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.5.{#SNMPINDEX}' 644 | key: 'physicalVolume[status{#SNMPINDEX}]' 645 | delay: 5m 646 | history: 7d 647 | trends: '0' 648 | value_type: CHAR 649 | tags: 650 | - 651 | tag: Disk 652 | value: status 653 | trigger_prototypes: 654 | - 655 | uuid: 6b9e0010048346688f1e35c1473889c5 656 | expression: | 657 | last(/Intelbras NVR NVD3116P SNMP/physicalVolume[status{#SNMPINDEX}],#1)<>"Running" 658 | and 659 | last(/Intelbras NVR NVD3116P SNMP/physicalVolume[status{#SNMPINDEX}],#1)<>"RaidSub" 660 | name: 'Disk {#DISK_NAME} ERROR' 661 | opdata: '{#DISK_STATUS}' 662 | priority: HIGH 663 | - 664 | uuid: a2a0a0deb020479bb09286311d041acd 665 | name: 'Disk {#SNMPINDEX} Used - {#DISK_NAME}' 666 | type: SNMP_AGENT 667 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.6.{#SNMPINDEX}' 668 | key: 'physicalVolume[used{#SNMPINDEX}]' 669 | delay: 5m 670 | history: 7d 671 | units: '!MB' 672 | tags: 673 | - 674 | tag: Disk 675 | value: used 676 | graph_prototypes: 677 | - 678 | uuid: 178890197d5744e08772cc625987e33f 679 | name: 'Disk Usage - {#DISK_NAME}' 680 | width: '600' 681 | height: '340' 682 | yaxismax: '0' 683 | show_work_period: 'NO' 684 | show_triggers: 'NO' 685 | type: PIE 686 | show_3d: 'YES' 687 | graph_items: 688 | - 689 | sortorder: '1' 690 | color: FFAB91 691 | calc_fnc: LAST 692 | type: GRAPH_SUM 693 | item: 694 | host: 'Intelbras NVR NVD3116P SNMP' 695 | key: 'physicalVolume[size{#SNMPINDEX}]' 696 | - 697 | sortorder: '2' 698 | color: B71C1C 699 | calc_fnc: LAST 700 | item: 701 | host: 'Intelbras NVR NVD3116P SNMP' 702 | key: 'physicalVolume[used{#SNMPINDEX}]' 703 | httptests: 704 | - 705 | uuid: aeb5ce3095dc4a4c9e6452229901edb1 706 | name: 'NVR HTTP Performance' 707 | delay: 5m 708 | agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36' 709 | steps: 710 | - 711 | name: 'NVR HTTP Performance' 712 | url: 'http://{HOST.CONN}:{$HTTP_PORT}' 713 | follow_redirects: 'NO' 714 | retrieve_mode: BOTH 715 | timeout: 5s 716 | status_codes: '200' 717 | tags: 718 | - 719 | tag: NVR 720 | value: web 721 | macros: 722 | - 723 | macro: '{$HTTPS_PORT}' 724 | value: '443' 725 | - 726 | macro: '{$HTTP_PORT}' 727 | value: '80' 728 | - 729 | macro: '{$MEDIA_PORT}' 730 | value: '37777' 731 | - 732 | macro: '{$SNMP.TIMEOUT}' 733 | value: 5m 734 | dashboards: 735 | - 736 | uuid: 08c540e81cb14b4f9bc1e38c1cc68ede 737 | name: 'NVR Dashboard' 738 | pages: 739 | - 740 | widgets: 741 | - 742 | type: GRAPH_CLASSIC 743 | width: '12' 744 | height: '5' 745 | fields: 746 | - 747 | type: GRAPH 748 | name: graphid 749 | value: 750 | name: 'CPU Utilization' 751 | host: 'Intelbras NVR NVD3116P SNMP' 752 | - 753 | type: GRAPH_CLASSIC 754 | x: '12' 755 | width: '12' 756 | height: '5' 757 | fields: 758 | - 759 | type: GRAPH 760 | name: graphid 761 | value: 762 | name: 'Memory Utilization' 763 | host: 'Intelbras NVR NVD3116P SNMP' 764 | - 765 | type: GRAPH_CLASSIC 766 | 'y': '5' 767 | width: '12' 768 | height: '5' 769 | fields: 770 | - 771 | type: GRAPH 772 | name: graphid 773 | value: 774 | name: 'NVR Response Time' 775 | host: 'Intelbras NVR NVD3116P SNMP' 776 | - 777 | type: GRAPH_PROTOTYPE 778 | 'y': '10' 779 | width: '12' 780 | height: '5' 781 | fields: 782 | - 783 | type: GRAPH_PROTOTYPE 784 | name: graphid 785 | value: 786 | name: 'Disk Usage - {#DISK_NAME}' 787 | host: 'Intelbras NVR NVD3116P SNMP' 788 | - 789 | type: GRAPH_PROTOTYPE 790 | x: '12' 791 | 'y': '5' 792 | width: '12' 793 | height: '5' 794 | fields: 795 | - 796 | type: INTEGER 797 | name: columns 798 | value: '1' 799 | - 800 | type: GRAPH_PROTOTYPE 801 | name: graphid 802 | value: 803 | name: 'Interface {#IFDESCR}: Network traffic' 804 | host: 'Intelbras NVR NVD3116P SNMP' 805 | - 806 | type: CLOCK 807 | name: 'Local time' 808 | x: '12' 809 | 'y': '10' 810 | width: '4' 811 | height: '3' 812 | - 813 | type: PLAIN_TEXT 814 | name: 'System time' 815 | x: '16' 816 | 'y': '10' 817 | width: '5' 818 | height: '3' 819 | fields: 820 | - 821 | type: INTEGER 822 | name: style 823 | value: '1' 824 | - 825 | type: INTEGER 826 | name: show_lines 827 | value: '1' 828 | - 829 | type: ITEM 830 | name: itemids 831 | value: 832 | key: enterprises.systemTime 833 | host: 'Intelbras NVR NVD3116P SNMP' 834 | valuemaps: 835 | - 836 | uuid: 159905aedeb5408cad459da9ae408701 837 | name: 'NVR Device Status' 838 | mappings: 839 | - 840 | value: '0' 841 | newvalue: Bad 842 | - 843 | value: '1' 844 | newvalue: Good 845 | - 846 | uuid: bc96ddf3a7c2411f8c4109a35b1cafcf 847 | name: 'NVR System Status' 848 | mappings: 849 | - 850 | value: '0' 851 | newvalue: Online 852 | - 853 | value: '1' 854 | newvalue: Offline 855 | - 856 | value: '2' 857 | newvalue: Reboot 858 | triggers: 859 | - 860 | uuid: 2010c085fc354774ad104913f2f073b2 861 | expression: | 862 | last(/Intelbras NVR NVD3116P SNMP/enterprises.deviceUpTime)<10m or 863 | last(/Intelbras NVR NVD3116P SNMP/system.uptime[sysUpTime.0])<10m 864 | name: 'System has been restarted (uptime less 10m)' 865 | opdata: '{ITEM.LASTVALUE1}' 866 | priority: WARNING 867 | description: 'Uptime is less than 10 minutes' 868 | manual_close: 'YES' 869 | dependencies: 870 | - 871 | name: 'No SNMP data collection' 872 | expression: 'max(/Intelbras NVR NVD3116P SNMP/zabbix[host,snmp,available],{$SNMP.TIMEOUT})=0' 873 | graphs: 874 | - 875 | uuid: 3355f947691d4cfca90351c998355b69 876 | name: 'CPU Utilization' 877 | ymin_type_1: FIXED 878 | ymax_type_1: FIXED 879 | graph_items: 880 | - 881 | drawtype: GRADIENT_LINE 882 | color: 199C0D 883 | item: 884 | host: 'Intelbras NVR NVD3116P SNMP' 885 | key: enterprises.cpuUsage 886 | - 887 | uuid: f3ec20f890af4f41830c213bf9fc8eb7 888 | name: 'Memory Utilization' 889 | ymin_type_1: FIXED 890 | ymax_type_1: FIXED 891 | graph_items: 892 | - 893 | drawtype: GRADIENT_LINE 894 | color: F63100 895 | item: 896 | host: 'Intelbras NVR NVD3116P SNMP' 897 | key: enterprises.memoryUsage 898 | - 899 | uuid: 881fa2b54a7b499e8c0c9a25ebf6e8ab 900 | name: 'NVR Response Time' 901 | ymin_type_1: FIXED 902 | graph_items: 903 | - 904 | sortorder: '1' 905 | drawtype: FILLED_REGION 906 | color: FFAB91 907 | item: 908 | host: 'Intelbras NVR NVD3116P SNMP' 909 | key: 'web.test.time[NVR HTTP Performance,NVR HTTP Performance,resp]' 910 | - 911 | sortorder: '2' 912 | drawtype: BOLD_LINE 913 | color: 8F2809 914 | item: 915 | host: 'Intelbras NVR NVD3116P SNMP' 916 | key: 'net.tcp.service.perf[tcp,,{$MEDIA_PORT}]' 917 | - 918 | uuid: e841069f903240509b08da74d7035668 919 | name: 'Total connections' 920 | graph_items: 921 | - 922 | drawtype: BOLD_LINE 923 | color: FF4000 924 | item: 925 | host: 'Intelbras NVR NVD3116P SNMP' 926 | key: 'net.tcp.estab[tcpCurrEstab.0]' 927 | -------------------------------------------------------------------------------- /Template/Intelbras_NVD3116P_template_v2.yaml: -------------------------------------------------------------------------------- 1 | zabbix_export: 2 | version: '5.4' 3 | date: '2021-08-24T20:01:21Z' 4 | groups: 5 | - 6 | uuid: 36bff6c29af64692839d077febfc7079 7 | name: 'Templates/Network devices' 8 | templates: 9 | - 10 | uuid: c3b8aef8c6d24ee493fc7f1d698cfc71 11 | template: 'Intelbras NVR NVD3116P SNMP' 12 | name: 'Intelbras NVR NVD3116P SNMP' 13 | description: | 14 | NVR Intelbras "NVD 3116 P" template. 15 | 16 | For Zabbix 5.4 and higher. 17 | 18 | https://github.com/diasdmhub/Intelbras_NVD3116P_Template 19 | templates: 20 | - 21 | name: 'Interfaces Simple SNMP' 22 | groups: 23 | - 24 | name: 'Templates/Network devices' 25 | items: 26 | - 27 | uuid: 9451b00c5db743db84baa9cfcdea31f9 28 | name: 'CPU Usage' 29 | type: SNMP_AGENT 30 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.3.0 31 | key: enterprises.cpuUsage 32 | delay: 3m 33 | history: 7d 34 | units: '%' 35 | description: 'Uso da CPU em percentual' 36 | tags: 37 | - 38 | tag: System 39 | value: status 40 | triggers: 41 | - 42 | uuid: 5d2df2d2003b4dcf9583de1d37df9c1d 43 | expression: 'avg(/Intelbras NVR NVD3116P SNMP/enterprises.cpuUsage,#3)>90' 44 | recovery_mode: RECOVERY_EXPRESSION 45 | recovery_expression: 'avg(/Intelbras NVR NVD3116P SNMP/enterprises.cpuUsage,#3)<90' 46 | name: 'CPU High Utilization' 47 | opdata: '{ITEM.LASTVALUE1}' 48 | priority: HIGH 49 | description: 'Alto uso de CPU' 50 | - 51 | uuid: a7e4eeab5e204d86aaef95bedc867aa1 52 | name: 'Device Status' 53 | type: SNMP_AGENT 54 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.8.0 55 | key: enterprises.deviceStatus 56 | delay: 3m 57 | history: 7d 58 | description: 'Status do dispositivo 0 (ruim) ou 1 (bom)' 59 | valuemap: 60 | name: 'NVR Device Status' 61 | tags: 62 | - 63 | tag: Device 64 | value: general 65 | triggers: 66 | - 67 | uuid: 2e9b93f0b584449d9a5c17cac3f14fe1 68 | expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.deviceStatus)=0' 69 | recovery_mode: RECOVERY_EXPRESSION 70 | recovery_expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.deviceStatus)=1' 71 | name: 'Device Status Changed' 72 | opdata: '{ITEM.LASTVALUE1}' 73 | priority: HIGH 74 | description: | 75 | Dispositivo com status divergente 76 | 1 = Bom 77 | 0 = Ruim 78 | - 79 | uuid: 0bf7b2d975fc44419f97e0008c5e5de2 80 | name: 'Device Type' 81 | type: SNMP_AGENT 82 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.6.0 83 | key: enterprises.deviceType 84 | delay: 3m 85 | history: 2d 86 | trends: '0' 87 | value_type: CHAR 88 | description: 'Tipo e modelo do dispositivo' 89 | inventory_link: TYPE 90 | tags: 91 | - 92 | tag: Device 93 | value: general 94 | - 95 | uuid: 26a925a7f30d4dd69b5b7da4998c0d15 96 | name: 'Uptime Enterprise' 97 | type: SNMP_AGENT 98 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.6.0 99 | key: enterprises.deviceUpTime 100 | delay: 10m 101 | history: 2w 102 | trends: '0' 103 | units: uptime 104 | description: 'UpTime desde a última reinicialização' 105 | preprocessing: 106 | - 107 | type: MULTIPLIER 108 | parameters: 109 | - '0.01' 110 | tags: 111 | - 112 | tag: System 113 | value: status 114 | - 115 | uuid: c5245c9c006a4054b14beb7c7b091adb 116 | name: 'Device IP' 117 | type: SNMP_AGENT 118 | snmp_oid: 1.3.6.1.4.1.1004849.2.2.2.8.0 119 | key: enterprises.ipAddr 120 | delay: 1h 121 | history: 2d 122 | trends: '0' 123 | value_type: CHAR 124 | description: 'IP Address' 125 | tags: 126 | - 127 | tag: Device 128 | value: general 129 | triggers: 130 | - 131 | uuid: 7d91eda4419147ad892b8cec56b707e7 132 | expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.ipAddr,#1)<>last(/Intelbras NVR NVD3116P SNMP/enterprises.ipAddr,#2)' 133 | name: 'Device IP changed' 134 | opdata: 'IP: {ITEM.VALUE}' 135 | priority: WARNING 136 | description: 'Device IP changed' 137 | manual_close: 'YES' 138 | - 139 | uuid: 7325299946594f378a6335d7099371a8 140 | name: 'Memory Utilization' 141 | type: SNMP_AGENT 142 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.9.2.0 143 | key: enterprises.memoryUsage 144 | delay: 3m 145 | history: 7d 146 | value_type: FLOAT 147 | units: '%' 148 | description: 'Uso da memória em percentual' 149 | tags: 150 | - 151 | tag: System 152 | value: status 153 | triggers: 154 | - 155 | uuid: 126b8f21ad36457fbc20aa199bec26a6 156 | expression: 'avg(/Intelbras NVR NVD3116P SNMP/enterprises.memoryUsage,#3)>90' 157 | recovery_mode: RECOVERY_EXPRESSION 158 | recovery_expression: 'avg(/Intelbras NVR NVD3116P SNMP/enterprises.memoryUsage,#3)<90' 159 | name: 'Memory High Utilization' 160 | opdata: '{ITEM.LASTVALUE1}' 161 | priority: HIGH 162 | description: 'Alto uso de memória' 163 | - 164 | uuid: 0b41eaf4f4624b539402c4070c3a1020 165 | name: 'Device Serial Number' 166 | type: SNMP_AGENT 167 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.4.0 168 | key: enterprises.serialNumber 169 | delay: 1d 170 | history: 2d 171 | trends: '0' 172 | value_type: CHAR 173 | description: 'Número de série do dispositivo' 174 | inventory_link: SERIALNO_A 175 | tags: 176 | - 177 | tag: Device 178 | value: general 179 | - 180 | uuid: 9a217be202584a858c2857f64913f96e 181 | name: 'System Status' 182 | type: SNMP_AGENT 183 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.7.0 184 | key: enterprises.systemStatus 185 | delay: 3m 186 | history: 7d 187 | description: 'Status do sistema: online(0), offline(1), reboot(2)' 188 | valuemap: 189 | name: 'NVR System Status' 190 | tags: 191 | - 192 | tag: Device 193 | value: general 194 | triggers: 195 | - 196 | uuid: 7b27f2cbce1941f4842db349be14df7d 197 | expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.systemStatus)=1' 198 | recovery_mode: RECOVERY_EXPRESSION 199 | recovery_expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.systemStatus)=0' 200 | name: 'System Status Offline' 201 | opdata: '{ITEM.LASTVALUE1}' 202 | priority: DISASTER 203 | description: | 204 | Sistema parado! 205 | 0 - online 206 | 1 - offline 207 | 2- reboot 208 | - 209 | uuid: 2b4e8785ba8441afae57a848b09b566a 210 | name: 'System Time' 211 | type: SNMP_AGENT 212 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.8.0 213 | key: enterprises.systemTime 214 | delay: 3m 215 | history: 2d 216 | trends: '0' 217 | value_type: CHAR 218 | description: | 219 | Horário do dispositivo 220 | (String) formato: YYYY/MM/DD HOUR:MIN:SEC. ex: 2014/10/13 10:32:31" 221 | tags: 222 | - 223 | tag: System 224 | value: status 225 | - 226 | uuid: 77f25d88e8554c6a83ca14f4e8285497 227 | name: 'Device System Version' 228 | type: SNMP_AGENT 229 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.5.0 230 | key: enterprises.systemVersion 231 | delay: 1d 232 | history: 7d 233 | trends: '0' 234 | value_type: CHAR 235 | description: 'Versão do sistema' 236 | inventory_link: SOFTWARE 237 | tags: 238 | - 239 | tag: Device 240 | value: general 241 | triggers: 242 | - 243 | uuid: 792c5acff95e4c12bc7b2844cc4e5d8e 244 | expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.systemVersion,#1)<>last(/Intelbras NVR NVD3116P SNMP/enterprises.systemVersion,#2)' 245 | name: 'Device System Version changed' 246 | opdata: '{ITEM.VALUE}' 247 | priority: WARNING 248 | description: 'Device system version changed' 249 | manual_close: 'YES' 250 | - 251 | uuid: bcce907e78f04f2dad9a9ddbafa52da8 252 | name: 'TCP Established Connections' 253 | type: SNMP_AGENT 254 | snmp_oid: 1.3.6.1.2.1.6.9.0 255 | key: 'net.tcp.estab[tcpCurrEstab.0]' 256 | delay: 3m 257 | history: 7d 258 | trends: '0' 259 | description: 'Total currently established connections.' 260 | tags: 261 | - 262 | tag: System 263 | value: status 264 | - 265 | uuid: 4acf9f67f76240c1a032e103826c53aa 266 | name: 'NVR WEB Performance' 267 | type: SIMPLE 268 | key: 'net.tcp.service.perf[tcp,,{$HTTP_PORT}]' 269 | delay: 5m 270 | history: 1w 271 | status: DISABLED 272 | value_type: FLOAT 273 | units: s 274 | description: | 275 | NVR's web interface performance check. 276 | Web Scenario already collects Web data. 277 | If necessary enable this item for TCP data collection. 278 | Verificação do desempenho da interface WEB do NVR. 279 | Cenário Web já coleta dados Web. 280 | Se necessário habilite este item para coleta de dados TCP. 281 | tags: 282 | - 283 | tag: System 284 | value: status 285 | - 286 | uuid: 465aa59acfd14b37815b3aa22f3004c2 287 | name: 'NVR Performance' 288 | type: SIMPLE 289 | key: 'net.tcp.service.perf[tcp,,{$MEDIA_PORT}]' 290 | delay: 5m 291 | history: 1w 292 | value_type: FLOAT 293 | units: s 294 | description: 'Verificação do desempenho do NVR.' 295 | tags: 296 | - 297 | tag: System 298 | value: status 299 | - 300 | uuid: 4e314ab95cb54c909e6b095ed3817d1d 301 | name: 'NVR Performance Average' 302 | type: CALCULATED 303 | key: service.perf.avg.tcp 304 | delay: 5m 305 | history: 1w 306 | value_type: FLOAT 307 | units: s 308 | params: 'avg(//net.tcp.service.perf[tcp,,16990],25m)' 309 | tags: 310 | - 311 | tag: System 312 | value: status 313 | - 314 | uuid: 439b91cea8b4473eae485cb5f3b37e1a 315 | name: 'SNMP Bad community' 316 | type: SNMP_AGENT 317 | snmp_oid: 1.3.6.1.2.1.11.4.0 318 | key: snmpInBadCommunityNames 319 | delay: 5m 320 | history: 7d 321 | trends: '0' 322 | description: 'Incorrect SNMP community received.' 323 | tags: 324 | - 325 | tag: System 326 | value: status 327 | triggers: 328 | - 329 | uuid: 8196813c27954ad7a3efc8df0bf77bc9 330 | expression: '(max(/Intelbras NVR NVD3116P SNMP/snmpInBadCommunityNames,#4)-min(/Intelbras NVR NVD3116P SNMP/snmpInBadCommunityNames,#4))>4' 331 | name: 'SNMP Bad community attempt' 332 | opdata: 'Latest attempts: {ITEM.LASTVALUE1}' 333 | priority: WARNING 334 | description: 'Check for possible invalid access attempt' 335 | manual_close: 'YES' 336 | dependencies: 337 | - 338 | name: 'No SNMP data collection' 339 | expression: 'max(/Intelbras NVR NVD3116P SNMP/zabbix[host,snmp,available],{$SNMP.TIMEOUT})=0' 340 | - 341 | uuid: f59250bbe20a47fbafc5b3f4fe208be7 342 | name: 'SNMP traps (fallback)' 343 | type: SNMP_TRAP 344 | key: snmptrap.fallback 345 | delay: '0' 346 | history: 2w 347 | trends: '0' 348 | value_type: LOG 349 | description: 'Item is used to collect all SNMP traps unmatched by other snmptrap items' 350 | logtimefmt: 'hh:mm:sszyyyy/MM/dd' 351 | tags: 352 | - 353 | tag: System 354 | value: status 355 | - 356 | uuid: 9fdc05f7a808453cadd6090b49930a3a 357 | name: 'System contact details' 358 | type: SNMP_AGENT 359 | snmp_oid: 1.3.6.1.2.1.1.4.0 360 | key: 'system.contact[sysContact.0]' 361 | delay: 1d 362 | history: 2d 363 | trends: '0' 364 | status: DISABLED 365 | value_type: CHAR 366 | description: | 367 | MIB: SNMPv2-MIB 368 | The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. 369 | inventory_link: CONTACT 370 | preprocessing: 371 | - 372 | type: DISCARD_UNCHANGED_HEARTBEAT 373 | parameters: 374 | - 1d 375 | tags: 376 | - 377 | tag: Device 378 | value: general 379 | - 380 | uuid: 1c3f4f8993ea407c8796ea299bd74c36 381 | name: 'System description' 382 | type: SNMP_AGENT 383 | snmp_oid: 1.3.6.1.2.1.1.1.0 384 | key: 'system.descr[sysDescr.0]' 385 | delay: 1d 386 | history: 2d 387 | trends: '0' 388 | status: DISABLED 389 | value_type: CHAR 390 | description: | 391 | MIB: SNMPv2-MIB 392 | A textual description of the entity. This value should 393 | include the full name and version identification of the system's hardware type, software operating-system, and 394 | networking software. 395 | inventory_link: NOTES 396 | preprocessing: 397 | - 398 | type: DISCARD_UNCHANGED_HEARTBEAT 399 | parameters: 400 | - 1d 401 | tags: 402 | - 403 | tag: Device 404 | value: general 405 | - 406 | uuid: e861b80b0a91478886046b98e1c1b73a 407 | name: 'System location' 408 | type: SNMP_AGENT 409 | snmp_oid: 1.3.6.1.2.1.1.6.0 410 | key: 'system.location[sysLocation.0]' 411 | delay: 1d 412 | history: 2d 413 | trends: '0' 414 | status: DISABLED 415 | value_type: CHAR 416 | description: | 417 | MIB: SNMPv2-MIB 418 | The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. 419 | inventory_link: LOCATION 420 | preprocessing: 421 | - 422 | type: DISCARD_UNCHANGED_HEARTBEAT 423 | parameters: 424 | - 1h 425 | tags: 426 | - 427 | tag: Device 428 | value: general 429 | - 430 | uuid: 83fa01fe8049481f808e0dd9ca477422 431 | name: 'System name' 432 | type: SNMP_AGENT 433 | snmp_oid: 1.3.6.1.2.1.1.5.0 434 | key: system.name 435 | delay: 1d 436 | history: 2d 437 | trends: '0' 438 | value_type: CHAR 439 | description: | 440 | MIB: SNMPv2-MIB 441 | An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. 442 | inventory_link: NAME 443 | preprocessing: 444 | - 445 | type: DISCARD_UNCHANGED_HEARTBEAT 446 | parameters: 447 | - 1h 448 | tags: 449 | - 450 | tag: Device 451 | value: general 452 | triggers: 453 | - 454 | uuid: c6349c2779c94046abf8fdc996d7ff79 455 | expression: '(last(/Intelbras NVR NVD3116P SNMP/system.name,#1)<>last(/Intelbras NVR NVD3116P SNMP/system.name,#2))=1 and length(last(/Intelbras NVR NVD3116P SNMP/system.name))>0' 456 | name: 'System name has changed' 457 | opdata: 'New name: {ITEM.VALUE}' 458 | priority: INFO 459 | description: 'System name has changed. Ack to close.' 460 | manual_close: 'YES' 461 | - 462 | uuid: eba033190e72492d80dda3c44a95b72c 463 | name: 'System object ID' 464 | type: SNMP_AGENT 465 | snmp_oid: 1.3.6.1.2.1.1.2.0 466 | key: 'system.objectid[sysObjectID.0]' 467 | delay: 1d 468 | history: 2d 469 | trends: '0' 470 | value_type: CHAR 471 | description: | 472 | MIB: SNMPv2-MIB 473 | The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. 474 | **Might be invalid** 475 | preprocessing: 476 | - 477 | type: DISCARD_UNCHANGED_HEARTBEAT 478 | parameters: 479 | - 1h 480 | tags: 481 | - 482 | tag: Device 483 | value: general 484 | - 485 | uuid: 2877e152c6f94e408dff1805528864f3 486 | name: 'Uptime Generic' 487 | type: SNMP_AGENT 488 | snmp_oid: 1.3.6.1.2.1.1.3.0 489 | key: 'system.uptime[sysUpTime.0]' 490 | delay: 10m 491 | history: 2w 492 | trends: '0' 493 | units: uptime 494 | description: | 495 | MIB: SNMPv2-MIB 496 | The time (in hundredths of a second) since the network management portion of the system was last re-initialized. 497 | preprocessing: 498 | - 499 | type: MULTIPLIER 500 | parameters: 501 | - '0.01' 502 | tags: 503 | - 504 | tag: System 505 | value: status 506 | - 507 | uuid: 9385027fca664ffe8bfab056ed9d681c 508 | name: 'SNMP agent availability' 509 | type: INTERNAL 510 | key: 'zabbix[host,snmp,available]' 511 | history: 7d 512 | trends: '0' 513 | tags: 514 | - 515 | tag: System 516 | value: status 517 | triggers: 518 | - 519 | uuid: 402a97ff650c44a791c6eb60d33cc889 520 | expression: 'max(/Intelbras NVR NVD3116P SNMP/zabbix[host,snmp,available],{$SNMP.TIMEOUT})=0' 521 | name: 'No SNMP data collection' 522 | opdata: 'Current state: {ITEM.LASTVALUE1}' 523 | priority: HIGH 524 | description: 'SNMP is not available for polling. Please check device connectivity and SNMP settings.' 525 | discovery_rules: 526 | - 527 | uuid: db9a014c00de49e086c51215efad802e 528 | name: 'Camera Discovery' 529 | type: SNMP_AGENT 530 | snmp_oid: 'discovery[{#ICAM_IP}, 1.3.6.1.4.1.1004849.2.10.2.2.1.2, {#CAM_NAME}, 1.3.6.1.4.1.1004849.2.10.2.2.1.4, {#CAM_STATUS}, 1.3.6.1.4.1.1004849.2.10.2.2.1.3]' 531 | key: net.cam.discovery 532 | delay: 1h 533 | lifetime: 1d 534 | item_prototypes: 535 | - 536 | uuid: 0763a7279bde44c8bd467b2af73fe250 537 | name: 'Camera {#SNMPINDEX} IP' 538 | type: SNMP_AGENT 539 | snmp_oid: '1.3.6.1.4.1.1004849.2.10.2.2.1.2.{#SNMPINDEX}' 540 | key: 'remoteCam[IpAddr{#SNMPINDEX}]' 541 | delay: 15m 542 | history: 2d 543 | trends: '0' 544 | value_type: CHAR 545 | tags: 546 | - 547 | tag: Camera 548 | value: ip 549 | - 550 | uuid: 2bcbdfe288d34915ae6390b6349bcc05 551 | name: 'Camera {#SNMPINDEX} Name' 552 | type: SNMP_AGENT 553 | snmp_oid: '1.3.6.1.4.1.1004849.2.10.2.2.1.4.{#SNMPINDEX}' 554 | key: 'remoteCam[name{#SNMPINDEX}]' 555 | delay: 15m 556 | history: 2d 557 | trends: '0' 558 | value_type: CHAR 559 | tags: 560 | - 561 | tag: Camera 562 | value: name 563 | - 564 | uuid: 1fa48e4640f2410098eb1b62e0adbd94 565 | name: 'Camera {#SNMPINDEX} Status' 566 | type: SNMP_AGENT 567 | snmp_oid: '1.3.6.1.4.1.1004849.2.10.2.2.1.3.{#SNMPINDEX}' 568 | key: 'remoteCam[status{#SNMPINDEX}]' 569 | delay: 5m 570 | history: 2d 571 | trends: '0' 572 | value_type: CHAR 573 | description: 'The status of remote device (Connecting, Conneted, Unconnect, Empty, Disable).' 574 | tags: 575 | - 576 | tag: Camera 577 | value: status 578 | trigger_prototypes: 579 | - 580 | uuid: 751f317495fb42e1927b45d10327385d 581 | expression: 'last(/Intelbras NVR NVD3116P SNMP/remoteCam[status{#SNMPINDEX}],#1)<>last(/Intelbras NVR NVD3116P SNMP/remoteCam[status{#SNMPINDEX}],#2)' 582 | name: 'Camera {#SNMPINDEX} status changed' 583 | opdata: '{#CAM_STATUS} - {#CAM_NAME}' 584 | priority: WARNING 585 | - 586 | uuid: 5ed49bd1ed5d4f5cb2acf00dd9536ab7 587 | name: 'Disk Discovery' 588 | type: SNMP_AGENT 589 | snmp_oid: 'discovery[{#DISK_NAME}, 1.3.6.1.4.1.1004849.2.4.1.1.4, {#DISK_STATUS}, 1.3.6.1.4.1.1004849.2.4.1.1.5, {#DISK_USED}, 1.3.6.1.4.1.1004849.2.4.1.1.6, {#DISK_SIZE}, 1.3.6.1.4.1.1004849.2.4.1.1.7]' 590 | key: vfs.disk.discovery 591 | delay: 1h 592 | lifetime: 1d 593 | description: 'Infomation of physical volume' 594 | item_prototypes: 595 | - 596 | uuid: d562009a815747ea84de42c97b2e86b5 597 | name: 'Disk {#SNMPINDEX} Percent Free - {#DISK_NAME}' 598 | type: CALCULATED 599 | key: 'physicalVolume[free{#SNMPINDEX}]' 600 | delay: 5m 601 | history: 7d 602 | units: '%' 603 | params: | 604 | 100 - (last(//physicalVolume[used{#SNMPINDEX}]) 605 | * 100 / 606 | last(//physicalVolume[size{#SNMPINDEX}])) 607 | tags: 608 | - 609 | tag: Disk 610 | value: used 611 | trigger_prototypes: 612 | - 613 | uuid: 6af35893d4774cb9bb43efb09ab3369a 614 | expression: 'last(/Intelbras NVR NVD3116P SNMP/physicalVolume[free{#SNMPINDEX}],#1)<{$DISK_FREE_WARN}' 615 | name: 'Disk {#DISK_NAME} free space is low' 616 | opdata: '{ITEM.LASTVALUE} free' 617 | priority: WARNING 618 | - 619 | uuid: 70d9dd5e4dbe4801b8d1862c2ad8c642 620 | name: 'Disk {#SNMPINDEX} Name - {#DISK_NAME}' 621 | type: SNMP_AGENT 622 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.4.{#SNMPINDEX}' 623 | key: 'physicalVolume[name{#SNMPINDEX}]' 624 | delay: 1h 625 | history: 2d 626 | trends: '0' 627 | value_type: CHAR 628 | tags: 629 | - 630 | tag: Disk 631 | value: name 632 | - 633 | uuid: a2af9406213f4664bf2e9e5513110636 634 | name: 'Disk {#SNMPINDEX} Size - {#DISK_NAME}' 635 | type: SNMP_AGENT 636 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.7.{#SNMPINDEX}' 637 | key: 'physicalVolume[size{#SNMPINDEX}]' 638 | delay: 1h 639 | history: 1d 640 | trends: '0' 641 | units: '!MB' 642 | tags: 643 | - 644 | tag: Disk 645 | value: size 646 | - 647 | uuid: feef0553ed5c4af4b9dc4509aba57011 648 | name: 'Disk {#SNMPINDEX} Status - {#DISK_NAME}' 649 | type: SNMP_AGENT 650 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.5.{#SNMPINDEX}' 651 | key: 'physicalVolume[status{#SNMPINDEX}]' 652 | delay: 5m 653 | history: 7d 654 | trends: '0' 655 | value_type: CHAR 656 | tags: 657 | - 658 | tag: Disk 659 | value: status 660 | trigger_prototypes: 661 | - 662 | uuid: 6b9e0010048346688f1e35c1473889c5 663 | expression: | 664 | last(/Intelbras NVR NVD3116P SNMP/physicalVolume[status{#SNMPINDEX}],#1)<>"Running" 665 | and 666 | last(/Intelbras NVR NVD3116P SNMP/physicalVolume[status{#SNMPINDEX}],#1)<>"RaidSub" 667 | name: 'Disk {#DISK_NAME} ERROR' 668 | opdata: '{#DISK_STATUS}' 669 | priority: HIGH 670 | - 671 | uuid: a2a0a0deb020479bb09286311d041acd 672 | name: 'Disk {#SNMPINDEX} Used - {#DISK_NAME}' 673 | type: SNMP_AGENT 674 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.6.{#SNMPINDEX}' 675 | key: 'physicalVolume[used{#SNMPINDEX}]' 676 | delay: 5m 677 | history: 7d 678 | units: '!MB' 679 | tags: 680 | - 681 | tag: Disk 682 | value: used 683 | graph_prototypes: 684 | - 685 | uuid: 178890197d5744e08772cc625987e33f 686 | name: 'Disk Usage - {#DISK_NAME}' 687 | width: '600' 688 | height: '340' 689 | yaxismax: '0' 690 | show_work_period: 'NO' 691 | show_triggers: 'NO' 692 | type: PIE 693 | show_3d: 'YES' 694 | graph_items: 695 | - 696 | sortorder: '1' 697 | color: FFAB91 698 | calc_fnc: LAST 699 | type: GRAPH_SUM 700 | item: 701 | host: 'Intelbras NVR NVD3116P SNMP' 702 | key: 'physicalVolume[size{#SNMPINDEX}]' 703 | - 704 | sortorder: '2' 705 | color: B71C1C 706 | calc_fnc: LAST 707 | item: 708 | host: 'Intelbras NVR NVD3116P SNMP' 709 | key: 'physicalVolume[used{#SNMPINDEX}]' 710 | httptests: 711 | - 712 | uuid: aeb5ce3095dc4a4c9e6452229901edb1 713 | name: 'NVR HTTP Performance' 714 | delay: 5m 715 | agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36' 716 | steps: 717 | - 718 | name: 'NVR HTTP Performance' 719 | url: 'http://{HOST.CONN}:{$HTTP_PORT}' 720 | follow_redirects: 'NO' 721 | retrieve_mode: BOTH 722 | timeout: 5s 723 | status_codes: '200' 724 | tags: 725 | - 726 | tag: NVR 727 | value: web 728 | macros: 729 | - 730 | macro: '{$DISK_FREE_WARN}' 731 | value: '5' 732 | description: 'Disk free percentage threshold (limiar)' 733 | - 734 | macro: '{$HTTPS_PORT}' 735 | value: '443' 736 | - 737 | macro: '{$HTTP_PORT}' 738 | value: '80' 739 | - 740 | macro: '{$MEDIA_PORT}' 741 | value: '37777' 742 | - 743 | macro: '{$SNMP.TIMEOUT}' 744 | value: 5m 745 | dashboards: 746 | - 747 | uuid: 08c540e81cb14b4f9bc1e38c1cc68ede 748 | name: 'NVR Dashboard' 749 | pages: 750 | - 751 | widgets: 752 | - 753 | type: GRAPH_CLASSIC 754 | width: '12' 755 | height: '5' 756 | fields: 757 | - 758 | type: GRAPH 759 | name: graphid 760 | value: 761 | name: 'CPU Utilization' 762 | host: 'Intelbras NVR NVD3116P SNMP' 763 | - 764 | type: GRAPH_CLASSIC 765 | x: '12' 766 | width: '12' 767 | height: '5' 768 | fields: 769 | - 770 | type: GRAPH 771 | name: graphid 772 | value: 773 | name: 'Memory Utilization' 774 | host: 'Intelbras NVR NVD3116P SNMP' 775 | - 776 | type: GRAPH_CLASSIC 777 | 'y': '5' 778 | width: '12' 779 | height: '5' 780 | fields: 781 | - 782 | type: GRAPH 783 | name: graphid 784 | value: 785 | name: 'NVR Response Time' 786 | host: 'Intelbras NVR NVD3116P SNMP' 787 | - 788 | type: GRAPH_PROTOTYPE 789 | 'y': '10' 790 | width: '12' 791 | height: '5' 792 | fields: 793 | - 794 | type: GRAPH_PROTOTYPE 795 | name: graphid 796 | value: 797 | name: 'Disk Usage - {#DISK_NAME}' 798 | host: 'Intelbras NVR NVD3116P SNMP' 799 | - 800 | type: GRAPH_PROTOTYPE 801 | x: '12' 802 | 'y': '5' 803 | width: '12' 804 | height: '5' 805 | fields: 806 | - 807 | type: INTEGER 808 | name: columns 809 | value: '1' 810 | - 811 | type: GRAPH_PROTOTYPE 812 | name: graphid 813 | value: 814 | name: 'Interface {#IFDESCR}: Network traffic' 815 | host: 'Intelbras NVR NVD3116P SNMP' 816 | - 817 | type: CLOCK 818 | name: 'Local time' 819 | x: '12' 820 | 'y': '10' 821 | width: '4' 822 | height: '3' 823 | - 824 | type: PLAIN_TEXT 825 | name: 'System time' 826 | x: '16' 827 | 'y': '10' 828 | width: '5' 829 | height: '3' 830 | fields: 831 | - 832 | type: INTEGER 833 | name: style 834 | value: '1' 835 | - 836 | type: INTEGER 837 | name: show_lines 838 | value: '1' 839 | - 840 | type: ITEM 841 | name: itemids 842 | value: 843 | key: enterprises.systemTime 844 | host: 'Intelbras NVR NVD3116P SNMP' 845 | valuemaps: 846 | - 847 | uuid: 159905aedeb5408cad459da9ae408701 848 | name: 'NVR Device Status' 849 | mappings: 850 | - 851 | value: '0' 852 | newvalue: Bad 853 | - 854 | value: '1' 855 | newvalue: Good 856 | - 857 | uuid: bc96ddf3a7c2411f8c4109a35b1cafcf 858 | name: 'NVR System Status' 859 | mappings: 860 | - 861 | value: '0' 862 | newvalue: Online 863 | - 864 | value: '1' 865 | newvalue: Offline 866 | - 867 | value: '2' 868 | newvalue: Reboot 869 | triggers: 870 | - 871 | uuid: 2010c085fc354774ad104913f2f073b2 872 | expression: | 873 | last(/Intelbras NVR NVD3116P SNMP/enterprises.deviceUpTime)<10m or 874 | last(/Intelbras NVR NVD3116P SNMP/system.uptime[sysUpTime.0])<10m 875 | name: 'System has been restarted (uptime less 10m)' 876 | opdata: '{ITEM.LASTVALUE1}' 877 | priority: WARNING 878 | description: 'Uptime is less than 10 minutes' 879 | manual_close: 'YES' 880 | dependencies: 881 | - 882 | name: 'No SNMP data collection' 883 | expression: 'max(/Intelbras NVR NVD3116P SNMP/zabbix[host,snmp,available],{$SNMP.TIMEOUT})=0' 884 | graphs: 885 | - 886 | uuid: 3355f947691d4cfca90351c998355b69 887 | name: 'CPU Utilization' 888 | ymin_type_1: FIXED 889 | ymax_type_1: FIXED 890 | graph_items: 891 | - 892 | drawtype: GRADIENT_LINE 893 | color: 199C0D 894 | item: 895 | host: 'Intelbras NVR NVD3116P SNMP' 896 | key: enterprises.cpuUsage 897 | - 898 | uuid: f3ec20f890af4f41830c213bf9fc8eb7 899 | name: 'Memory Utilization' 900 | ymin_type_1: FIXED 901 | ymax_type_1: FIXED 902 | graph_items: 903 | - 904 | drawtype: GRADIENT_LINE 905 | color: F63100 906 | item: 907 | host: 'Intelbras NVR NVD3116P SNMP' 908 | key: enterprises.memoryUsage 909 | - 910 | uuid: 881fa2b54a7b499e8c0c9a25ebf6e8ab 911 | name: 'NVR Response Time' 912 | ymin_type_1: FIXED 913 | graph_items: 914 | - 915 | sortorder: '1' 916 | drawtype: FILLED_REGION 917 | color: FFAB91 918 | item: 919 | host: 'Intelbras NVR NVD3116P SNMP' 920 | key: 'web.test.time[NVR HTTP Performance,NVR HTTP Performance,resp]' 921 | - 922 | sortorder: '2' 923 | drawtype: BOLD_LINE 924 | color: 8F2809 925 | item: 926 | host: 'Intelbras NVR NVD3116P SNMP' 927 | key: 'net.tcp.service.perf[tcp,,{$MEDIA_PORT}]' 928 | - 929 | uuid: e841069f903240509b08da74d7035668 930 | name: 'Total connections' 931 | graph_items: 932 | - 933 | drawtype: BOLD_LINE 934 | color: FF4000 935 | item: 936 | host: 'Intelbras NVR NVD3116P SNMP' 937 | key: 'net.tcp.estab[tcpCurrEstab.0]' 938 | -------------------------------------------------------------------------------- /Template/Intelbras_NVD3116P_template_v3.yaml: -------------------------------------------------------------------------------- 1 | zabbix_export: 2 | version: '6.2' 3 | date: '2022-07-19T00:57:34Z' 4 | template_groups: 5 | - 6 | uuid: 36bff6c29af64692839d077febfc7079 7 | name: 'Templates/Network devices' 8 | templates: 9 | - 10 | uuid: c3b8aef8c6d24ee493fc7f1d698cfc71 11 | template: 'Intelbras NVR NVD3116P SNMP' 12 | name: 'Intelbras NVR NVD3116P SNMP' 13 | description: | 14 | Intelbras NVR template. 15 | 16 | For Zabbix 5.4 and higher. 17 | 18 | https://github.com/diasdmhub/Intelbras_NVR_Zabbix_Template 19 | templates: 20 | - 21 | name: 'Interfaces Simple SNMP' 22 | groups: 23 | - 24 | name: 'Templates/Network devices' 25 | items: 26 | - 27 | uuid: 9451b00c5db743db84baa9cfcdea31f9 28 | name: 'CPU Usage' 29 | type: SNMP_AGENT 30 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.3.0 31 | key: enterprises.cpuUsage 32 | delay: 3m 33 | history: 7d 34 | units: '%' 35 | description: 'Uso da CPU em percentual' 36 | tags: 37 | - 38 | tag: System 39 | value: status 40 | triggers: 41 | - 42 | uuid: 5d2df2d2003b4dcf9583de1d37df9c1d 43 | expression: 'avg(/Intelbras NVR NVD3116P SNMP/enterprises.cpuUsage,#3)>90' 44 | recovery_mode: RECOVERY_EXPRESSION 45 | recovery_expression: 'avg(/Intelbras NVR NVD3116P SNMP/enterprises.cpuUsage,#3)<90' 46 | name: 'CPU High Utilization' 47 | opdata: '{ITEM.LASTVALUE1}' 48 | priority: HIGH 49 | description: 'Alto uso de CPU' 50 | - 51 | uuid: a7e4eeab5e204d86aaef95bedc867aa1 52 | name: 'Device Status' 53 | type: SNMP_AGENT 54 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.8.0 55 | key: enterprises.deviceStatus 56 | delay: 3m 57 | history: 7d 58 | description: 'Status do dispositivo 0 (ruim) ou 1 (bom)' 59 | valuemap: 60 | name: 'NVR Device Status' 61 | tags: 62 | - 63 | tag: Device 64 | value: general 65 | triggers: 66 | - 67 | uuid: 2e9b93f0b584449d9a5c17cac3f14fe1 68 | expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.deviceStatus)=0' 69 | recovery_mode: RECOVERY_EXPRESSION 70 | recovery_expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.deviceStatus)=1' 71 | name: 'Device Status Changed' 72 | opdata: '{ITEM.LASTVALUE1}' 73 | priority: HIGH 74 | description: | 75 | Dispositivo com status divergente 76 | 1 = Bom 77 | 0 = Ruim 78 | - 79 | uuid: 0bf7b2d975fc44419f97e0008c5e5de2 80 | name: 'Device Type' 81 | type: SNMP_AGENT 82 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.6.0 83 | key: enterprises.deviceType 84 | delay: 3m 85 | history: 2d 86 | trends: '0' 87 | value_type: CHAR 88 | description: 'Tipo e modelo do dispositivo' 89 | inventory_link: TYPE 90 | tags: 91 | - 92 | tag: Device 93 | value: general 94 | - 95 | uuid: 26a925a7f30d4dd69b5b7da4998c0d15 96 | name: 'Uptime Enterprise' 97 | type: SNMP_AGENT 98 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.6.0 99 | key: enterprises.deviceUpTime 100 | delay: 10m 101 | history: 2w 102 | trends: '0' 103 | units: uptime 104 | description: 'UpTime desde a última reinicialização' 105 | preprocessing: 106 | - 107 | type: MULTIPLIER 108 | parameters: 109 | - '0.01' 110 | tags: 111 | - 112 | tag: System 113 | value: status 114 | - 115 | uuid: c5245c9c006a4054b14beb7c7b091adb 116 | name: 'Device IP' 117 | type: SNMP_AGENT 118 | snmp_oid: 1.3.6.1.4.1.1004849.2.2.2.8.0 119 | key: enterprises.ipAddr 120 | delay: 1h 121 | history: 2d 122 | trends: '0' 123 | value_type: CHAR 124 | description: 'IP Address' 125 | tags: 126 | - 127 | tag: Device 128 | value: general 129 | triggers: 130 | - 131 | uuid: 7d91eda4419147ad892b8cec56b707e7 132 | expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.ipAddr,#1)<>last(/Intelbras NVR NVD3116P SNMP/enterprises.ipAddr,#2)' 133 | name: 'Device IP changed' 134 | opdata: 'IP: {ITEM.VALUE}' 135 | priority: WARNING 136 | description: 'Device IP changed' 137 | manual_close: 'YES' 138 | - 139 | uuid: 7325299946594f378a6335d7099371a8 140 | name: 'Memory Utilization' 141 | type: SNMP_AGENT 142 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.9.2.0 143 | key: enterprises.memoryUsage 144 | delay: 3m 145 | history: 7d 146 | value_type: FLOAT 147 | units: '%' 148 | description: 'Uso da memória em percentual' 149 | tags: 150 | - 151 | tag: System 152 | value: status 153 | triggers: 154 | - 155 | uuid: 126b8f21ad36457fbc20aa199bec26a6 156 | expression: 'avg(/Intelbras NVR NVD3116P SNMP/enterprises.memoryUsage,#3)>95' 157 | name: 'Memory High Utilization' 158 | opdata: '{ITEM.LASTVALUE1}' 159 | priority: HIGH 160 | description: 'Alto uso de memória' 161 | - 162 | uuid: 0b41eaf4f4624b539402c4070c3a1020 163 | name: 'Device Serial Number' 164 | type: SNMP_AGENT 165 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.4.0 166 | key: enterprises.serialNumber 167 | delay: 1d 168 | history: 2d 169 | trends: '0' 170 | value_type: CHAR 171 | description: 'Número de série do dispositivo' 172 | inventory_link: SERIALNO_A 173 | tags: 174 | - 175 | tag: Device 176 | value: general 177 | - 178 | uuid: 9a217be202584a858c2857f64913f96e 179 | name: 'System Status' 180 | type: SNMP_AGENT 181 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.7.0 182 | key: enterprises.systemStatus 183 | delay: 3m 184 | history: 7d 185 | description: 'Status do sistema: online(0), offline(1), reboot(2)' 186 | valuemap: 187 | name: 'NVR System Status' 188 | tags: 189 | - 190 | tag: Device 191 | value: general 192 | triggers: 193 | - 194 | uuid: 7b27f2cbce1941f4842db349be14df7d 195 | expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.systemStatus)=1' 196 | recovery_mode: RECOVERY_EXPRESSION 197 | recovery_expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.systemStatus)=0' 198 | name: 'System Status Offline' 199 | opdata: '{ITEM.LASTVALUE1}' 200 | priority: DISASTER 201 | description: | 202 | Sistema parado! 203 | 0 - online 204 | 1 - offline 205 | 2- reboot 206 | - 207 | uuid: 2b4e8785ba8441afae57a848b09b566a 208 | name: 'System Time' 209 | type: SNMP_AGENT 210 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.8.0 211 | key: enterprises.systemTime 212 | delay: 3m 213 | history: 2d 214 | trends: '0' 215 | value_type: CHAR 216 | description: | 217 | Horário do dispositivo 218 | (String) formato: YYYY/MM/DD HOUR:MIN:SEC. ex: 2014/10/13 10:32:31" 219 | tags: 220 | - 221 | tag: System 222 | value: status 223 | - 224 | uuid: 77f25d88e8554c6a83ca14f4e8285497 225 | name: 'Device System Version' 226 | type: SNMP_AGENT 227 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.5.0 228 | key: enterprises.systemVersion 229 | delay: 1d 230 | history: 2d 231 | trends: '0' 232 | value_type: CHAR 233 | description: 'Versão do sistema' 234 | inventory_link: SOFTWARE 235 | tags: 236 | - 237 | tag: Device 238 | value: general 239 | triggers: 240 | - 241 | uuid: 792c5acff95e4c12bc7b2844cc4e5d8e 242 | expression: 'last(/Intelbras NVR NVD3116P SNMP/enterprises.systemVersion,#1)<>last(/Intelbras NVR NVD3116P SNMP/enterprises.systemVersion,#2)' 243 | name: 'Device System Version changed' 244 | opdata: '{ITEM.VALUE}' 245 | priority: WARNING 246 | description: 'Device system version changed' 247 | manual_close: 'YES' 248 | - 249 | uuid: 4acf9f67f76240c1a032e103826c53aa 250 | name: 'NVR WEB Performance' 251 | type: SIMPLE 252 | key: 'net.tcp.service.perf[tcp,,{$HTTP_PORT}]' 253 | delay: 5m 254 | history: 1w 255 | value_type: FLOAT 256 | units: s 257 | description: | 258 | NVR's web interface performance check. 259 | Web Scenario already collects Web data. 260 | If necessary enable this item for TCP data collection. 261 | Verificação do desempenho da interface WEB do NVR. 262 | Cenário Web já coleta dados Web. 263 | Se necessário habilite este item para coleta de dados TCP. 264 | tags: 265 | - 266 | tag: System 267 | value: status 268 | - 269 | uuid: 465aa59acfd14b37815b3aa22f3004c2 270 | name: 'NVR Performance' 271 | type: SIMPLE 272 | key: 'net.tcp.service.perf[tcp,,{$MEDIA_PORT}]' 273 | delay: 5m 274 | history: 1w 275 | value_type: FLOAT 276 | units: s 277 | description: 'Verificação do desempenho do NVR.' 278 | tags: 279 | - 280 | tag: System 281 | value: status 282 | - 283 | uuid: 4e314ab95cb54c909e6b095ed3817d1d 284 | name: 'NVR Performance Average' 285 | type: CALCULATED 286 | key: service.perf.avg.tcp 287 | delay: 5m 288 | history: 1w 289 | value_type: FLOAT 290 | units: s 291 | params: 'avg(//net.tcp.service.perf[tcp,,{$MEDIA_PORT}],25m)' 292 | tags: 293 | - 294 | tag: System 295 | value: status 296 | - 297 | uuid: f59250bbe20a47fbafc5b3f4fe208be7 298 | name: 'SNMP traps (fallback)' 299 | type: SNMP_TRAP 300 | key: snmptrap.fallback 301 | delay: '0' 302 | history: 2w 303 | trends: '0' 304 | value_type: LOG 305 | description: 'Item is used to collect all SNMP traps unmatched by other snmptrap items' 306 | logtimefmt: 'hh:mm:sszyyyy/MM/dd' 307 | tags: 308 | - 309 | tag: System 310 | value: status 311 | - 312 | uuid: 9fdc05f7a808453cadd6090b49930a3a 313 | name: 'System contact details' 314 | type: SNMP_AGENT 315 | snmp_oid: 1.3.6.1.2.1.1.4.0 316 | key: 'system.contact[sysContact.0]' 317 | delay: 1d 318 | history: 2d 319 | trends: '0' 320 | value_type: CHAR 321 | description: | 322 | MIB: SNMPv2-MIB 323 | The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. 324 | inventory_link: CONTACT 325 | preprocessing: 326 | - 327 | type: DISCARD_UNCHANGED_HEARTBEAT 328 | parameters: 329 | - 1d 330 | tags: 331 | - 332 | tag: Device 333 | value: general 334 | - 335 | uuid: 1c3f4f8993ea407c8796ea299bd74c36 336 | name: 'System description' 337 | type: SNMP_AGENT 338 | snmp_oid: 1.3.6.1.2.1.1.1.0 339 | key: 'system.descr[sysDescr.0]' 340 | delay: 1d 341 | history: 2d 342 | trends: '0' 343 | value_type: CHAR 344 | description: | 345 | MIB: SNMPv2-MIB 346 | A textual description of the entity. This value should 347 | include the full name and version identification of the system's hardware type, software operating-system, and 348 | networking software. 349 | inventory_link: NOTES 350 | preprocessing: 351 | - 352 | type: DISCARD_UNCHANGED_HEARTBEAT 353 | parameters: 354 | - 1d 355 | tags: 356 | - 357 | tag: Device 358 | value: general 359 | - 360 | uuid: e861b80b0a91478886046b98e1c1b73a 361 | name: 'System location' 362 | type: SNMP_AGENT 363 | snmp_oid: 1.3.6.1.2.1.1.6.0 364 | key: 'system.location[sysLocation.0]' 365 | delay: 1d 366 | history: 2d 367 | trends: '0' 368 | value_type: CHAR 369 | description: | 370 | MIB: SNMPv2-MIB 371 | The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. 372 | inventory_link: LOCATION 373 | preprocessing: 374 | - 375 | type: DISCARD_UNCHANGED_HEARTBEAT 376 | parameters: 377 | - 1h 378 | tags: 379 | - 380 | tag: Device 381 | value: general 382 | - 383 | uuid: 83fa01fe8049481f808e0dd9ca477422 384 | name: 'System name' 385 | type: SNMP_AGENT 386 | snmp_oid: 1.3.6.1.2.1.1.5.0 387 | key: system.name 388 | delay: 1d 389 | history: 2d 390 | trends: '0' 391 | value_type: CHAR 392 | description: | 393 | MIB: SNMPv2-MIB 394 | An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. 395 | inventory_link: NAME 396 | preprocessing: 397 | - 398 | type: DISCARD_UNCHANGED_HEARTBEAT 399 | parameters: 400 | - 1h 401 | tags: 402 | - 403 | tag: Device 404 | value: general 405 | triggers: 406 | - 407 | uuid: c6349c2779c94046abf8fdc996d7ff79 408 | expression: '(last(/Intelbras NVR NVD3116P SNMP/system.name,#1)<>last(/Intelbras NVR NVD3116P SNMP/system.name,#2))=1 and length(last(/Intelbras NVR NVD3116P SNMP/system.name))>0' 409 | name: 'System name has changed' 410 | opdata: 'New name: {ITEM.VALUE}' 411 | priority: INFO 412 | description: 'System name has changed. Ack to close.' 413 | manual_close: 'YES' 414 | - 415 | uuid: eba033190e72492d80dda3c44a95b72c 416 | name: 'System object ID' 417 | type: SNMP_AGENT 418 | snmp_oid: 1.3.6.1.2.1.1.2.0 419 | key: 'system.objectid[sysObjectID.0]' 420 | delay: 1d 421 | history: 2d 422 | trends: '0' 423 | value_type: CHAR 424 | description: | 425 | MIB: SNMPv2-MIB 426 | The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. 427 | **Might be invalid** 428 | preprocessing: 429 | - 430 | type: DISCARD_UNCHANGED_HEARTBEAT 431 | parameters: 432 | - 1h 433 | tags: 434 | - 435 | tag: Device 436 | value: general 437 | - 438 | uuid: 2877e152c6f94e408dff1805528864f3 439 | name: 'Uptime Generic' 440 | type: SNMP_AGENT 441 | snmp_oid: 1.3.6.1.2.1.1.3.0 442 | key: 'system.uptime[sysUpTime.0]' 443 | delay: 10m 444 | history: 2w 445 | trends: '0' 446 | units: uptime 447 | description: | 448 | MIB: SNMPv2-MIB 449 | The time (in hundredths of a second) since the network management portion of the system was last re-initialized. 450 | preprocessing: 451 | - 452 | type: MULTIPLIER 453 | parameters: 454 | - '0.01' 455 | tags: 456 | - 457 | tag: System 458 | value: status 459 | - 460 | uuid: 9385027fca664ffe8bfab056ed9d681c 461 | name: 'SNMP agent availability' 462 | type: INTERNAL 463 | key: 'zabbix[host,snmp,available]' 464 | history: 7d 465 | trends: '0' 466 | tags: 467 | - 468 | tag: System 469 | value: status 470 | triggers: 471 | - 472 | uuid: 402a97ff650c44a791c6eb60d33cc889 473 | expression: 'max(/Intelbras NVR NVD3116P SNMP/zabbix[host,snmp,available],{$SNMP.TIMEOUT})=0' 474 | name: 'No SNMP data collection' 475 | opdata: 'Current state: {ITEM.LASTVALUE1}' 476 | priority: HIGH 477 | description: 'SNMP is not available for polling. Please check device connectivity and SNMP settings.' 478 | discovery_rules: 479 | - 480 | uuid: db9a014c00de49e086c51215efad802e 481 | name: 'Camera Discovery' 482 | type: SNMP_AGENT 483 | snmp_oid: 'discovery[{#ICAM_IP}, 1.3.6.1.4.1.1004849.2.10.2.2.1.2, {#CAM_NAME}, 1.3.6.1.4.1.1004849.2.10.2.2.1.4, {#CAM_STATUS}, 1.3.6.1.4.1.1004849.2.10.2.2.1.3]' 484 | key: net.cam.discovery 485 | delay: 1h 486 | lifetime: 1d 487 | item_prototypes: 488 | - 489 | uuid: 0763a7279bde44c8bd467b2af73fe250 490 | name: 'Camera {#SNMPINDEX} IP' 491 | type: SNMP_AGENT 492 | snmp_oid: '1.3.6.1.4.1.1004849.2.10.2.2.1.2.{#SNMPINDEX}' 493 | key: 'remoteCam[IpAddr{#SNMPINDEX}]' 494 | delay: 15m 495 | history: 2d 496 | trends: '0' 497 | value_type: CHAR 498 | tags: 499 | - 500 | tag: Camera 501 | value: ip 502 | - 503 | uuid: 2bcbdfe288d34915ae6390b6349bcc05 504 | name: 'Camera {#SNMPINDEX} Name' 505 | type: SNMP_AGENT 506 | snmp_oid: '1.3.6.1.4.1.1004849.2.10.2.2.1.4.{#SNMPINDEX}' 507 | key: 'remoteCam[name{#SNMPINDEX}]' 508 | delay: 15m 509 | history: 2d 510 | trends: '0' 511 | value_type: CHAR 512 | tags: 513 | - 514 | tag: Camera 515 | value: name 516 | - 517 | uuid: 1fa48e4640f2410098eb1b62e0adbd94 518 | name: 'Camera {#SNMPINDEX} Status' 519 | type: SNMP_AGENT 520 | snmp_oid: '1.3.6.1.4.1.1004849.2.10.2.2.1.3.{#SNMPINDEX}' 521 | key: 'remoteCam[status{#SNMPINDEX}]' 522 | delay: 5m 523 | history: 2d 524 | trends: '0' 525 | value_type: CHAR 526 | description: 'The status of remote device (Connecting, Conneted, Unconnect, Empty, Disable).' 527 | tags: 528 | - 529 | tag: Camera 530 | value: status 531 | trigger_prototypes: 532 | - 533 | uuid: 751f317495fb42e1927b45d10327385d 534 | expression: 'last(/Intelbras NVR NVD3116P SNMP/remoteCam[status{#SNMPINDEX}],#1)<>last(/Intelbras NVR NVD3116P SNMP/remoteCam[status{#SNMPINDEX}],#2)' 535 | name: 'Camera {#SNMPINDEX} status changed' 536 | opdata: '{#CAM_STATUS} - {#CAM_NAME}' 537 | priority: WARNING 538 | - 539 | uuid: 5ed49bd1ed5d4f5cb2acf00dd9536ab7 540 | name: 'Disk Discovery' 541 | type: SNMP_AGENT 542 | snmp_oid: 'discovery[{#DISK_NAME}, 1.3.6.1.4.1.1004849.2.4.1.1.4, {#DISK_STATUS}, 1.3.6.1.4.1.1004849.2.4.1.1.5, {#DISK_USED}, 1.3.6.1.4.1.1004849.2.4.1.1.6, {#DISK_SIZE}, 1.3.6.1.4.1.1004849.2.4.1.1.7]' 543 | key: vfs.disk.discovery 544 | delay: 1h 545 | lifetime: 1d 546 | description: 'Infomation of physical volume' 547 | item_prototypes: 548 | - 549 | uuid: d562009a815747ea84de42c97b2e86b5 550 | name: 'Disk {#SNMPINDEX} Percent Free - {#DISK_NAME}' 551 | type: CALCULATED 552 | key: 'physicalVolume[free{#SNMPINDEX}]' 553 | delay: 5m 554 | history: 7d 555 | units: '%' 556 | params: | 557 | 100 - (last(//physicalVolume[used{#SNMPINDEX}]) 558 | * 100 / 559 | last(//physicalVolume[size{#SNMPINDEX}])) 560 | tags: 561 | - 562 | tag: Disk 563 | value: used 564 | trigger_prototypes: 565 | - 566 | uuid: 6af35893d4774cb9bb43efb09ab3369a 567 | expression: 'last(/Intelbras NVR NVD3116P SNMP/physicalVolume[free{#SNMPINDEX}],#1)<{$DISK_FREE_WARN}' 568 | name: 'Disk {#DISK_NAME} free space is low' 569 | opdata: '{ITEM.LASTVALUE} free' 570 | priority: WARNING 571 | - 572 | uuid: 70d9dd5e4dbe4801b8d1862c2ad8c642 573 | name: 'Disk {#SNMPINDEX} Name - {#DISK_NAME}' 574 | type: SNMP_AGENT 575 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.4.{#SNMPINDEX}' 576 | key: 'physicalVolume[name{#SNMPINDEX}]' 577 | delay: 1h 578 | history: 2d 579 | trends: '0' 580 | value_type: CHAR 581 | tags: 582 | - 583 | tag: Disk 584 | value: name 585 | - 586 | uuid: a2af9406213f4664bf2e9e5513110636 587 | name: 'Disk {#SNMPINDEX} Size - {#DISK_NAME}' 588 | type: SNMP_AGENT 589 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.7.{#SNMPINDEX}' 590 | key: 'physicalVolume[size{#SNMPINDEX}]' 591 | delay: 1h 592 | history: 1d 593 | trends: '0' 594 | units: '!MB' 595 | tags: 596 | - 597 | tag: Disk 598 | value: size 599 | - 600 | uuid: feef0553ed5c4af4b9dc4509aba57011 601 | name: 'Disk {#SNMPINDEX} Status - {#DISK_NAME}' 602 | type: SNMP_AGENT 603 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.5.{#SNMPINDEX}' 604 | key: 'physicalVolume[status{#SNMPINDEX}]' 605 | delay: 5m 606 | history: 7d 607 | trends: '0' 608 | value_type: CHAR 609 | tags: 610 | - 611 | tag: Disk 612 | value: status 613 | trigger_prototypes: 614 | - 615 | uuid: 6b9e0010048346688f1e35c1473889c5 616 | expression: | 617 | last(/Intelbras NVR NVD3116P SNMP/physicalVolume[status{#SNMPINDEX}],#1)<>"Running" 618 | and 619 | last(/Intelbras NVR NVD3116P SNMP/physicalVolume[status{#SNMPINDEX}],#1)<>"RaidSub" 620 | name: 'Disk {#DISK_NAME} ERROR' 621 | opdata: '{#DISK_STATUS}' 622 | priority: HIGH 623 | - 624 | uuid: a2a0a0deb020479bb09286311d041acd 625 | name: 'Disk {#SNMPINDEX} Used - {#DISK_NAME}' 626 | type: SNMP_AGENT 627 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.6.{#SNMPINDEX}' 628 | key: 'physicalVolume[used{#SNMPINDEX}]' 629 | delay: 5m 630 | history: 7d 631 | units: '!MB' 632 | tags: 633 | - 634 | tag: Disk 635 | value: used 636 | graph_prototypes: 637 | - 638 | uuid: 178890197d5744e08772cc625987e33f 639 | name: 'Disk Usage - {#DISK_NAME}' 640 | width: '500' 641 | height: '340' 642 | yaxismax: '0' 643 | show_work_period: 'NO' 644 | show_triggers: 'NO' 645 | type: PIE 646 | show_3d: 'YES' 647 | graph_items: 648 | - 649 | sortorder: '1' 650 | color: FFAB91 651 | calc_fnc: LAST 652 | type: GRAPH_SUM 653 | item: 654 | host: 'Intelbras NVR NVD3116P SNMP' 655 | key: 'physicalVolume[size{#SNMPINDEX}]' 656 | - 657 | sortorder: '2' 658 | color: B71C1C 659 | calc_fnc: LAST 660 | item: 661 | host: 'Intelbras NVR NVD3116P SNMP' 662 | key: 'physicalVolume[used{#SNMPINDEX}]' 663 | httptests: 664 | - 665 | uuid: aeb5ce3095dc4a4c9e6452229901edb1 666 | name: 'NVR HTTP Performance' 667 | delay: 5m 668 | agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36' 669 | steps: 670 | - 671 | name: 'NVR HTTP Performance' 672 | url: 'http://{HOST.CONN}:{$HTTP_PORT}' 673 | follow_redirects: 'NO' 674 | retrieve_mode: BOTH 675 | timeout: 5s 676 | status_codes: '200' 677 | tags: 678 | - 679 | tag: NVR 680 | value: web 681 | macros: 682 | - 683 | macro: '{$DISK_FREE_WARN}' 684 | value: '0' 685 | description: 'Disk free percentage threshold (limiar)' 686 | - 687 | macro: '{$HTTPS_PORT}' 688 | value: '443' 689 | description: 'HTTPS port for WEB UI access, if set.' 690 | - 691 | macro: '{$HTTP_PORT}' 692 | value: '80' 693 | description: 'HTTP port for WEB UI access' 694 | - 695 | macro: '{$MEDIA_PORT}' 696 | value: '37777' 697 | description: 'Media port for camera access.' 698 | - 699 | macro: '{$SNMP.TIMEOUT}' 700 | value: 5m 701 | description: 'SNMP timeout for trigger threshold' 702 | dashboards: 703 | - 704 | uuid: 08c540e81cb14b4f9bc1e38c1cc68ede 705 | name: 'NVR Dashboard' 706 | pages: 707 | - 708 | widgets: 709 | - 710 | type: GRAPH_CLASSIC 711 | width: '12' 712 | height: '5' 713 | fields: 714 | - 715 | type: GRAPH 716 | name: graphid 717 | value: 718 | host: 'Intelbras NVR NVD3116P SNMP' 719 | name: 'CPU Utilization' 720 | - 721 | type: GRAPH_CLASSIC 722 | x: '12' 723 | width: '12' 724 | height: '5' 725 | fields: 726 | - 727 | type: GRAPH 728 | name: graphid 729 | value: 730 | host: 'Intelbras NVR NVD3116P SNMP' 731 | name: 'Memory Utilization' 732 | - 733 | type: GRAPH_CLASSIC 734 | 'y': '5' 735 | width: '12' 736 | height: '5' 737 | fields: 738 | - 739 | type: GRAPH 740 | name: graphid 741 | value: 742 | host: 'Intelbras NVR NVD3116P SNMP' 743 | name: 'NVR Response Time' 744 | - 745 | type: GRAPH_PROTOTYPE 746 | 'y': '10' 747 | width: '12' 748 | height: '5' 749 | fields: 750 | - 751 | type: GRAPH_PROTOTYPE 752 | name: graphid 753 | value: 754 | host: 'Intelbras NVR NVD3116P SNMP' 755 | name: 'Disk Usage - {#DISK_NAME}' 756 | - 757 | type: GRAPH_PROTOTYPE 758 | x: '12' 759 | 'y': '5' 760 | width: '12' 761 | height: '5' 762 | fields: 763 | - 764 | type: INTEGER 765 | name: columns 766 | value: '1' 767 | - 768 | type: GRAPH_PROTOTYPE 769 | name: graphid 770 | value: 771 | host: 'Intelbras NVR NVD3116P SNMP' 772 | name: 'Interface {#IFDESCR}: Network traffic' 773 | - 774 | type: ITEM 775 | x: '12' 776 | 'y': '10' 777 | width: '5' 778 | height: '3' 779 | fields: 780 | - 781 | type: INTEGER 782 | name: show 783 | value: '2' 784 | - 785 | type: INTEGER 786 | name: adv_conf 787 | value: '1' 788 | - 789 | type: INTEGER 790 | name: decimal_size 791 | value: '30' 792 | - 793 | type: INTEGER 794 | name: value_size 795 | value: '30' 796 | - 797 | type: INTEGER 798 | name: units_size 799 | value: '30' 800 | - 801 | type: STRING 802 | name: value_color 803 | value: FFCCBC 804 | - 805 | type: STRING 806 | name: bg_color 807 | value: '3E2723' 808 | - 809 | type: ITEM 810 | name: itemid 811 | value: 812 | host: 'Intelbras NVR NVD3116P SNMP' 813 | key: enterprises.systemTime 814 | valuemaps: 815 | - 816 | uuid: 159905aedeb5408cad459da9ae408701 817 | name: 'NVR Device Status' 818 | mappings: 819 | - 820 | value: '0' 821 | newvalue: Bad 822 | - 823 | value: '1' 824 | newvalue: Good 825 | - 826 | uuid: bc96ddf3a7c2411f8c4109a35b1cafcf 827 | name: 'NVR System Status' 828 | mappings: 829 | - 830 | value: '0' 831 | newvalue: Online 832 | - 833 | value: '1' 834 | newvalue: Offline 835 | - 836 | value: '2' 837 | newvalue: Reboot 838 | triggers: 839 | - 840 | uuid: 2010c085fc354774ad104913f2f073b2 841 | expression: | 842 | last(/Intelbras NVR NVD3116P SNMP/enterprises.deviceUpTime)<10m or 843 | last(/Intelbras NVR NVD3116P SNMP/system.uptime[sysUpTime.0])<10m 844 | name: 'System has been restarted (uptime less 10m)' 845 | opdata: '{ITEM.LASTVALUE1}' 846 | priority: WARNING 847 | description: 'Uptime is less than 10 minutes' 848 | manual_close: 'YES' 849 | dependencies: 850 | - 851 | name: 'No SNMP data collection' 852 | expression: 'max(/Intelbras NVR NVD3116P SNMP/zabbix[host,snmp,available],{$SNMP.TIMEOUT})=0' 853 | graphs: 854 | - 855 | uuid: 3355f947691d4cfca90351c998355b69 856 | name: 'CPU Utilization' 857 | ymin_type_1: FIXED 858 | ymax_type_1: FIXED 859 | graph_items: 860 | - 861 | drawtype: GRADIENT_LINE 862 | color: 199C0D 863 | item: 864 | host: 'Intelbras NVR NVD3116P SNMP' 865 | key: enterprises.cpuUsage 866 | - 867 | uuid: f3ec20f890af4f41830c213bf9fc8eb7 868 | name: 'Memory Utilization' 869 | ymin_type_1: FIXED 870 | ymax_type_1: FIXED 871 | graph_items: 872 | - 873 | drawtype: GRADIENT_LINE 874 | color: F63100 875 | item: 876 | host: 'Intelbras NVR NVD3116P SNMP' 877 | key: enterprises.memoryUsage 878 | - 879 | uuid: 881fa2b54a7b499e8c0c9a25ebf6e8ab 880 | name: 'NVR Response Time' 881 | ymin_type_1: FIXED 882 | graph_items: 883 | - 884 | sortorder: '1' 885 | drawtype: FILLED_REGION 886 | color: FFAB91 887 | item: 888 | host: 'Intelbras NVR NVD3116P SNMP' 889 | key: 'web.test.time[NVR HTTP Performance,NVR HTTP Performance,resp]' 890 | - 891 | sortorder: '2' 892 | drawtype: BOLD_LINE 893 | color: 8F2809 894 | item: 895 | host: 'Intelbras NVR NVD3116P SNMP' 896 | key: 'net.tcp.service.perf[tcp,,{$MEDIA_PORT}]' 897 | -------------------------------------------------------------------------------- /Template/Intelbras_NVD_main_MIB_TREE.txt: -------------------------------------------------------------------------------- 1 | +--iso(1) 2 | | 3 | +--org(3) 4 | | 5 | +--dod(6) 6 | | 7 | +--internet(1) 8 | | 9 | +--directory(1) 10 | | 11 | +--mgmt(2) 12 | | | 13 | | +--mib-2(1) 14 | | | 15 | | +--transmission(10) 16 | | 17 | +--experimental(3) 18 | | 19 | +--private(4) 20 | | | 21 | | +--enterprises(1) 22 | | | 23 | | +--intel(1004849) 24 | | | 25 | | +--device(2) 26 | | | 27 | | +--systemInfo(1) 28 | | | | 29 | | | +--versionInfo(1) 30 | | | | | 31 | | | | +-- -R-- String softwareRevision(1) 32 | | | | | Textual Convention: DisplayString 33 | | | | | Size: 0..255 34 | | | | +-- -R-- String hardwareRevision(2) 35 | | | | Textual Convention: DisplayString 36 | | | | Size: 0..255 37 | | | | 38 | | | +--productInfo(2) 39 | | | | | 40 | | | | +-- -R-- INTEGER videoChannel(1) 41 | | | | +-- -R-- INTEGER alarmInput(2) 42 | | | | +-- -R-- INTEGER alarmOutput(3) 43 | | | | +-- -R-- String serialNumber(4) 44 | | | | | Textual Convention: DisplayString 45 | | | | | Size: 0..255 46 | | | | +-- -R-- String systemVersion(5) 47 | | | | | Textual Convention: DisplayString 48 | | | | | Size: 0..255 49 | | | | +-- -R-- String deviceType(6) 50 | | | | | Textual Convention: DisplayString 51 | | | | | Size: 0..255 52 | | | | +-- -R-- String deviceClass(7) 53 | | | | | Textual Convention: DisplayString 54 | | | | | Size: 0..255 55 | | | | +-- -R-- EnumVal deviceStatus(8) 56 | | | | | Values: bad(0), good(1) 57 | | | | +-- -RW- String machineName(9) 58 | | | | | Textual Convention: DisplayString 59 | | | | | Size: 0..255 60 | | | | +-- -RW- String location(10) 61 | | | | Textual Convention: DisplayString 62 | | | | Size: 0..255 63 | | | | 64 | | | +-- -R-- INTEGER cpuUsage(3) 65 | | | +-- -R-- String lastestEvent(4) 66 | | | | Textual Convention: DisplayString 67 | | | | Size: 0..255 68 | | | +-- -R-- INTEGER encodeNo(5) 69 | | | +-- -R-- TimeTicks deviceUpTime(6) 70 | | | +-- -RW- EnumVal systemStatus(7) 71 | | | | Values: online(0), offline(1), reboot(2) 72 | | | +-- -RW- String systemTime(8) 73 | | | | Textual Convention: DisplayString 74 | | | | Size: 19 75 | | | | 76 | | | +--memoryInfo(9) 77 | | | | | 78 | | | | +-- -R-- INTEGER memoryTotal(1) 79 | | | | +-- -R-- INTEGER memoryUsage(2) 80 | | | | Range: 0..100 81 | | | | 82 | | | +--operatingSystemInfo(10) 83 | | | | 84 | | | +-- -R-- String osName(1) 85 | | | | Textual Convention: DisplayString 86 | | | | Size: 0..255 87 | | | +-- -R-- String osVersion(2) 88 | | | Textual Convention: DisplayString 89 | | | Size: 0..255 90 | | | 91 | | +--networkInfo(2) 92 | | | | 93 | | | +--networkPort(1) 94 | | | | | 95 | | | | +-- -RW- INTEGER tcpPort(1) 96 | | | | +-- -RW- INTEGER udpPort(2) 97 | | | | +-- -RW- INTEGER httpPort(3) 98 | | | | +-- -RW- INTEGER rtspPort(4) 99 | | | | +-- -RW- INTEGER maxConnectNum(5) 100 | | | | +-- -RW- INTEGER httpsPort(6) 101 | | | | 102 | | | +--tcpIpInfo(2) 103 | | | | 104 | | | +-- -RW- EnumVal getIpmode(1) 105 | | | | Values: static(0), dhcp(1) 106 | | | +-- -R-- String macAddr(2) 107 | | | | Textual Convention: DisplayString 108 | | | | Size: 0..255 109 | | | +-- -RW- EnumVal ipVersion(3) 110 | | | | Values: ipv4(0), ipv6(1) 111 | | | +-- -RW- String subnetMask(4) 112 | | | | Textual Convention: DisplayString 113 | | | | Size: 0..255 114 | | | +-- -RW- String defaultGateway(5) 115 | | | | Textual Convention: DisplayString 116 | | | | Size: 0..255 117 | | | +-- -RW- String preferredDns(6) 118 | | | | Textual Convention: DisplayString 119 | | | | Size: 0..255 120 | | | +-- -RW- String alternateDns(7) 121 | | | | Textual Convention: DisplayString 122 | | | | Size: 0..255 123 | | | +-- -R-- String ipAddr(8) 124 | | | Textual Convention: DisplayString 125 | | | Size: 0..255 126 | | | 127 | | +--configInfo(3) 128 | | | | 129 | | | +--encodeConfig(1) 130 | | | | | 131 | | | | +--mainStreamInfo(1) 132 | | | | | | 133 | | | | | +--regularStreamInfoTable(1) 134 | | | | | | | 135 | | | | | | +--regularStreamInfoEntry(1) 136 | | | | | | | Index: regularChannelNo 137 | | | | | | | 138 | | | | | | +-- -R-- INTEGER regularChannelNo(1) 139 | | | | | | +-- -RW- String regularCompression(2) 140 | | | | | | | Textual Convention: DisplayString 141 | | | | | | | Size: 0..255 142 | | | | | | +-- -RW- INTEGER regularFPS(3) 143 | | | | | | +-- -RW- String regularResolution(4) 144 | | | | | | | Textual Convention: DisplayString 145 | | | | | | | Size: 0..255 146 | | | | | | +-- -RW- INTEGER regularBitRate(5) 147 | | | | | | 148 | | | | | +--mdStreamInfoTable(2) 149 | | | | | | | 150 | | | | | | +--mdStreamInfoEntry(1) 151 | | | | | | | Index: mdChannelNo 152 | | | | | | | 153 | | | | | | +-- -R-- INTEGER mdChannelNo(1) 154 | | | | | | +-- -RW- String mdCompression(2) 155 | | | | | | | Textual Convention: DisplayString 156 | | | | | | | Size: 0..255 157 | | | | | | +-- -RW- INTEGER mdFPS(3) 158 | | | | | | +-- -RW- String mdResolution(4) 159 | | | | | | | Textual Convention: DisplayString 160 | | | | | | | Size: 0..255 161 | | | | | | +-- -RW- INTEGER mdBitRate(5) 162 | | | | | | 163 | | | | | +--alarmStreamInfoTable(3) 164 | | | | | | 165 | | | | | +--alarmStreamInfoEntry(1) 166 | | | | | | Index: alarmChannelNo 167 | | | | | | 168 | | | | | +-- -R-- INTEGER alarmChannelNo(1) 169 | | | | | +-- -RW- String alarmCompression(2) 170 | | | | | | Textual Convention: DisplayString 171 | | | | | | Size: 0..255 172 | | | | | +-- -RW- INTEGER alarmFPS(3) 173 | | | | | +-- -RW- String alarmResolution(4) 174 | | | | | | Textual Convention: DisplayString 175 | | | | | | Size: 0..255 176 | | | | | +-- -RW- INTEGER alarmBitRate(5) 177 | | | | | 178 | | | | +--extraStreamInfo(2) 179 | | | | | 180 | | | | +--extra1StreamInfoTable(1) 181 | | | | | 182 | | | | +--extra1StreamInfoEntry(1) 183 | | | | | Index: extra1ChannelNo 184 | | | | | 185 | | | | +-- -R-- INTEGER extra1ChannelNo(1) 186 | | | | +-- -RW- String extra1Compression(2) 187 | | | | | Textual Convention: DisplayString 188 | | | | | Size: 0..255 189 | | | | +-- -RW- INTEGER extra1FPS(3) 190 | | | | +-- -RW- String extra1Resolution(4) 191 | | | | | Textual Convention: DisplayString 192 | | | | | Size: 0..255 193 | | | | +-- -RW- INTEGER extra1BitRate(5) 194 | | | | 195 | | | +--eventConfig(2) 196 | | | | | 197 | | | | +--videoDetectConfig(1) 198 | | | | | | 199 | | | | | +--videoMotionInfoTable(1) 200 | | | | | | | 201 | | | | | | +--videoMotionInfoEntry(1) 202 | | | | | | | Index: videoMotionIndex 203 | | | | | | | 204 | | | | | | +-- -RW- INTEGER videoMotionIndex(1) 205 | | | | | | 206 | | | | | +--videoLossInfoTable(2) 207 | | | | | | | 208 | | | | | | +--videoLossInfoEntry(1) 209 | | | | | | | Index: videoLossIndex 210 | | | | | | | 211 | | | | | | +-- -RW- INTEGER videoLossIndex(1) 212 | | | | | | 213 | | | | | +--videoBlindInfoTable(3) 214 | | | | | | 215 | | | | | +--videoBlindInfoEntry(1) 216 | | | | | | Index: videoBlindIndex 217 | | | | | | 218 | | | | | +-- -RW- INTEGER videoBlindIndex(1) 219 | | | | | 220 | | | | +--alarmConfig(2) 221 | | | | | | 222 | | | | | +--localAlarmInfoTable(1) 223 | | | | | | | 224 | | | | | | +--localAlarmInfoEntry(1) 225 | | | | | | | Index: localAlarmIndex 226 | | | | | | | 227 | | | | | | +-- -RW- INTEGER localAlarmIndex(1) 228 | | | | | | 229 | | | | | +--networkAlarmInfoTable(2) 230 | | | | | | 231 | | | | | +--networkAlarmInfoEntry(1) 232 | | | | | | Index: networkAlarmIndex 233 | | | | | | 234 | | | | | +-- -RW- INTEGER networkAlarmIndex(1) 235 | | | | | 236 | | | | +--exceptionConfig(3) 237 | | | | 238 | | | +--recordConfig(3) 239 | | | | 240 | | | +--recordPlanInfo(1) 241 | | | | 242 | | | +--recordMainStreamInfoTable(1) 243 | | | | | 244 | | | | +--recordMainStreamInfoEntry(1) 245 | | | | | Index: recordMainChannelIndex 246 | | | | | 247 | | | | +-- -RW- INTEGER recordMainChannelIndex(1) 248 | | | | 249 | | | +--recordExtraStreamInfoTable(2) 250 | | | | 251 | | | +--recordExtraStreamInfoEntry(1) 252 | | | | Index: recordExtraChannelIndex 253 | | | | 254 | | | +-- -RW- INTEGER recordExtraChannelIndex(1) 255 | | | 256 | | +--storageInfo(4) 257 | | | | 258 | | | +--physicalVolumeInfoTable(1) 259 | | | | | 260 | | | | +--physicalVolumeInfoEntry(1) 261 | | | | | Index: physicNo 262 | | | | | 263 | | | | +-- -R-- INTEGER physicNo(2) 264 | | | | +-- -R-- INTEGER logicNo(3) 265 | | | | +-- -R-- String physicalVolumeName(4) 266 | | | | | Textual Convention: DisplayString 267 | | | | | Size: 0..255 268 | | | | +-- -R-- String physicalVolumeStatus(5) 269 | | | | | Textual Convention: DisplayString 270 | | | | | Size: 0..255 271 | | | | +-- -R-- INTEGER physicalVolumeUsage(6) 272 | | | | | Range: 0..100 273 | | | | +-- -R-- INTEGER physicalVolumeTotal(7) 274 | | | | 275 | | | +-- -R-- INTEGER physicalVolumeNumber(2) 276 | | | +-- -R-- INTEGER physicalVolumeDisAliveNumber(3) 277 | | | 278 | | +--products(10) 279 | | | | 280 | | | +--videoChannelInfo(1) 281 | | | | | 282 | | | | +--videoChannelStatusTable(1) 283 | | | | | 284 | | | | +--videoChannelStatusEntry(1) 285 | | | | | Index: videoChannelIndex 286 | | | | | 287 | | | | +-- -R-- INTEGER videoChannelIndex(1) 288 | | | | +-- -R-- EnumVal videoChannelStatus(2) 289 | | | | | Values: online(1), offline(0) 290 | | | | +-- -R-- String videoChannelName(3) 291 | | | | Textual Convention: DisplayString 292 | | | | Size: 0..255 293 | | | | 294 | | | +--remoteDeviceInfo(2) 295 | | | | | 296 | | | | +-- -R-- INTEGER remoteDeviceNumber(1) 297 | | | | | 298 | | | | +--remoteDeviceInfoTable(2) 299 | | | | | 300 | | | | +--remoteDeviceInfoEntry(1) 301 | | | | | Index: remoteDeviceIndex 302 | | | | | 303 | | | | +-- -R-- INTEGER remoteDeviceIndex(1) 304 | | | | +-- -R-- String remoteDeviceIpAddr(2) 305 | | | | | Textual Convention: DisplayString 306 | | | | | Size: 0..255 307 | | | | +-- -R-- String remoteDeviceStatus(3) 308 | | | | | Textual Convention: DisplayString 309 | | | | | Size: 0..255 310 | | | | +-- -R-- String remoteDeviceName(4) 311 | | | | Textual Convention: DisplayString 312 | | | | Size: 0..255 313 | | | | 314 | | | +--ipc(3) 315 | | | | 316 | | | +--evs(4) 317 | | | | 318 | | | +--nvd(5) 319 | | | | 320 | | | +-- -R-- String decodeFormat(1) 321 | | | | Textual Convention: DisplayString 322 | | | | Size: 0..255 323 | | | +-- -R-- INTEGER decodeCap(2) 324 | | | +-- -R-- String powerVol(3) 325 | | | Textual Convention: DisplayString 326 | | | Size: 0..255 327 | | | 328 | | +--notification(11) 329 | | | | 330 | | | +--snmpStatusEvent(2) 331 | | | | 332 | | | +--multiMediaEvent(11) 333 | | | | | 334 | | | | +--videoMotionEvent(1) 335 | | | | +--videoBlindEvent(2) 336 | | | | +--videoLossEvent(3) 337 | | | | 338 | | | +--alarmEvent(12) 339 | | | | | 340 | | | | +--localAlarmEvent(1) 341 | | | | +--netMonitorAbortEvent(2) 342 | | | | 343 | | | +--storageEvent(13) 344 | | | | | 345 | | | | +--storageFailureEvent(1) 346 | | | | +--storageLowSpaceEvent(2) 347 | | | | +--storageInOutEvent(3) 348 | | | | +--storageSMARTAbnormityEvent(4) 349 | | | | +--volumeGroupFaultEvent(5) 350 | | | | 351 | | | +--recordEvent(14) 352 | | | | | 353 | | | | +--recordMainStreamEvent(1) 354 | | | | +--recordExtraStreamEvent(2) 355 | | | | 356 | | | +--evsEvent(15) 357 | | | | | 358 | | | | +--nasServerStatusEvent(1) 359 | | | | 360 | | | +--powerEvent(16) 361 | | | | | 362 | | | | +--powerStatusEvent(1) 363 | | | | 364 | | | +--keepAliveEvent(17) 365 | | | | 366 | | | +--keepAliveEvent(1) 367 | | | 368 | | +--intelSnmpTrap(12) 369 | | | 370 | | +-- ---N String action(1) 371 | | | Textual Convention: DisplayString 372 | | | Size: 0..255 373 | | +-- ---N String currentTime(2) 374 | | | Textual Convention: DisplayString 375 | | | Size: 0..255 376 | | +-- ---N EnumVal snmpStatus(3) 377 | | | Values: start(0), stop(1) 378 | | +-- ---N INTEGER physicalVolumeThreshold(4) 379 | | +-- ---N String serverName(5) 380 | | | Textual Convention: DisplayString 381 | | | Size: 0..255 382 | | +-- ---N String powertype(6) 383 | | | Textual Convention: DisplayString 384 | | | Size: 0..255 385 | | +-- ---N String powerfault(7) 386 | | Textual Convention: DisplayString 387 | | Size: 0..255 388 | | 389 | +--security(5) 390 | | 391 | +--snmpV2(6) 392 | | 393 | +--snmpDomains(1) 394 | | 395 | +--snmpProxys(2) 396 | | 397 | +--snmpModules(3) -------------------------------------------------------------------------------- /Template/Intelbras_NVR_template_v4.yaml: -------------------------------------------------------------------------------- 1 | zabbix_export: 2 | version: '6.2' 3 | date: '2023-01-10T15:45:38Z' 4 | template_groups: 5 | - 6 | uuid: 36bff6c29af64692839d077febfc7079 7 | name: 'Templates/Network devices' 8 | templates: 9 | - 10 | uuid: c3b8aef8c6d24ee493fc7f1d698cfc71 11 | template: 'Intelbras NVR SNMP' 12 | name: 'Intelbras NVR SNMP' 13 | description: | 14 | Intelbras NVR template. 15 | V4 16 | 17 | For Zabbix 5.4 and higher. 18 | 19 | By Diasdm 20 | https://github.com/diasdmhub/Intelbras_NVR_Zabbix_Template 21 | templates: 22 | - 23 | name: 'Interfaces Simple by SNMP' 24 | groups: 25 | - 26 | name: 'Templates/Network devices' 27 | items: 28 | - 29 | uuid: 9451b00c5db743db84baa9cfcdea31f9 30 | name: 'CPU Usage' 31 | type: SNMP_AGENT 32 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.3.0 33 | key: enterprises.cpuUsage 34 | delay: 3m 35 | history: 7d 36 | units: '%' 37 | description: 'Uso da CPU em percentual' 38 | tags: 39 | - 40 | tag: System 41 | value: status 42 | triggers: 43 | - 44 | uuid: 5d2df2d2003b4dcf9583de1d37df9c1d 45 | expression: 'avg(/Intelbras NVR SNMP/enterprises.cpuUsage,#3)>90' 46 | recovery_mode: RECOVERY_EXPRESSION 47 | recovery_expression: 'avg(/Intelbras NVR SNMP/enterprises.cpuUsage,#3)<90' 48 | name: 'CPU High Utilization' 49 | opdata: '{ITEM.LASTVALUE1}' 50 | priority: HIGH 51 | - 52 | uuid: a7e4eeab5e204d86aaef95bedc867aa1 53 | name: 'Device Status' 54 | type: SNMP_AGENT 55 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.8.0 56 | key: enterprises.deviceStatus 57 | delay: 3m 58 | history: 7d 59 | description: 'Status do dispositivo 0 (ruim) ou 1 (bom)' 60 | valuemap: 61 | name: 'NVR Device Status' 62 | tags: 63 | - 64 | tag: Device 65 | value: general 66 | triggers: 67 | - 68 | uuid: 2e9b93f0b584449d9a5c17cac3f14fe1 69 | expression: 'last(/Intelbras NVR SNMP/enterprises.deviceStatus)=0' 70 | recovery_mode: RECOVERY_EXPRESSION 71 | recovery_expression: 'last(/Intelbras NVR SNMP/enterprises.deviceStatus)=1' 72 | name: 'Device Status Changed' 73 | opdata: '{ITEM.LASTVALUE1}' 74 | priority: HIGH 75 | description: | 76 | Dispositivo com status divergente 77 | 1 = Bom 78 | 0 = Ruim 79 | - 80 | uuid: 0bf7b2d975fc44419f97e0008c5e5de2 81 | name: 'Device Type' 82 | type: SNMP_AGENT 83 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.6.0 84 | key: enterprises.deviceType 85 | delay: 3m 86 | history: 2d 87 | trends: '0' 88 | value_type: CHAR 89 | description: 'Tipo e modelo do dispositivo' 90 | inventory_link: TYPE 91 | tags: 92 | - 93 | tag: Device 94 | value: general 95 | - 96 | uuid: 26a925a7f30d4dd69b5b7da4998c0d15 97 | name: 'Uptime Enterprise' 98 | type: SNMP_AGENT 99 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.6.0 100 | key: enterprises.deviceUpTime 101 | delay: 10m 102 | history: 2w 103 | trends: '0' 104 | units: uptime 105 | description: 'UpTime desde a última reinicialização' 106 | preprocessing: 107 | - 108 | type: MULTIPLIER 109 | parameters: 110 | - '0.01' 111 | tags: 112 | - 113 | tag: System 114 | value: status 115 | triggers: 116 | - 117 | uuid: 2010c085fc354774ad104913f2f073b2 118 | expression: 'last(/Intelbras NVR SNMP/enterprises.deviceUpTime)<10m' 119 | name: 'System has been restarted (uptime less 10m)' 120 | opdata: '{ITEM.LASTVALUE1}' 121 | priority: WARNING 122 | description: 'Uptime is less than 10 minutes' 123 | manual_close: 'YES' 124 | dependencies: 125 | - 126 | name: 'No SNMP data collection' 127 | expression: 'max(/Intelbras NVR SNMP/zabbix[host,snmp,available],{$SNMP.TIMEOUT})=0' 128 | - 129 | uuid: c5245c9c006a4054b14beb7c7b091adb 130 | name: 'Device IP' 131 | type: SNMP_AGENT 132 | snmp_oid: 1.3.6.1.4.1.1004849.2.2.2.8.0 133 | key: enterprises.ipAddr 134 | delay: 1h 135 | history: 2d 136 | trends: '0' 137 | value_type: CHAR 138 | description: 'IP Address' 139 | tags: 140 | - 141 | tag: Device 142 | value: general 143 | triggers: 144 | - 145 | uuid: 7d91eda4419147ad892b8cec56b707e7 146 | expression: 'last(/Intelbras NVR SNMP/enterprises.ipAddr,#1)<>last(/Intelbras NVR SNMP/enterprises.ipAddr,#2)' 147 | name: 'Device IP changed' 148 | opdata: 'IP: {ITEM.VALUE}' 149 | priority: WARNING 150 | description: 'Device IP changed' 151 | manual_close: 'YES' 152 | - 153 | uuid: 7325299946594f378a6335d7099371a8 154 | name: 'Memory Utilization' 155 | type: SNMP_AGENT 156 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.9.2.0 157 | key: enterprises.memoryUsage 158 | delay: 3m 159 | history: 7d 160 | value_type: FLOAT 161 | units: '%' 162 | description: 'Uso da memória em percentual' 163 | tags: 164 | - 165 | tag: System 166 | value: status 167 | triggers: 168 | - 169 | uuid: 126b8f21ad36457fbc20aa199bec26a6 170 | expression: 'avg(/Intelbras NVR SNMP/enterprises.memoryUsage,#3)>98' 171 | name: 'Memory High Utilization' 172 | opdata: '{ITEM.LASTVALUE1}' 173 | priority: HIGH 174 | - 175 | uuid: 0b41eaf4f4624b539402c4070c3a1020 176 | name: 'Device Serial Number' 177 | type: SNMP_AGENT 178 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.4.0 179 | key: enterprises.serialNumber 180 | delay: 1d 181 | history: 2d 182 | trends: '0' 183 | value_type: CHAR 184 | description: 'Número de série do dispositivo' 185 | inventory_link: SERIALNO_A 186 | tags: 187 | - 188 | tag: Device 189 | value: general 190 | - 191 | uuid: 9a217be202584a858c2857f64913f96e 192 | name: 'System Status' 193 | type: SNMP_AGENT 194 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.7.0 195 | key: enterprises.systemStatus 196 | delay: 3m 197 | history: 7d 198 | description: 'Status do sistema: online(0), offline(1), reboot(2)' 199 | valuemap: 200 | name: 'NVR System Status' 201 | tags: 202 | - 203 | tag: Device 204 | value: general 205 | triggers: 206 | - 207 | uuid: 7b27f2cbce1941f4842db349be14df7d 208 | expression: 'last(/Intelbras NVR SNMP/enterprises.systemStatus)=1' 209 | recovery_mode: RECOVERY_EXPRESSION 210 | recovery_expression: 'last(/Intelbras NVR SNMP/enterprises.systemStatus)=0' 211 | name: 'System Status Offline' 212 | opdata: '{ITEM.LASTVALUE1}' 213 | priority: DISASTER 214 | description: | 215 | 0 - online 216 | 1 - offline 217 | 2- reboot 218 | - 219 | uuid: 2b4e8785ba8441afae57a848b09b566a 220 | name: 'System Time' 221 | type: SNMP_AGENT 222 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.8.0 223 | key: enterprises.systemTime 224 | delay: 3m 225 | history: 2d 226 | trends: '0' 227 | value_type: CHAR 228 | description: | 229 | Horário do dispositivo 230 | (String) formato: YYYY/MM/DD HOUR:MIN:SEC. ex: 2014/10/13 10:32:31" 231 | tags: 232 | - 233 | tag: System 234 | value: status 235 | - 236 | uuid: 77f25d88e8554c6a83ca14f4e8285497 237 | name: 'Device System Version' 238 | type: SNMP_AGENT 239 | snmp_oid: 1.3.6.1.4.1.1004849.2.1.2.5.0 240 | key: enterprises.systemVersion 241 | delay: 1d 242 | history: 2d 243 | trends: '0' 244 | value_type: CHAR 245 | description: 'Versão do sistema' 246 | inventory_link: SOFTWARE 247 | tags: 248 | - 249 | tag: Device 250 | value: general 251 | triggers: 252 | - 253 | uuid: 792c5acff95e4c12bc7b2844cc4e5d8e 254 | expression: 'last(/Intelbras NVR SNMP/enterprises.systemVersion,#1)<>last(/Intelbras NVR SNMP/enterprises.systemVersion,#2)' 255 | name: 'Device System Version changed' 256 | opdata: '{ITEM.VALUE}' 257 | priority: WARNING 258 | manual_close: 'YES' 259 | - 260 | uuid: 72680aa0d1134b45b6123f8fa2c86356 261 | name: 'NVR Performance HTTPS' 262 | type: SIMPLE 263 | key: 'net.tcp.service.perf[tcp,,{$HTTPS_PORT}]' 264 | delay: 5m 265 | history: 1w 266 | value_type: FLOAT 267 | units: s 268 | description: | 269 | NVR's HTTPS web interface performance check. 270 | Web Scenario already collects Web data. 271 | If necessary enable this item for TCP data collection. 272 | Verificação do desempenho HTTPS da interface WEB do NVR. 273 | Cenário Web já coleta dados Web. 274 | Se necessário habilite este item para coleta de dados TCP. 275 | tags: 276 | - 277 | tag: System 278 | value: status 279 | - 280 | uuid: 4acf9f67f76240c1a032e103826c53aa 281 | name: 'NVR Performance HTTP' 282 | type: SIMPLE 283 | key: 'net.tcp.service.perf[tcp,,{$HTTP_PORT}]' 284 | delay: 5m 285 | history: 1w 286 | value_type: FLOAT 287 | units: s 288 | description: | 289 | NVR's HTTP web interface performance check. 290 | Web Scenario already collects Web data. 291 | If necessary enable this item for TCP data collection. 292 | Verificação do desempenho HTTP da interface WEB do NVR. 293 | Cenário Web já coleta dados Web. 294 | Se necessário habilite este item para coleta de dados TCP. 295 | tags: 296 | - 297 | tag: System 298 | value: status 299 | - 300 | uuid: 465aa59acfd14b37815b3aa22f3004c2 301 | name: 'NVR Performance' 302 | type: SIMPLE 303 | key: 'net.tcp.service.perf[tcp,,{$MEDIA_PORT}]' 304 | delay: 5m 305 | history: 1w 306 | value_type: FLOAT 307 | units: s 308 | description: 'Verificação do desempenho do NVR.' 309 | tags: 310 | - 311 | tag: System 312 | value: status 313 | - 314 | uuid: 4e314ab95cb54c909e6b095ed3817d1d 315 | name: 'NVR Performance Average' 316 | type: CALCULATED 317 | key: service.perf.avg.tcp 318 | delay: 5m 319 | history: 1w 320 | value_type: FLOAT 321 | units: s 322 | params: 'avg(//net.tcp.service.perf[tcp,,{$MEDIA_PORT}],25m)' 323 | tags: 324 | - 325 | tag: System 326 | value: status 327 | - 328 | uuid: f59250bbe20a47fbafc5b3f4fe208be7 329 | name: 'SNMP traps (fallback)' 330 | type: SNMP_TRAP 331 | key: snmptrap.fallback 332 | delay: '0' 333 | history: 2w 334 | trends: '0' 335 | value_type: LOG 336 | description: 'Item is used to collect all SNMP traps unmatched by other snmptrap items' 337 | logtimefmt: 'hh:mm:sszyyyy/MM/dd' 338 | tags: 339 | - 340 | tag: System 341 | value: status 342 | - 343 | uuid: 9fdc05f7a808453cadd6090b49930a3a 344 | name: 'System contact details' 345 | type: SNMP_AGENT 346 | snmp_oid: 1.3.6.1.2.1.1.4.0 347 | key: 'system.contact[sysContact.0]' 348 | delay: 1d 349 | history: 2d 350 | trends: '0' 351 | value_type: CHAR 352 | description: | 353 | MIB: SNMPv2-MIB 354 | The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. 355 | inventory_link: CONTACT 356 | preprocessing: 357 | - 358 | type: DISCARD_UNCHANGED_HEARTBEAT 359 | parameters: 360 | - 1d 361 | tags: 362 | - 363 | tag: Device 364 | value: general 365 | - 366 | uuid: 1c3f4f8993ea407c8796ea299bd74c36 367 | name: 'System description' 368 | type: SNMP_AGENT 369 | snmp_oid: 1.3.6.1.2.1.1.1.0 370 | key: 'system.descr[sysDescr.0]' 371 | delay: 1d 372 | history: 2d 373 | trends: '0' 374 | value_type: CHAR 375 | description: | 376 | MIB: SNMPv2-MIB 377 | A textual description of the entity. This value should 378 | include the full name and version identification of the system's hardware type, software operating-system, and 379 | networking software. 380 | inventory_link: NOTES 381 | preprocessing: 382 | - 383 | type: DISCARD_UNCHANGED_HEARTBEAT 384 | parameters: 385 | - 1d 386 | tags: 387 | - 388 | tag: Device 389 | value: general 390 | - 391 | uuid: e861b80b0a91478886046b98e1c1b73a 392 | name: 'System location' 393 | type: SNMP_AGENT 394 | snmp_oid: 1.3.6.1.2.1.1.6.0 395 | key: 'system.location[sysLocation.0]' 396 | delay: 1d 397 | history: 2d 398 | trends: '0' 399 | value_type: CHAR 400 | description: | 401 | MIB: SNMPv2-MIB 402 | The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. 403 | inventory_link: LOCATION 404 | preprocessing: 405 | - 406 | type: DISCARD_UNCHANGED_HEARTBEAT 407 | parameters: 408 | - 1h 409 | tags: 410 | - 411 | tag: Device 412 | value: general 413 | - 414 | uuid: 83fa01fe8049481f808e0dd9ca477422 415 | name: 'System name' 416 | type: SNMP_AGENT 417 | snmp_oid: 1.3.6.1.2.1.1.5.0 418 | key: system.name 419 | delay: 1d 420 | history: 2d 421 | trends: '0' 422 | value_type: CHAR 423 | description: | 424 | MIB: SNMPv2-MIB 425 | An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. 426 | inventory_link: NAME 427 | preprocessing: 428 | - 429 | type: DISCARD_UNCHANGED_HEARTBEAT 430 | parameters: 431 | - 1h 432 | tags: 433 | - 434 | tag: Device 435 | value: general 436 | triggers: 437 | - 438 | uuid: c6349c2779c94046abf8fdc996d7ff79 439 | expression: '(last(/Intelbras NVR SNMP/system.name,#1)<>last(/Intelbras NVR SNMP/system.name,#2))=1 and length(last(/Intelbras NVR SNMP/system.name))>0' 440 | name: 'System name has changed' 441 | opdata: 'New name: {ITEM.VALUE}' 442 | priority: INFO 443 | description: 'System name has changed. Ack to close.' 444 | manual_close: 'YES' 445 | - 446 | uuid: eba033190e72492d80dda3c44a95b72c 447 | name: 'System object ID' 448 | type: SNMP_AGENT 449 | snmp_oid: 1.3.6.1.2.1.1.2.0 450 | key: 'system.objectid[sysObjectID.0]' 451 | delay: 1d 452 | history: 2d 453 | trends: '0' 454 | value_type: CHAR 455 | description: | 456 | MIB: SNMPv2-MIB 457 | The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. 458 | **Might be invalid** 459 | preprocessing: 460 | - 461 | type: DISCARD_UNCHANGED_HEARTBEAT 462 | parameters: 463 | - 1h 464 | tags: 465 | - 466 | tag: Device 467 | value: general 468 | - 469 | uuid: 2877e152c6f94e408dff1805528864f3 470 | name: 'Uptime Generic' 471 | type: SNMP_AGENT 472 | snmp_oid: 1.3.6.1.2.1.1.3.0 473 | key: 'system.uptime[sysUpTime.0]' 474 | delay: 10m 475 | history: 2w 476 | trends: '0' 477 | units: uptime 478 | description: | 479 | MIB: SNMPv2-MIB 480 | The time (in hundredths of a second) since the network management portion of the system was last re-initialized. 481 | preprocessing: 482 | - 483 | type: MULTIPLIER 484 | parameters: 485 | - '0.01' 486 | tags: 487 | - 488 | tag: System 489 | value: status 490 | - 491 | uuid: 9385027fca664ffe8bfab056ed9d681c 492 | name: 'SNMP agent availability' 493 | type: INTERNAL 494 | key: 'zabbix[host,snmp,available]' 495 | history: 7d 496 | trends: '0' 497 | valuemap: 498 | name: 'SNMP Availability' 499 | tags: 500 | - 501 | tag: System 502 | value: status 503 | triggers: 504 | - 505 | uuid: 402a97ff650c44a791c6eb60d33cc889 506 | expression: 'max(/Intelbras NVR SNMP/zabbix[host,snmp,available],{$SNMP.TIMEOUT})=0' 507 | name: 'No SNMP data collection' 508 | opdata: 'Current state: {ITEM.LASTVALUE1}' 509 | priority: HIGH 510 | description: 'SNMP is not available for polling. Please check device connectivity and SNMP settings.' 511 | discovery_rules: 512 | - 513 | uuid: db9a014c00de49e086c51215efad802e 514 | name: 'Camera Discovery' 515 | type: SNMP_AGENT 516 | snmp_oid: 'discovery[{#ICAM_IP}, 1.3.6.1.4.1.1004849.2.10.2.2.1.2, {#CAM_NAME}, 1.3.6.1.4.1.1004849.2.10.2.2.1.4, {#CAM_STATUS}, 1.3.6.1.4.1.1004849.2.10.2.2.1.3]' 517 | key: net.cam.discovery 518 | delay: 1h 519 | lifetime: 1d 520 | item_prototypes: 521 | - 522 | uuid: 0763a7279bde44c8bd467b2af73fe250 523 | name: 'Camera {#SNMPINDEX} IP' 524 | type: SNMP_AGENT 525 | snmp_oid: '1.3.6.1.4.1.1004849.2.10.2.2.1.2.{#SNMPINDEX}' 526 | key: 'remoteCam[IpAddr{#SNMPINDEX}]' 527 | delay: 15m 528 | history: 2d 529 | trends: '0' 530 | value_type: CHAR 531 | tags: 532 | - 533 | tag: Camera 534 | value: ip 535 | - 536 | uuid: 2bcbdfe288d34915ae6390b6349bcc05 537 | name: 'Camera {#SNMPINDEX} Name' 538 | type: SNMP_AGENT 539 | snmp_oid: '1.3.6.1.4.1.1004849.2.10.2.2.1.4.{#SNMPINDEX}' 540 | key: 'remoteCam[name{#SNMPINDEX}]' 541 | delay: 15m 542 | history: 2d 543 | trends: '0' 544 | value_type: CHAR 545 | tags: 546 | - 547 | tag: Camera 548 | value: name 549 | - 550 | uuid: 1fa48e4640f2410098eb1b62e0adbd94 551 | name: 'Camera {#SNMPINDEX} Status' 552 | type: SNMP_AGENT 553 | snmp_oid: '1.3.6.1.4.1.1004849.2.10.2.2.1.3.{#SNMPINDEX}' 554 | key: 'remoteCam[status{#SNMPINDEX}]' 555 | delay: 5m 556 | history: 2d 557 | trends: '0' 558 | value_type: CHAR 559 | description: 'The status of remote device (Connecting, Conneted, Unconnect, Empty, Disable).' 560 | tags: 561 | - 562 | tag: Camera 563 | value: status 564 | trigger_prototypes: 565 | - 566 | uuid: ae78fb381c9f425f927b4de25511fed6 567 | expression: 'last(/Intelbras NVR SNMP/remoteCam[status{#SNMPINDEX}],#1)="Empty"' 568 | name: 'Camera {#SNMPINDEX} absent' 569 | opdata: '{#CAM_NAME} - {#CAM_STATUS}' 570 | priority: WARNING 571 | - 572 | uuid: 751f317495fb42e1927b45d10327385d 573 | expression: 'last(/Intelbras NVR SNMP/remoteCam[status{#SNMPINDEX}],#1)="Unconnect"' 574 | name: 'Camera {#SNMPINDEX} disconnected' 575 | opdata: '{#CAM_NAME} - {#CAM_STATUS}' 576 | priority: WARNING 577 | - 578 | uuid: 5ed49bd1ed5d4f5cb2acf00dd9536ab7 579 | name: 'Disk Discovery' 580 | type: SNMP_AGENT 581 | snmp_oid: 'discovery[{#DISK_NAME}, 1.3.6.1.4.1.1004849.2.4.1.1.4, {#DISK_STATUS}, 1.3.6.1.4.1.1004849.2.4.1.1.5, {#DISK_USED}, 1.3.6.1.4.1.1004849.2.4.1.1.6, {#DISK_SIZE}, 1.3.6.1.4.1.1004849.2.4.1.1.7]' 582 | key: vfs.disk.discovery 583 | delay: 1h 584 | lifetime: 1d 585 | description: 'Infomation of physical volume' 586 | item_prototypes: 587 | - 588 | uuid: d562009a815747ea84de42c97b2e86b5 589 | name: 'Disk {#SNMPINDEX} Percent Free - {#DISK_NAME}' 590 | type: CALCULATED 591 | key: 'physicalVolume[free{#SNMPINDEX}]' 592 | delay: 5m 593 | history: 7d 594 | units: '%' 595 | params: | 596 | 100 - (last(//physicalVolume[used{#SNMPINDEX}]) 597 | * 100 / 598 | last(//physicalVolume[size{#SNMPINDEX}])) 599 | tags: 600 | - 601 | tag: Disk 602 | value: used 603 | trigger_prototypes: 604 | - 605 | uuid: 6af35893d4774cb9bb43efb09ab3369a 606 | expression: 'last(/Intelbras NVR SNMP/physicalVolume[free{#SNMPINDEX}],#1)<{$DISK_FREE_WARN}' 607 | name: 'Disk {#DISK_NAME} free space is low' 608 | opdata: '{ITEM.LASTVALUE} free' 609 | priority: WARNING 610 | - 611 | uuid: 70d9dd5e4dbe4801b8d1862c2ad8c642 612 | name: 'Disk {#SNMPINDEX} Name - {#DISK_NAME}' 613 | type: SNMP_AGENT 614 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.4.{#SNMPINDEX}' 615 | key: 'physicalVolume[name{#SNMPINDEX}]' 616 | delay: 1h 617 | history: 2d 618 | trends: '0' 619 | value_type: CHAR 620 | tags: 621 | - 622 | tag: Disk 623 | value: name 624 | - 625 | uuid: a2af9406213f4664bf2e9e5513110636 626 | name: 'Disk {#SNMPINDEX} Size - {#DISK_NAME}' 627 | type: SNMP_AGENT 628 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.7.{#SNMPINDEX}' 629 | key: 'physicalVolume[size{#SNMPINDEX}]' 630 | delay: 1h 631 | history: 1d 632 | trends: '0' 633 | units: '!MB' 634 | tags: 635 | - 636 | tag: Disk 637 | value: size 638 | - 639 | uuid: feef0553ed5c4af4b9dc4509aba57011 640 | name: 'Disk {#SNMPINDEX} Status - {#DISK_NAME}' 641 | type: SNMP_AGENT 642 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.5.{#SNMPINDEX}' 643 | key: 'physicalVolume[status{#SNMPINDEX}]' 644 | delay: 5m 645 | history: 7d 646 | trends: '0' 647 | value_type: CHAR 648 | tags: 649 | - 650 | tag: Disk 651 | value: status 652 | trigger_prototypes: 653 | - 654 | uuid: 6b9e0010048346688f1e35c1473889c5 655 | expression: | 656 | last(/Intelbras NVR SNMP/physicalVolume[status{#SNMPINDEX}],#1)<>"Running" 657 | and 658 | last(/Intelbras NVR SNMP/physicalVolume[status{#SNMPINDEX}],#1)<>"RaidSub" 659 | name: 'Disk {#DISK_NAME} ERROR' 660 | opdata: '{#DISK_STATUS}' 661 | priority: HIGH 662 | tags: 663 | - 664 | tag: Disk 665 | value: error 666 | - 667 | uuid: a2a0a0deb020479bb09286311d041acd 668 | name: 'Disk {#SNMPINDEX} Used - {#DISK_NAME}' 669 | type: SNMP_AGENT 670 | snmp_oid: '1.3.6.1.4.1.1004849.2.4.1.1.6.{#SNMPINDEX}' 671 | key: 'physicalVolume[used{#SNMPINDEX}]' 672 | delay: 5m 673 | history: 7d 674 | units: '!MB' 675 | tags: 676 | - 677 | tag: Disk 678 | value: used 679 | graph_prototypes: 680 | - 681 | uuid: 178890197d5744e08772cc625987e33f 682 | name: 'Disk Usage - {#DISK_NAME}' 683 | width: '500' 684 | height: '340' 685 | yaxismax: '0' 686 | show_work_period: 'NO' 687 | show_triggers: 'NO' 688 | type: PIE 689 | show_3d: 'YES' 690 | graph_items: 691 | - 692 | sortorder: '1' 693 | color: FFAB91 694 | calc_fnc: LAST 695 | type: GRAPH_SUM 696 | item: 697 | host: 'Intelbras NVR SNMP' 698 | key: 'physicalVolume[size{#SNMPINDEX}]' 699 | - 700 | sortorder: '2' 701 | color: B71C1C 702 | calc_fnc: LAST 703 | item: 704 | host: 'Intelbras NVR SNMP' 705 | key: 'physicalVolume[used{#SNMPINDEX}]' 706 | httptests: 707 | - 708 | uuid: aeb5ce3095dc4a4c9e6452229901edb1 709 | name: 'NVR Web Performance HTTP' 710 | delay: 5m 711 | agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36' 712 | steps: 713 | - 714 | name: 'NVR Web Performance HTTP' 715 | url: 'http://{HOST.CONN}:{$HTTP_PORT}' 716 | follow_redirects: 'NO' 717 | retrieve_mode: BOTH 718 | timeout: 5s 719 | status_codes: '200' 720 | tags: 721 | - 722 | tag: NVR 723 | value: web 724 | - 725 | uuid: cb4f328df412442b8ff4439d1abe7600 726 | name: 'NVR Web Performance HTTPS' 727 | delay: 5m 728 | agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36' 729 | steps: 730 | - 731 | name: 'NVR Web Performance HTTPS' 732 | url: 'http://{HOST.CONN}:{$HTTPS_PORT}' 733 | follow_redirects: 'NO' 734 | retrieve_mode: BOTH 735 | timeout: 5s 736 | status_codes: '200' 737 | tags: 738 | - 739 | tag: NVR 740 | value: web 741 | macros: 742 | - 743 | macro: '{$DISK_FREE_WARN}' 744 | value: '0' 745 | description: 'Disk free percentage threshold (limiar)' 746 | - 747 | macro: '{$HTTPS_PORT}' 748 | value: '443' 749 | description: 'HTTPS port for WEB UI access, if set.' 750 | - 751 | macro: '{$HTTP_PORT}' 752 | value: '80' 753 | description: 'HTTP port for WEB UI access' 754 | - 755 | macro: '{$MEDIA_PORT}' 756 | value: '37777' 757 | description: 'Media port for camera access.' 758 | - 759 | macro: '{$SNMP.TIMEOUT}' 760 | value: 5m 761 | description: 'SNMP timeout for trigger threshold' 762 | dashboards: 763 | - 764 | uuid: 08c540e81cb14b4f9bc1e38c1cc68ede 765 | name: 'NVR Dashboard' 766 | pages: 767 | - 768 | widgets: 769 | - 770 | type: GRAPH_CLASSIC 771 | width: '12' 772 | height: '5' 773 | fields: 774 | - 775 | type: GRAPH 776 | name: graphid 777 | value: 778 | host: 'Intelbras NVR SNMP' 779 | name: 'CPU Utilization' 780 | - 781 | type: GRAPH_CLASSIC 782 | 'y': '5' 783 | width: '12' 784 | height: '5' 785 | fields: 786 | - 787 | type: GRAPH 788 | name: graphid 789 | value: 790 | host: 'Intelbras NVR SNMP' 791 | name: 'Memory Utilization' 792 | - 793 | type: GRAPH_CLASSIC 794 | 'y': '10' 795 | width: '12' 796 | height: '5' 797 | fields: 798 | - 799 | type: GRAPH 800 | name: graphid 801 | value: 802 | host: 'Intelbras NVR SNMP' 803 | name: 'NVR Response Time' 804 | - 805 | type: GRAPH_PROTOTYPE 806 | x: '12' 807 | 'y': '9' 808 | width: '12' 809 | height: '5' 810 | fields: 811 | - 812 | type: GRAPH_PROTOTYPE 813 | name: graphid 814 | value: 815 | host: 'Intelbras NVR SNMP' 816 | name: 'Disk Usage - {#DISK_NAME}' 817 | - 818 | type: GRAPH_PROTOTYPE 819 | x: '12' 820 | 'y': '4' 821 | width: '12' 822 | height: '5' 823 | fields: 824 | - 825 | type: INTEGER 826 | name: columns 827 | value: '1' 828 | - 829 | type: GRAPH_PROTOTYPE 830 | name: graphid 831 | value: 832 | host: 'Intelbras NVR SNMP' 833 | name: 'Interface {#IFDESCR}: Network traffic' 834 | - 835 | type: ITEM 836 | name: 'NVR IP' 837 | x: '16' 838 | width: '4' 839 | fields: 840 | - 841 | type: INTEGER 842 | name: show 843 | value: '2' 844 | - 845 | type: INTEGER 846 | name: adv_conf 847 | value: '1' 848 | - 849 | type: INTEGER 850 | name: decimal_size 851 | value: '50' 852 | - 853 | type: INTEGER 854 | name: value_size 855 | value: '50' 856 | - 857 | type: INTEGER 858 | name: units_size 859 | value: '30' 860 | - 861 | type: STRING 862 | name: value_color 863 | value: FFCCBC 864 | - 865 | type: STRING 866 | name: bg_color 867 | value: '3E2723' 868 | - 869 | type: ITEM 870 | name: itemid 871 | value: 872 | host: 'Intelbras NVR SNMP' 873 | key: enterprises.ipAddr 874 | - 875 | type: ITEM 876 | name: 'NVR MODEL' 877 | x: '12' 878 | width: '4' 879 | fields: 880 | - 881 | type: INTEGER 882 | name: show 883 | value: '2' 884 | - 885 | type: INTEGER 886 | name: adv_conf 887 | value: '1' 888 | - 889 | type: INTEGER 890 | name: decimal_size 891 | value: '50' 892 | - 893 | type: INTEGER 894 | name: value_size 895 | value: '50' 896 | - 897 | type: INTEGER 898 | name: units_size 899 | value: '50' 900 | - 901 | type: STRING 902 | name: value_color 903 | value: FFCCBC 904 | - 905 | type: STRING 906 | name: bg_color 907 | value: '3E2723' 908 | - 909 | type: ITEM 910 | name: itemid 911 | value: 912 | host: 'Intelbras NVR SNMP' 913 | key: enterprises.deviceType 914 | - 915 | type: ITEM 916 | name: 'NVR SERIAL NUMBER' 917 | x: '20' 918 | 'y': '2' 919 | width: '4' 920 | fields: 921 | - 922 | type: INTEGER 923 | name: show 924 | value: '2' 925 | - 926 | type: INTEGER 927 | name: adv_conf 928 | value: '1' 929 | - 930 | type: INTEGER 931 | name: decimal_size 932 | value: '40' 933 | - 934 | type: INTEGER 935 | name: value_size 936 | value: '40' 937 | - 938 | type: INTEGER 939 | name: units_size 940 | value: '40' 941 | - 942 | type: STRING 943 | name: value_color 944 | value: FFCCBC 945 | - 946 | type: STRING 947 | name: bg_color 948 | value: '3E2723' 949 | - 950 | type: ITEM 951 | name: itemid 952 | value: 953 | host: 'Intelbras NVR SNMP' 954 | key: enterprises.serialNumber 955 | - 956 | type: ITEM 957 | name: 'NVR SNMP AVAILABILITY' 958 | x: '16' 959 | 'y': '2' 960 | width: '4' 961 | fields: 962 | - 963 | type: INTEGER 964 | name: show 965 | value: '2' 966 | - 967 | type: INTEGER 968 | name: adv_conf 969 | value: '1' 970 | - 971 | type: INTEGER 972 | name: decimal_size 973 | value: '50' 974 | - 975 | type: INTEGER 976 | name: value_size 977 | value: '50' 978 | - 979 | type: INTEGER 980 | name: units_size 981 | value: '30' 982 | - 983 | type: STRING 984 | name: value_color 985 | value: FFCCBC 986 | - 987 | type: STRING 988 | name: bg_color 989 | value: '3E2723' 990 | - 991 | type: ITEM 992 | name: itemid 993 | value: 994 | host: 'Intelbras NVR SNMP' 995 | key: 'zabbix[host,snmp,available]' 996 | - 997 | type: ITEM 998 | name: 'NVR STATUS' 999 | x: '12' 1000 | 'y': '2' 1001 | width: '4' 1002 | fields: 1003 | - 1004 | type: INTEGER 1005 | name: show 1006 | value: '2' 1007 | - 1008 | type: INTEGER 1009 | name: adv_conf 1010 | value: '1' 1011 | - 1012 | type: INTEGER 1013 | name: decimal_size 1014 | value: '50' 1015 | - 1016 | type: INTEGER 1017 | name: value_size 1018 | value: '50' 1019 | - 1020 | type: INTEGER 1021 | name: units_size 1022 | value: '30' 1023 | - 1024 | type: STRING 1025 | name: value_color 1026 | value: FFCCBC 1027 | - 1028 | type: STRING 1029 | name: bg_color 1030 | value: '3E2723' 1031 | - 1032 | type: ITEM 1033 | name: itemid 1034 | value: 1035 | host: 'Intelbras NVR SNMP' 1036 | key: enterprises.systemStatus 1037 | - 1038 | type: ITEM 1039 | name: 'NVR VERSION' 1040 | x: '20' 1041 | width: '4' 1042 | fields: 1043 | - 1044 | type: INTEGER 1045 | name: show 1046 | value: '2' 1047 | - 1048 | type: INTEGER 1049 | name: adv_conf 1050 | value: '1' 1051 | - 1052 | type: INTEGER 1053 | name: decimal_size 1054 | value: '40' 1055 | - 1056 | type: INTEGER 1057 | name: value_size 1058 | value: '40' 1059 | - 1060 | type: INTEGER 1061 | name: units_size 1062 | value: '40' 1063 | - 1064 | type: STRING 1065 | name: value_color 1066 | value: FFCCBC 1067 | - 1068 | type: STRING 1069 | name: bg_color 1070 | value: '3E2723' 1071 | - 1072 | type: ITEM 1073 | name: itemid 1074 | value: 1075 | host: 'Intelbras NVR SNMP' 1076 | key: enterprises.systemVersion 1077 | valuemaps: 1078 | - 1079 | uuid: 159905aedeb5408cad459da9ae408701 1080 | name: 'NVR Device Status' 1081 | mappings: 1082 | - 1083 | value: '0' 1084 | newvalue: Bad 1085 | - 1086 | value: '1' 1087 | newvalue: Good 1088 | - 1089 | uuid: bc96ddf3a7c2411f8c4109a35b1cafcf 1090 | name: 'NVR System Status' 1091 | mappings: 1092 | - 1093 | value: '0' 1094 | newvalue: Online 1095 | - 1096 | value: '1' 1097 | newvalue: Offline 1098 | - 1099 | value: '2' 1100 | newvalue: Reboot 1101 | - 1102 | uuid: 18fb1eb55c3c400fa4dc135cae6903a9 1103 | name: 'SNMP Availability' 1104 | mappings: 1105 | - 1106 | value: '1' 1107 | newvalue: Available 1108 | - 1109 | value: '0' 1110 | newvalue: Unavailable 1111 | graphs: 1112 | - 1113 | uuid: 3355f947691d4cfca90351c998355b69 1114 | name: 'CPU Utilization' 1115 | ymin_type_1: FIXED 1116 | ymax_type_1: FIXED 1117 | graph_items: 1118 | - 1119 | drawtype: GRADIENT_LINE 1120 | color: 199C0D 1121 | item: 1122 | host: 'Intelbras NVR SNMP' 1123 | key: enterprises.cpuUsage 1124 | - 1125 | uuid: f3ec20f890af4f41830c213bf9fc8eb7 1126 | name: 'Memory Utilization' 1127 | ymin_type_1: FIXED 1128 | ymax_type_1: FIXED 1129 | graph_items: 1130 | - 1131 | drawtype: GRADIENT_LINE 1132 | color: F63100 1133 | item: 1134 | host: 'Intelbras NVR SNMP' 1135 | key: enterprises.memoryUsage 1136 | - 1137 | uuid: 881fa2b54a7b499e8c0c9a25ebf6e8ab 1138 | name: 'NVR Response Time' 1139 | ymin_type_1: FIXED 1140 | graph_items: 1141 | - 1142 | drawtype: FILLED_REGION 1143 | color: FFAB91 1144 | item: 1145 | host: 'Intelbras NVR SNMP' 1146 | key: 'web.test.time[NVR Web Performance HTTP,NVR Web Performance HTTP,resp]' 1147 | - 1148 | sortorder: '1' 1149 | color: 199C0D 1150 | calc_fnc: ALL 1151 | item: 1152 | host: 'Intelbras NVR SNMP' 1153 | key: 'web.test.time[NVR Web Performance HTTPS,NVR Web Performance HTTPS,resp]' 1154 | - 1155 | sortorder: '2' 1156 | drawtype: BOLD_LINE 1157 | color: 8F2809 1158 | item: 1159 | host: 'Intelbras NVR SNMP' 1160 | key: 'net.tcp.service.perf[tcp,,{$MEDIA_PORT}]' 1161 | -------------------------------------------------------------------------------- /images/grafana_dash_nvd_3316_P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diasdmhub/Intelbras_NVR_Zabbix_Template/096c19dba40b7d6de3aa998104ee8313316eff2f/images/grafana_dash_nvd_3316_P.png -------------------------------------------------------------------------------- /images/nvr_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diasdmhub/Intelbras_NVR_Zabbix_Template/096c19dba40b7d6de3aa998104ee8313316eff2f/images/nvr_dashboard.png -------------------------------------------------------------------------------- /images/nvr_dashboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diasdmhub/Intelbras_NVR_Zabbix_Template/096c19dba40b7d6de3aa998104ee8313316eff2f/images/nvr_dashboard2.png --------------------------------------------------------------------------------