Welcome to mirror list, hosted at ThFree Co, Russian Federation.

template_net_cisco_asav_snmp.yaml « cisco_asav_snmp « cisco « net « templates - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8ba01fd08a8e36140b6842c83d4515104f35bb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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
115
116
117
118
119
120
121
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
206
207
208
209
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
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
323
324
325
326
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
zabbix_export:
  version: '6.2'
  date: '2022-06-07T19:33:05Z'
  template_groups:
    -
      uuid: 36bff6c29af64692839d077febfc7079
      name: 'Templates/Network devices'
  templates:
    -
      uuid: 75d009cd4dc84ee7a8fc479fa2fbaeee
      template: 'Cisco ASAv SNMP'
      name: 'Cisco ASAv SNMP'
      description: |
        Template Net Cisco ASAv
        
        MIBs used:
        CISCO-PORT-MIB
        CISCO-MEMORY-POOL-MIB
        CISCO-REMOTE-ACCESS-MONITOR-MIB
        IF-MIB
        RFC1213-MIB
        CISCO-PROCESS-MIB
        ENTITY-MIB
         CISCO-REMOTE-ACCESS-MONITOR-MIB
        
        You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco
        
        Template tooling version used: 0.41
      groups:
        -
          name: 'Templates/Network devices'
      items:
        -
          uuid: 9371a5b8ca3445eaa6516044e60a2ec6
          name: 'Cisco ASAv: Contact'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.2.1.1.4.0
          key: cisco.asav.contact
          delay: 1h
          history: 7d
          trends: '0'
          value_type: CHAR
          description: |
            MIB: RFC1213-MIB
            The textual identification of the contact person
            for this managed node, together with information
            on how to contact this person.
          inventory_link: CONTACT
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
          tags:
            -
              tag: component
              value: system
        -
          uuid: 2d4a058787a141629a33ab98194055f2
          name: 'Cisco ASAv: Location'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.2.1.1.6.0
          key: cisco.asav.location
          delay: 1h
          history: 7d
          trends: '0'
          value_type: CHAR
          description: |
            MIB: RFC1213-MIB
            The physical location of this node (e.g.,
            `telephone closet, 3rd floor').
          inventory_link: LOCATION
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
          tags:
            -
              tag: component
              value: system
        -
          uuid: c2e63e282bcd4fd09a80f1be95c089d4
          name: 'Cisco ASAv: System description'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.2.1.1.1.0
          key: cisco.asav.model
          delay: 1h
          history: 7d
          trends: '0'
          value_type: CHAR
          description: |
            MIB: RFC1213-MIB
            A textual description of the entity.  This value
            should include the full name and version
            identification of the system's hardware type,
            software operating-system, and networking
            software.  It is mandatory that this only contain
            printable ASCII characters.
          inventory_link: MODEL
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
          tags:
            -
              tag: component
              value: system
        -
          uuid: d20d56dccd494060a4bc130f2951a610
          name: 'Cisco ASAv: Host name'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.2.1.1.5.0
          key: cisco.asav.name
          delay: 1h
          history: 7d
          trends: '0'
          value_type: CHAR
          description: |
            MIB: RFC1213-MIB
            An administratively-assigned name for this
            managed node.  By convention, this is the node's
            fully-qualified domain name.
          inventory_link: NAME
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
          tags:
            -
              tag: component
              value: system
        -
          uuid: 526b1a118bab4c948af0935197a659f6
          name: 'Cisco ASAv: Uptime'
          type: SNMP_AGENT
          snmp_oid: .1.3.6.1.2.1.1.3.0
          key: cisco.asav.uptime
          delay: 30s
          history: 2w
          trends: 0d
          units: uptime
          description: |
            MIB: RFC1213-MIB
            The time (in hundredths of a second) since the
            network management portion of the system was last
            re-initialized.
          preprocessing:
            -
              type: MULTIPLIER
              parameters:
                - '0.01'
          tags:
            -
              tag: component
              value: system
          triggers:
            -
              uuid: 7fcf46583d2b42f4be6758e85784f28f
              expression: 'last(/Cisco ASAv SNMP/cisco.asav.uptime)<10m'
              name: 'Cisco ASAv: has been restarted'
              event_name: 'Cisco ASAv: has been restarted (uptime < 10m)'
              priority: INFO
              description: 'Uptime is less than 10 minutes.'
              manual_close: 'YES'
              tags:
                -
                  tag: scope
                  value: notice
        -
          uuid: 33e87e5fe2774f1fabb93553e782aaa0
          name: 'Cisco ASAv: SNMP agent availability'
          type: INTERNAL
          key: 'zabbix[host,snmp,available]'
          history: 7d
          valuemap:
            name: 'SNMP available'
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1h
          tags:
            -
              tag: component
              value: application
            -
              tag: component
              value: network
          triggers:
            -
              uuid: 9ee945a0b0b942d7a7e3fcf218f0e82f
              expression: 'max(/Cisco ASAv SNMP/zabbix[host,snmp,available],{$SNMP.TIMEOUT})=0'
              name: 'Cisco ASAv: No SNMP data collection'
              opdata: 'Current state: {ITEM.LASTVALUE1}'
              priority: WARNING
              description: 'SNMP is not available for polling. Please check device connectivity and SNMP settings.'
              tags:
                -
                  tag: scope
                  value: availability
      discovery_rules:
        -
          uuid: 0469f5b40a77457f9447512ed2e75f5e
          name: 'CPU discovery'
          type: SNMP_AGENT
          snmp_oid: 'discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.8]'
          key: cisco.asav.cpu.discovery
          delay: 1h
          description: 'Discovery of cpmCPUTotalTable, a table of CPU monitoring entries.'
          item_prototypes:
            -
              uuid: b2a6af9454a34ed3b8fa2e84ae801b69
              name: 'Cisco ASAv: CPU [{#SNMPINDEX}] Utilization'
              type: SNMP_AGENT
              snmp_oid: '1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX}'
              key: 'cisco.asav.cpu.util[{#SNMPINDEX}]'
              history: 7d
              value_type: FLOAT
              units: '%'
              description: |
                MIB: CISCO-PROCESS-MIB
                The overall CPU busy percentage in the last 5 minute
                period. This object deprecates the object cpmCPUTotal5min
                and increases the value range to (0..100).
              tags:
                -
                  tag: component
                  value: cpu
              trigger_prototypes:
                -
                  uuid: 2e90218795b94ee8b3c01dd79d2dd8b3
                  expression: 'min(/Cisco ASAv SNMP/cisco.asav.cpu.util[{#SNMPINDEX}],5m)>{$CPU.UTIL.CRIT}'
                  name: 'Cisco ASAv: High CPU utilization'
                  event_name: 'Cisco ASAv: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)'
                  opdata: 'Current utilization: {ITEM.LASTVALUE1}'
                  priority: WARNING
                  description: 'CPU utilization is too high. The system might be slow to respond.'
                  tags:
                    -
                      tag: scope
                      value: performance
          graph_prototypes:
            -
              uuid: c3d95f2670f346cda44b3def5a835379
              name: 'Cisco ASAv: CPU[{#SNMPINDEX}] Utilization'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.cpu.util[{#SNMPINDEX}]'
        -
          uuid: 072c0dc4527c492592df91115f1621cb
          name: 'Memory discovery'
          type: SNMP_AGENT
          snmp_oid: 'discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2]'
          key: cisco.asav.memory.discovery
          delay: 1h
          description: 'Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.'
          item_prototypes:
            -
              uuid: 983f90966701470fb713fdfae62f1146
              name: 'Cisco ASAv: {#SNMPVALUE} Free memory'
              type: SNMP_AGENT
              snmp_oid: '1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX}'
              key: 'cisco.asav.memory.free[{#SNMPINDEX}]'
              history: 7d
              units: B
              description: |
                MIB: CISCO-MEMORY-POOL-MIB
                Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool
                Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html
              tags:
                -
                  tag: component
                  value: memory
            -
              uuid: a34b4279d8ac40ec8f2d6577ebaa4280
              name: 'Cisco ASAv: {#SNMPVALUE} Used memory'
              type: SNMP_AGENT
              snmp_oid: '1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX}'
              key: 'cisco.asav.memory.used[{#SNMPINDEX}]'
              history: 7d
              units: B
              description: |
                MIB: CISCO-MEMORY-POOL-MIB
                Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.
                Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html
              tags:
                -
                  tag: component
                  value: memory
            -
              uuid: d67342c8a8124b1b89ef5ec36684b2a7
              name: 'Cisco ASAv: {#SNMPVALUE} Memory utilization'
              type: CALCULATED
              key: 'cisco.asav.memory.util[{#SNMPINDEX}]'
              history: 7d
              value_type: FLOAT
              units: '%'
              params: 'last(//cisco.asav.memory.used[{#SNMPINDEX}])/(last(//cisco.asav.memory.free[{#SNMPINDEX}])+last(//cisco.asav.memory.used[{#SNMPINDEX}]))*100'
              description: 'Memory utilization in %.'
              tags:
                -
                  tag: component
                  value: memory
              trigger_prototypes:
                -
                  uuid: 688975747f664a15a3bca9dd3e1e0b01
                  expression: 'min(/Cisco ASAv SNMP/cisco.asav.memory.util[{#SNMPINDEX}],5m)>{$MEMORY.UTIL.MAX}'
                  name: 'Cisco ASAv: High memory utilization'
                  event_name: 'Cisco ASAv: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)'
                  priority: AVERAGE
                  description: 'The system is running out of free memory.'
                  tags:
                    -
                      tag: scope
                      value: capacity
                    -
                      tag: scope
                      value: performance
          graph_prototypes:
            -
              uuid: 388a69f2dfad42ac934d3f09c5e0efd1
              name: 'Cisco ASAv: Memory[{#SNMPVALUE}] Utilization'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.memory.util[{#SNMPINDEX}]'
        -
          uuid: 2ced96f9e3ff40de85530b9ef9e4585c
          name: 'Interface discovery'
          type: SNMP_AGENT
          snmp_oid: 'discovery[{#CISCO.IF.NAME}, .1.3.6.1.2.1.31.1.1.1.1,{#CISCO.IF.STATUS.ADMIN},.1.3.6.1.2.1.2.2.1.7,{#CISCO.IF.STATUS.OPER},.1.3.6.1.2.1.2.2.1.8,{#CISCO.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18]'
          key: cisco.asav.net.if.discovery
          delay: 1h
          filter:
            evaltype: AND
            conditions:
              -
                macro: '{#CISCO.IF.NAME}'
                value: '{$CISCO.LLD.FILTER.IF.NAME.MATCHES}'
                formulaid: C
              -
                macro: '{#CISCO.IF.NAME}'
                value: '{$CISCO.LLD.FILTER.IF.NAME.NOT_MATCHES}'
                operator: NOT_MATCHES_REGEX
                formulaid: D
              -
                macro: '{#CISCO.IF.STATUS.ADMIN}'
                value: '{$CISCO.LLD.FILTER.IF.ADMIN.MATCHES}'
                formulaid: E
              -
                macro: '{#CISCO.IF.STATUS.ADMIN}'
                value: '{$CISCO.LLD.FILTER.IF.ADMIN.NOT_MATCHES}'
                operator: NOT_MATCHES_REGEX
                formulaid: F
              -
                macro: '{#CISCO.IF.DESC}'
                value: '{$CISCO.LLD.FILTER.IF.DESC.MATCHES}'
                formulaid: A
              -
                macro: '{#CISCO.IF.DESC}'
                value: '{$CISCO.LLD.FILTER.IF.DESC.NOT_MATCHES}'
                operator: NOT_MATCHES_REGEX
                formulaid: B
          description: 'Network interfaces discovery'
          item_prototypes:
            -
              uuid: c4be70b6d6934281ba1c78ef056c7d79
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Administrative status'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.adminstatus[{#SNMPINDEX}]'
              history: 7d
              description: |
                MIB: IF-MIB
                The desired state of the interface.  The
                testing(3) state indicates that no operational
                packets can be passed.
              valuemap:
                name: 'Cisco ASAv port admin status'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: 17f768ffe6604c678e15bb2538cb8cc5
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Interface description'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.descr[{#SNMPINDEX}]'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: |
                MIB: IF-MIB
                A textual string containing information about the interface
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: 01c5f157fc6140149dec01f512babadd
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Link speed'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.highspeed[{#SNMPINDEX}]'
              history: 7d
              units: bps
              description: |
                MIB: IF-MIB
                An estimate of the interface's current bandwidth in bits per second
              preprocessing:
                -
                  type: MULTIPLIER
                  parameters:
                    - '1000000'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: 263e253c378f4928ad5c5f6fd0ce1cbe
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Incoming broadcast packets'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.in.broadcastpkts[{#SNMPINDEX}]'
              history: 7d
              units: packets/s
              description: |
                MIB: IF-MIB
                The number of packets, delivered by this sub-layer to a
                higher (sub-)layer, which were addressed to a broadcast
                address at this sub-layer.
              preprocessing:
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: 9479f382e7e943e0aa560396d3a4db40
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Incoming multicast packets'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.in.multicastpkts[{#SNMPINDEX}]'
              history: 7d
              units: packets/s
              description: |
                MIB: IF-MIB
                The number of packets, delivered by this sub-layer to a
                higher (sub-)layer, which were addressed to a multicast
                address at this sub-layer.  For a MAC layer protocol, this
                includes both Group and Functional addresses.
              preprocessing:
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: 443ce01bb9b04e69a936ec8fb9636720
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Incoming traffic'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.in.traffic[{#SNMPINDEX}]'
              history: 7d
              units: bps
              description: |
                MIB: IF-MIB
                The total number of octets received on the interface,
                including framing characters.
              preprocessing:
                -
                  type: MULTIPLIER
                  parameters:
                    - '8'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: 900bf66a4a7f411f9d9ce231daa8d8a8
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Incoming unicast packets'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.in.ucastpkts[{#SNMPINDEX}]'
              history: 7d
              units: packets/s
              description: |
                MIB: IF-MIB
                The number of packets, delivered by this sub-layer to a
                higher (sub-)layer, which were not addressed to a multicast
                or broadcast address at this sub-layer
              preprocessing:
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: d7564be184564d06abb1f7a718bdf134
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Incoming utilization'
              type: CALCULATED
              key: 'cisco.asav.net.if.in.util[{#SNMPINDEX}]'
              history: 7d
              value_type: FLOAT
              units: '%'
              params: 'last(//cisco.asav.net.if.in.traffic[{#SNMPINDEX}]) * (last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) + (last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100'
              description: 'Interface utilization percentage'
              preprocessing:
                -
                  type: IN_RANGE
                  parameters:
                    - '0'
                    - '100'
                  error_handler: DISCARD_VALUE
                -
                  type: JAVASCRIPT
                  parameters:
                    - 'return +parseFloat(value).toFixed(0);'
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: ceb3a35e289043668d0087255de5c79b
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Interface name'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.name[{#SNMPINDEX}]'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: |
                MIB: CISCO-PORT-MIB
                Descriptive name that identifies this port.
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: 8d51a019f3634b079c2115ccb063840c
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Operational status'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.operstatus[{#SNMPINDEX}]'
              history: 7d
              description: |
                MIB: IF-MIB
                The current operational state of the interface.
                The testing(3) state indicates that no operational
                packets can be passed.
              valuemap:
                name: 'Cisco ASAv port operational status'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
              trigger_prototypes:
                -
                  uuid: 0aca9e16545a46f4a7b150d03cdb1df1
                  expression: 'last(/Cisco ASAv SNMP/cisco.asav.net.if.operstatus[{#SNMPINDEX}])=2 and last(/Cisco ASAv SNMP/cisco.asav.net.if.operstatus[{#SNMPINDEX}],#1)<>last(/Cisco ASAv SNMP/cisco.asav.net.if.operstatus[{#SNMPINDEX}],#2)'
                  recovery_mode: RECOVERY_EXPRESSION
                  recovery_expression: 'last(/Cisco ASAv SNMP/cisco.asav.net.if.operstatus[{#SNMPINDEX}])<>2'
                  name: 'Cisco ASAv: {#CISCO.IF.NAME} Link down'
                  opdata: 'Current state: {ITEM.LASTVALUE1}'
                  priority: AVERAGE
                  description: |
                    This trigger expression works as follows:
                    1. Can be triggered if operations status is down.
                    2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)
                    
                    WARNING: if closed manually - won't fire again on next poll, because of .diff.
                  manual_close: 'YES'
                  tags:
                    -
                      tag: scope
                      value: availability
            -
              uuid: 8a97ed7804f042c7b6767f72bcf9a504
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Outgoing broadcast packets'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.out.broadcastpkts[{#SNMPINDEX}]'
              history: 7d
              units: packets/s
              description: |
                MIB: IF-MIB
                The total number of packets that higher-level protocols
                requested be transmitted, and which were addressed to a
                broadcast address at this sub-layer, including those that
                were discarded or not sent.
              preprocessing:
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: c0918a1acaa049e786a356c25c7dd654
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Outgoing multicast packets'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.out.multicastpkts[{#SNMPINDEX}]'
              history: 7d
              units: packets/s
              description: |
                MIB: IF-MIB
                The total number of packets that higher-level protocols
                requested be transmitted, and which were addressed to a
                multicast address at this sub-layer, including those that
                were discarded or not sent.  For a MAC layer protocol, this
                includes both Group and Functional addresses.
              preprocessing:
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: 8e9c4d99c0d649e79e2f7f64d91789bf
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Outgoing traffic'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.out.traffic[{#SNMPINDEX}]'
              history: 7d
              units: bps
              description: |
                MIB: IF-MIB
                The total number of octets transmitted out of the
                interface, including framing characters.  This object is a
                64-bit version of ifOutOctets.
              preprocessing:
                -
                  type: MULTIPLIER
                  parameters:
                    - '8'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: 1439162918d842ab92f4fca35c32279f
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Outgoing unicast packets'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX}'
              key: 'cisco.asav.net.if.out.ucastpkts[{#SNMPINDEX}]'
              history: 7d
              units: packets/s
              description: |
                MIB: IF-MIB
                The total number of packets that higher-level protocols
                requested be transmitted, and which were not addressed to a
                multicast or broadcast address at this sub-layer, including
                those that were discarded or not sent.
              preprocessing:
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
            -
              uuid: 559d5ddae7744b19b32993174ef06918
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Outgoing utilization'
              type: CALCULATED
              key: 'cisco.asav.net.if.out.util[{#SNMPINDEX}]'
              history: 7d
              value_type: FLOAT
              units: '%'
              params: 'last(//cisco.asav.net.if.out.traffic[{#SNMPINDEX}]) * (last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) <> 0) / ( last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) + (last(//cisco.asav.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100'
              description: 'Interface utilization percentage'
              preprocessing:
                -
                  type: IN_RANGE
                  parameters:
                    - '0'
                    - '100'
                  error_handler: DISCARD_VALUE
                -
                  type: JAVASCRIPT
                  parameters:
                    - 'return +parseFloat(value).toFixed(0);'
              tags:
                -
                  tag: component
                  value: interface
                -
                  tag: description
                  value: '{#CISCO.IF.DESC}'
                -
                  tag: interface
                  value: '{#CISCO.IF.NAME}'
          graph_prototypes:
            -
              uuid: 5e94c9468d7d40ba9705bcfe01f7c24e
              name: 'Cisco ASAv: {#CISCO.IF.NAME}: Packets traffic'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.net.if.in.ucastpkts[{#SNMPINDEX}]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.net.if.out.ucastpkts[{#SNMPINDEX}]'
                -
                  sortorder: '2'
                  color: F63100
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.net.if.in.multicastpkts[{#SNMPINDEX}]'
                -
                  sortorder: '3'
                  color: A54F10
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.net.if.out.multicastpkts[{#SNMPINDEX}]'
                -
                  sortorder: '4'
                  color: FC6EA3
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.net.if.in.broadcastpkts[{#SNMPINDEX}]'
                -
                  sortorder: '5'
                  color: 6C59DC
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.net.if.out.broadcastpkts[{#SNMPINDEX}]'
            -
              uuid: 1e252a00f1a14e99b06498a659a0d1d5
              name: 'Cisco ASAv: {#CISCO.IF.NAME}: Utilization'
              ymin_type_1: FIXED
              ymax_type_1: FIXED
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.net.if.out.util[{#SNMPINDEX}]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.net.if.in.util[{#SNMPINDEX}]'
            -
              uuid: 4609522ac9a545b3a5b38129e5110174
              name: 'Cisco ASAv: {#CISCO.IF.NAME} Traffic'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.net.if.in.traffic[{#SNMPINDEX}]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.net.if.out.traffic[{#SNMPINDEX}]'
          overrides:
            -
              name: 'Don''t create triggers for matching interface'
              step: '1'
              filter:
                conditions:
                  -
                    macro: '{#CISCO.IF.NAME}'
                    value: '{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}'
                    operator: NOT_MATCHES_REGEX
                    formulaid: A
              operations:
                -
                  operationobject: TRIGGER_PROTOTYPE
                  operator: REGEXP
                  value: '.*'
                  status: ENABLED
                  discover: NO_DISCOVER
        -
          uuid: de837df7c2f84cae86a84c773d7a07dc
          name: 'Physical entry discovery'
          type: SNMP_AGENT
          snmp_oid: 'discovery[{#CISCO.ASAV.PHYS.DESC},.1.3.6.1.2.1.47.1.1.1.1.2,{#CISCO.ASAV.PHYS.CLASS},.1.3.6.1.2.1.47.1.1.1.1.5,{#CISCO.ASAV.PHYS.NAME},.1.3.6.1.2.1.47.1.1.1.1.7]'
          key: cisco.asav.physical.entry.discovery
          delay: 1h
          description: 'Information about a particular physical entity.'
          item_prototypes:
            -
              uuid: 3ac03ebbab6e4868887715f74443011c
              name: 'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical class'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.47.1.1.1.1.5.{#SNMPINDEX}'
              key: 'cisco.asav.phys.class[{#SNMPINDEX}]'
              delay: 1h
              history: 7d
              description: |
                MIB: ENTITY-MIB
                An indication of the general hardware type of the physical
                entity.
                An agent should set this object to the standard enumeration
                value that most accurately indicates the general class of
                the physical entity, or the primary class if there is more
                than one entity.
                If no appropriate standard registration identifier exists
                for this physical entity, then the value 'other(1)' is
                returned.  If the value is unknown by this agent, then the
                value 'unknown(2)' is returned.
              valuemap:
                name: 'Physical class'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: physical
                -
                  tag: physical
                  value: '{#CISCO.ASAV.PHYS.NAME}'
            -
              uuid: a63fe0420f2e446ca10094fbf04ee4a8
              name: 'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical description'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX}'
              key: 'cisco.asav.phys.description[{#SNMPINDEX}]'
              delay: 1h
              history: 7d
              trends: '0'
              value_type: CHAR
              description: |
                MIB: ENTITY-MIB
                A textual description of physical entity.  This object
                should contain a string that identifies the manufacturer's
                name for the physical entity, and should be set to a
                distinct value for each version or model of the physical
                entity.
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: physical
                -
                  tag: physical
                  value: '{#CISCO.ASAV.PHYS.NAME}'
            -
              uuid: 862f2607838647b3b173d113e531c931
              name: 'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Hardware revision'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX}'
              key: 'cisco.asav.phys.hw[{#SNMPINDEX}]'
              delay: 1h
              history: 7d
              trends: '0'
              value_type: CHAR
              description: |
                MIB: ENTITY-MIB
                The vendor-specific hardware revision string for the
                physical entity.  The preferred value is the hardware
                revision identifier actually printed on the component itself
                (if present).
                Note that if revision information is stored internally in a
                non-printable (e.g., binary) format, then the agent must
                convert such information to a printable format, in an
                implementation-specific manner.
                If no specific hardware revision string is associated with
                the physical component, or if this information is unknown to
                the agent, then this object will contain a zero-length
                string.
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: physical
                -
                  tag: physical
                  value: '{#CISCO.ASAV.PHYS.NAME}'
            -
              uuid: d64c4765f78847cc8071913c5454f433
              name: 'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Manufacturer name'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.47.1.1.1.1.12.{#SNMPINDEX}'
              key: 'cisco.asav.phys.mfgname[{#SNMPINDEX}]'
              delay: 1h
              history: 7d
              trends: '0'
              value_type: CHAR
              description: |
                MIB: ENTITY-MIB
                The name of the manufacturer of this physical component.
                The preferred value is the manufacturer name string actually
                printed on the component itself (if present).
                Note that comparisons between instances of the
                entPhysicalModelName, entPhysicalFirmwareRev,
                entPhysicalSoftwareRev, and the entPhysicalSerialNum
                objects, are only meaningful amongst entPhysicalEntries with
                the same value of entPhysicalMfgName.
                If the manufacturer name string associated with the physical
                component is unknown to the agent, then this object will
                contain a zero-length string.
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: physical
                -
                  tag: physical
                  value: '{#CISCO.ASAV.PHYS.NAME}'
            -
              uuid: 73739a08da634cd09b857a7512166d7b
              name: 'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Model name'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX}'
              key: 'cisco.asav.phys.model[{#SNMPINDEX}]'
              delay: 1h
              history: 7d
              trends: '0'
              value_type: CHAR
              description: |
                MIB: ENTITY-MIB
                The vendor-specific model name identifier string associated
                with this physical component.  The preferred value is the
                customer-visible part number, which may be printed on the
                component itself.
                If the model name string associated with the physical
                component is unknown to the agent, then this object will
                contain a zero-length string.
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: physical
                -
                  tag: physical
                  value: '{#CISCO.ASAV.PHYS.NAME}'
            -
              uuid: 21da0a63b5344b099ab21932a4a65dc6
              name: 'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical name'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.47.1.1.1.1.7.{#SNMPINDEX}'
              key: 'cisco.asav.phys.name[{#SNMPINDEX}]'
              delay: 1h
              history: 7d
              trends: '0'
              value_type: CHAR
              description: |
                MIB: ENTITY-MIB
                The textual name of the physical entity.  The value of this
                object should be the name of the component as assigned by
                the local device and should be suitable for use in commands
                entered at the device's `console'.  This might be a text
                name (e.g., `console') or a simple component number (e.g.,
                port or module number, such as `1'), depending on the
                physical component naming syntax of the device.
                If there is no local name, or if this object is otherwise
                not applicable, then this object contains a zero-length
                string.
                Note that the value of entPhysicalName for two physical
                entities will be the same in the event that the console
                interface does not distinguish between them, e.g., slot-1
                and the card in slot-1.
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: physical
                -
                  tag: physical
                  value: '{#CISCO.ASAV.PHYS.NAME}'
            -
              uuid: 9962cc7467c14221bee66a2f17aba12b
              name: 'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Serial number'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}'
              key: 'cisco.asav.phys.sn[{#SNMPINDEX}]'
              delay: 1h
              history: 7d
              trends: '0'
              value_type: CHAR
              description: |
                MIB: ENTITY-MIB
                The vendor-specific serial number string for the physical
                entity.  The preferred value is the serial number string
                actually printed on the component itself (if present).
                On the first instantiation of an physical entity, the value
                of entPhysicalSerialNum associated with that entity is set
                to the correct vendor-assigned serial number, if this
                information is available to the agent.  If a serial number
                is unknown or non-existent, the entPhysicalSerialNum will be
                set to a zero-length string instead.
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: physical
                -
                  tag: physical
                  value: '{#CISCO.ASAV.PHYS.NAME}'
              trigger_prototypes:
                -
                  uuid: c9f9bff9e9cd4519807c5be583670d02
                  expression: 'last(/Cisco ASAv SNMP/cisco.asav.phys.sn[{#SNMPINDEX}],#1)<>last(/Cisco ASAv SNMP/cisco.asav.phys.sn[{#SNMPINDEX}],#2) and length(last(/Cisco ASAv SNMP/cisco.asav.phys.sn[{#SNMPINDEX}]))>0'
                  name: 'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} has been replaced'
                  event_name: 'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} has been replaced (new serial number received)'
                  priority: INFO
                  description: '{#CISCO.ASAV.PHYS.NAME} serial number has changed. Ack to close'
                  manual_close: 'YES'
                  tags:
                    -
                      tag: scope
                      value: notice
            -
              uuid: 698a7613f08048b48d7aad4ad5285562
              name: 'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Software revision'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX}'
              key: 'cisco.asav.phys.sw[{#SNMPINDEX}]'
              delay: 1h
              history: 7d
              trends: '0'
              value_type: CHAR
              description: |
                MIB: ENTITY-MIB
                The vendor-specific software revision string for the
                physical entity.
                Note that if revision information is stored internally in a
                non-printable (e.g., binary) format, then the agent must
                convert such information to a printable format, in an
                implementation-specific manner.
                If no specific software programs are associated with the
                physical component, or if this information is unknown to the
                agent, then this object will contain a zero-length string.
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: physical
                -
                  tag: physical
                  value: '{#CISCO.ASAV.PHYS.NAME}'
        -
          uuid: b49543c7150a4e258645b4b076b2454a
          name: 'Session discovery'
          type: SNMP_AGENT
          snmp_oid: 'discovery[{#CISCO.CRAS.USER},.1.3.6.1.4.1.9.9.392.1.3.21.1.1,{#CISCO.CRAS.INDEX},.1.3.6.1.4.1.9.9.392.1.3.21.1.3]'
          key: cisco.asav.session.discovery
          delay: 1h
          description: 'Remote access session discovery'
          item_prototypes:
            -
              uuid: ff7de8cbf36643e3888451757b802873
              name: 'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] ISP address'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.4.1.9.9.392.1.3.21.1.10.{#SNMPINDEX}'
              key: 'cisco.asav.session.addr.isp[{#SNMPINDEX}]'
              history: 7d
              description: |
                MIB:  CISCO-REMOTE-ACCESS-MONITOR-MIB
                The IP address of the peer (client) assigned by the ISP.
                This is the address of the client device in the public
                network.
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: session
                -
                  tag: session-index
                  value: '{#CISCO.CRAS.INDEX}'
                -
                  tag: session-user
                  value: '{#CISCO.CRAS.USER}'
            -
              uuid: 3071310f4f0e4c14bcf47d07a05568cc
              name: 'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Local address'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.4.1.9.9.392.1.3.21.1.8.{#SNMPINDEX}'
              key: 'cisco.asav.session.addr.local[{#SNMPINDEX}]'
              history: 7d
              description: |
                MIB:  CISCO-REMOTE-ACCESS-MONITOR-MIB
                The IP address assigned to the client of this session
                in the private network assigned by the managed entity.
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: session
                -
                  tag: session-index
                  value: '{#CISCO.CRAS.INDEX}'
                -
                  tag: session-user
                  value: '{#CISCO.CRAS.USER}'
            -
              uuid: 47c84fde7b47415d96d461c28da50526
              name: 'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Algorithm validate packets'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.4.1.9.9.392.1.3.21.1.14.{#SNMPINDEX}'
              key: 'cisco.asav.session.authen.algorithm[{#SNMPINDEX}]'
              history: 7d
              description: |
                MIB:  CISCO-REMOTE-ACCESS-MONITOR-MIB
                The algorithm used by this remote access session to
                to validate packets.
              valuemap:
                name: 'Cisco ASAv algorithm validate packets'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: session
                -
                  tag: session-index
                  value: '{#CISCO.CRAS.INDEX}'
                -
                  tag: session-user
                  value: '{#CISCO.CRAS.USER}'
            -
              uuid: 901b8473e8054e929a55dd3e5d507d5d
              name: 'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authenticate method'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.4.1.9.9.392.1.3.21.1.4.{#SNMPINDEX}'
              key: 'cisco.asav.session.authen.method[{#SNMPINDEX}]'
              history: 7d
              description: |
                MIB:  CISCO-REMOTE-ACCESS-MONITOR-MIB
                The method used to authenticate the user prior to
                establishing the session.
              valuemap:
                name: 'Cisco ASAv user authenticate method'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: session
                -
                  tag: session-index
                  value: '{#CISCO.CRAS.INDEX}'
                -
                  tag: session-user
                  value: '{#CISCO.CRAS.USER}'
            -
              uuid: 452348005b1c4b7db194afcf3c95473d
              name: 'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authorize method'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.4.1.9.9.392.1.3.21.1.5.{#SNMPINDEX}'
              key: 'cisco.asav.session.author.method[{#SNMPINDEX}]'
              history: 7d
              description: |
                MIB:  CISCO-REMOTE-ACCESS-MONITOR-MIB
                The method used to authorize the user prior to
                establishing the session.
              valuemap:
                name: 'Cisco ASAv user authenticate method'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: session
                -
                  tag: session-index
                  value: '{#CISCO.CRAS.INDEX}'
                -
                  tag: session-user
                  value: '{#CISCO.CRAS.USER}'
            -
              uuid: c25050519610453baf3e69042fe77cf0
              name: 'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session duration'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.4.1.9.9.392.1.3.21.1.6.{#SNMPINDEX}'
              key: 'cisco.asav.session.duration[{#SNMPINDEX}]'
              history: 7d
              description: |
                MIB:  CISCO-REMOTE-ACCESS-MONITOR-MIB
                The number of seconds elapsed since this session
                was established.
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              tags:
                -
                  tag: component
                  value: session
                -
                  tag: session-index
                  value: '{#CISCO.CRAS.INDEX}'
                -
                  tag: session-user
                  value: '{#CISCO.CRAS.USER}'
            -
              uuid: 63ea7737e7534608b60744ec3b82ffae
              name: 'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Encryption algorithm'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.4.1.9.9.392.1.3.21.1.13.{#SNMPINDEX}'
              key: 'cisco.asav.session.encryption[{#SNMPINDEX}]'
              history: 7d
              description: |
                MIB:  CISCO-REMOTE-ACCESS-MONITOR-MIB
                The algorithm used by this remote access session to
                encrypt its payload.
              valuemap:
                name: 'Cisco ASAv encryption algorithm'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: session
                -
                  tag: session-index
                  value: '{#CISCO.CRAS.INDEX}'
                -
                  tag: session-user
                  value: '{#CISCO.CRAS.USER}'
            -
              uuid: c7a05da2f7d84743851e7d628d1e9838
              name: 'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Incoming traffic'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.4.1.9.9.392.1.3.21.1.35.{#SNMPINDEX}'
              key: 'cisco.asav.session.in.traffic[{#SNMPINDEX}]'
              history: 7d
              units: bps
              description: |
                MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
                The rate of octets received by this Remote
                Access Session.
                This value is accumulated BEFORE determining whether
                or not the packet should be decompressed.
              preprocessing:
                -
                  type: MULTIPLIER
                  parameters:
                    - '8'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              tags:
                -
                  tag: component
                  value: session
                -
                  tag: session-index
                  value: '{#CISCO.CRAS.INDEX}'
                -
                  tag: session-user
                  value: '{#CISCO.CRAS.USER}'
            -
              uuid: c71e07de9083472a982a827061496d5a
              name: 'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Outgoing traffic'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.4.1.9.9.392.1.3.21.1.36.{#SNMPINDEX}'
              key: 'cisco.asav.session.out.traffic[{#SNMPINDEX}]'
              history: 7d
              units: bps
              description: |
                MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB
                The rate of octets transmitted by this Remote
                Access Session.
                This value is accumulated AFTER determining whether
                or not the packet should be compressed.
              preprocessing:
                -
                  type: MULTIPLIER
                  parameters:
                    - '8'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              tags:
                -
                  tag: component
                  value: session
                -
                  tag: session-index
                  value: '{#CISCO.CRAS.INDEX}'
                -
                  tag: session-user
                  value: '{#CISCO.CRAS.USER}'
            -
              uuid: de873aa34ad64f3d91e11d6999950692
              name: 'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session protocol'
              type: SNMP_AGENT
              snmp_oid: '.1.3.6.1.4.1.9.9.392.1.3.21.1.11.{#SNMPINDEX}'
              key: 'cisco.asav.session.protocol[{#SNMPINDEX}]'
              history: 7d
              description: |
                MIB:  CISCO-REMOTE-ACCESS-MONITOR-MIB
                The protocol underlying this remote access session.
              valuemap:
                name: 'Cisco ASAv session protocol'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 6h
              tags:
                -
                  tag: component
                  value: session
                -
                  tag: session-index
                  value: '{#CISCO.CRAS.INDEX}'
                -
                  tag: session-user
                  value: '{#CISCO.CRAS.USER}'
          graph_prototypes:
            -
              uuid: bed8a06cbbc24144813d0c515bd09328
              name: 'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Traffic'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.session.in.traffic[{#SNMPINDEX}]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'Cisco ASAv SNMP'
                    key: 'cisco.asav.session.out.traffic[{#SNMPINDEX}]'
      tags:
        -
          tag: class
          value: application
        -
          tag: target
          value: cisco
        -
          tag: target
          value: cisco-asav
      macros:
        -
          macro: '{$CISCO.LLD.FILTER.IF.ADMIN.MATCHES}'
          value: '1'
          description: |
            Filter of discoverable interfaces by admin status.
            1 - Up
            2 - Down
            3 - Testing
        -
          macro: '{$CISCO.LLD.FILTER.IF.ADMIN.NOT_MATCHES}'
          value: CHANGE_IF_NEEDED
          description: 'Filter to exclude discovered interfaces by admin status.'
        -
          macro: '{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}'
          value: '.*'
          description: |
            Filter triggers by discoverable interface names.
            Used in overrides. Triggers will only be created for interfaces whose names contain the value of the macro.
        -
          macro: '{$CISCO.LLD.FILTER.IF.DESC.MATCHES}'
          value: '.*'
          description: 'Filter by discoverable interface description.'
        -
          macro: '{$CISCO.LLD.FILTER.IF.DESC.NOT_MATCHES}'
          value: CHANGE_IF_NEEDED
          description: 'Filter to exclude discovered interfaces by description.'
        -
          macro: '{$CISCO.LLD.FILTER.IF.NAME.MATCHES}'
          value: '.*'
          description: 'Filter by discoverable interface names.'
        -
          macro: '{$CISCO.LLD.FILTER.IF.NAME.NOT_MATCHES}'
          value: CHANGE_IF_NEEDED
          description: 'Filter to exclude discovered interfaces by name.'
        -
          macro: '{$CPU.UTIL.CRIT}'
          value: '90'
        -
          macro: '{$MEMORY.UTIL.MAX}'
          value: '90'
        -
          macro: '{$SNMP.TIMEOUT}'
          value: 5m
          description: 'The time interval for SNMP agent availability trigger expression.'
      valuemaps:
        -
          uuid: 764f7c162b8a45d9b41e795cf2f5f8da
          name: 'Cisco ASAv algorithm validate packets'
          mappings:
            -
              value: '1'
              newvalue: none
            -
              value: '2'
              newvalue: other
            -
              value: '3'
              newvalue: hmacMd5
            -
              value: '4'
              newvalue: hmacSha
        -
          uuid: f38e3c5200c941aa831857698eb3ea8b
          name: 'Cisco ASAv encryption algorithm'
          mappings:
            -
              value: '1'
              newvalue: none
            -
              value: '2'
              newvalue: des
            -
              value: '3'
              newvalue: des3
            -
              value: '4'
              newvalue: rc4
            -
              value: '5'
              newvalue: rc5
            -
              value: '6'
              newvalue: idea
            -
              value: '7'
              newvalue: cast
            -
              value: '8'
              newvalue: blowfish
            -
              value: '9'
              newvalue: aes
        -
          uuid: 8395b87d3ff3496aabafdfd1d2e1c4be
          name: 'Cisco ASAv port admin status'
          mappings:
            -
              value: '1'
              newvalue: Up
            -
              value: '2'
              newvalue: Down
            -
              value: '3'
              newvalue: Testing
        -
          uuid: e97c331986454b68917c771c3bba9a3d
          name: 'Cisco ASAv port operational status'
          mappings:
            -
              value: '1'
              newvalue: Up
            -
              value: '2'
              newvalue: Down
            -
              value: '3'
              newvalue: Testing
            -
              value: '4'
              newvalue: Unknown
            -
              value: '5'
              newvalue: Dormant
            -
              value: '6'
              newvalue: NotPresent
            -
              value: '7'
              newvalue: lowerLayerDown
        -
          uuid: 22e5704487924e4ebca70e2062d40da4
          name: 'Cisco ASAv session protocol'
          mappings:
            -
              value: '1'
              newvalue: other
            -
              value: '2'
              newvalue: ipsec
            -
              value: '3'
              newvalue: l2tp
            -
              value: '4'
              newvalue: l2tpoveripsxe
            -
              value: '5'
              newvalue: pptp
            -
              value: '6'
              newvalue: l2f
            -
              value: '7'
              newvalue: ssl
        -
          uuid: 8dd72ccb744e4bd989ea739e21da7820
          name: 'Cisco ASAv user authenticate method'
          mappings:
            -
              value: '1'
              newvalue: none
            -
              value: '2'
              newvalue: other
            -
              value: '3'
              newvalue: radius
            -
              value: '4'
              newvalue: tacacsplus
            -
              value: '5'
              newvalue: kerberos
            -
              value: '6'
              newvalue: local
            -
              value: '7'
              newvalue: ldap
            -
              value: '8'
              newvalue: ntlm
            -
              value: '9'
              newvalue: sdi
        -
          uuid: 3c3b7c75af4b4fedb12e30fb74406a23
          name: 'Physical class'
          mappings:
            -
              value: '1'
              newvalue: other
            -
              value: '2'
              newvalue: unknown
            -
              value: '3'
              newvalue: chassis
            -
              value: '4'
              newvalue: backplane
            -
              value: '5'
              newvalue: container
            -
              value: '6'
              newvalue: powerSupply
            -
              value: '7'
              newvalue: fan
            -
              value: '8'
              newvalue: sensor
            -
              value: '9'
              newvalue: module
            -
              value: '10'
              newvalue: port
            -
              value: '11'
              newvalue: stack
            -
              value: '12'
              newvalue: cpu
        -
          uuid: 91e8696b05654efca8f03b700ea74b0b
          name: 'SNMP available'
          mappings:
            -
              value: '0'
              newvalue: 'not available'
            -
              value: '1'
              newvalue: available
            -
              value: '2'
              newvalue: unknown