forked from vbarahona/Panos2Grafana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPAN-COMMON-MIB.my
2629 lines (2276 loc) · 85.9 KB
/
PAN-COMMON-MIB.my
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
-- ***********************************************
-- PAN-COMMON-MIB.my
--
-- MIB for the common MIB objects implemented by all
-- Palo Alto devices.
-- ***********************************************
PAN-COMMON-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-IDENTITY,
OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32
FROM SNMPv2-SMI
-- MODULE-COMPLIANCE, OBJECT-GROUP
-- FROM SNMPv2-CONF
TEXTUAL-CONVENTION
FROM SNMPv2-TC
DisplayString, TruthValue, TimeStamp
FROM SNMPv2-TC
TcChassisType
FROM PAN-GLOBAL-TC
panModules, panCommonMib
FROM PAN-GLOBAL-REG;
panCommonMibModule MODULE-IDENTITY
LAST-UPDATED "201409040000Z"
ORGANIZATION "Palo Alto Networks"
CONTACT-INFO "
Customer Support
Palo Alto Networks
4401 Great America Pkwy
Santa Clara, CA 95054-1211
+1 866-898-9087
support at paloaltonetworks dot com"
DESCRIPTION "
A MIB module containing definitions of managed objects
implemented by all Palo Alto Networks' products."
REVISION "201406300000Z"
DESCRIPTION "
Rev 2.3
Added entries for Log Collector."
REVISION "201409040000Z"
DESCRIPTION "
Rev 2.2
Added entries for Wildfire content versions.
Added entry for new platform PA 3060."
REVISION "201403060000Z"
DESCRIPTION "
Rev 2.1
Fixed a capitalization error with PanVsysEntry."
REVISION "201303010000Z"
DESCRIPTION "
Rev 2.0
Updated with panGlobalProtect and panVsysTable."
REVISION "201102091610Z"
DESCRIPTION "
Rev 1.0
Initial version of MIB module PAN-COMMON-MIB."
::= { panModules 3 }
FloatValue ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-2"
STATUS current
DESCRIPTION
" This data type is used to represent Float values."
SYNTAX OCTET STRING (SIZE(0..64))
panCommonConfMib OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for MIB conformance statements."
::= { panCommonMib 1 }
panCommonObjs OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common MIB objects."
::= { panCommonMib 2 }
panCommonEvents OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common MIB events."
::= { panCommonMib 3 }
-- Top level groups
panSys OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common system objects."
::= { panCommonObjs 1 }
panChassis OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common chassis information."
::= { panCommonObjs 2 }
panSession OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common session information."
::= { panCommonObjs 3 }
panMgmt OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common Management plane information."
::= { panCommonObjs 4 }
panGlobalProtect OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common GlobalProtect information."
::= { panCommonObjs 5 }
panLogCollector OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common Log Collector information."
::= { panCommonObjs 6 }
panDeviceLogging OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common Device information."
::= { panCommonObjs 7 }
panSSLBroker OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree to capture ssl broker statistics."
::= { panCommonObjs 8 }
panGlobalCounters OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common Global counters."
::= { panSys 19 }
----------------------------------------------------------------------
-- System objects
panSysSwVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Full software version. The first two components of the full
version are the major and minor versions. The third component
indicates the maintenance release number and the fourth,
the build number."
::= { panSys 1 }
panSysHwVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware version of the unit."
::= { panSys 2 }
panSysSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the unit. If not available,
an empty string is returned."
::= { panSys 3 }
panSysTimeZoneOffset OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The offset in seconds from UTC of the system's time zone.
Values are negative for locations west of UTC and positive
for locations east of UTC."
::= { panSys 4 }
panSysDaylightSaving OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether daylight savings are in currently in effect for the
system's time zone."
::= { panSys 5 }
panSysVpnClientVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed VPN client package version. If
package is not installed, 0.0.0 is returned."
::= { panSys 6 }
panSysAppVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed application definition version. If
no application definition is found, 0 is returned."
::= { panSys 7 }
panSysAvVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed antivirus version. If no antivirus
is found, 0 is returned."
::= { panSys 8 }
panSysThreatVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed threat definition version. If no
threat definition is found, 0 is returned."
::= { panSys 9 }
panSysUrlFilteringVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed URL filtering version. If no URL
filtering is installed, 0 is returned."
::= { panSys 10 }
panSysHAState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current high-availability state."
::= { panSys 11 }
panSysHAPeerState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current peer high-availability state."
::= { panSys 12 }
panSysHAMode OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current high-availability mode (disabled,
active-passive, or active-active)."
::= { panSys 13 }
panSysUrlFilteringDatabase OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current installed URL filtering database
(surfcontrol, brightcloud, etc)"
::= { panSys 14 }
panSysGlobalProtectClientVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed global-protect client package version.
If package is not installed, 0.0.0 is returned."
::= { panSys 15 }
panSysOpswatDatafileVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed opswat database version.
If package is not installed, 0 is returned."
::= { panSys 16 }
panSysWildfireVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed wildfire content version. If no wildfire content
is found, 0 is returned."
::= { panSys 17 }
panSysWildfirePrivateCloudVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed wildfire private cloud content version. If no wpc
is found, 0 is returned."
::= { panSys 18 }
panSysAppReleaseDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed application definition release date. If
no release date is found, unknown is returned."
::= { panSys 20 }
panSysThreatReleaseDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed threat release date. If
no release date is found, unknown is returned."
::= { panSys 21 }
panSysAvReleaseDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed antivirus release date. If
no release date is found, unknown is returned."
::= { panSys 22 }
panSysWfReleaseDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed WildFire release date. If
no release date is found, unknown is returned."
::= { panSys 23 }
----------------------------------------------------------------------
-- Chassis
panChassisType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Chassis type for this Palo Alto device."
::= { panChassis 1 }
panMSeriesMode OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Series Mode for this Palo Alto device."
::= { panChassis 2 }
----------------------------------------------------------------------
-- Session
panSessionUtilization OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session table utilization percentage. Values should
be between 0 and 100."
::= { panSession 1 }
panSessionMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of sessions supported."
::= { panSession 2 }
panSessionActive OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of active sessions."
::= { panSession 3 }
panSessionActiveTcp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of active TCP sessions."
::= { panSession 4 }
panSessionActiveUdp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of active UDP sessions."
::= { panSession 5 }
panSessionActiveICMP OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of active ICMP sessions."
::= { panSession 6 }
panSessionActiveSslProxy OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of active SSL proxy sessions."
::= { panSession 7 }
panSessionSslProxyUtilization OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SSL proxy Session utilization percentage. Values should
be between 0 and 100."
::= { panSession 8 }
panVsysTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanVsysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"VSYS table"
::= { panSession 9 }
panZoneTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanZoneEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for the current active connectionsPerSecond (CPS) values
for each zone present."
::= { panSession 10 }
panIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for the current active connectionsPerSecond (CPS) values
for each interface present."
::= { panSession 11 }
----------------------------------------------------------------------
-- VsysTable
panVsysEntry OBJECT-TYPE
SYNTAX PanVsysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when the Vsys's are added to the
entVsysTable."
INDEX { panVsysId }
::= { panVsysTable 1 }
PanVsysEntry ::= SEQUENCE {
panVsysId Integer32,
panVsysName DisplayString,
panVsysSessionUtilizationPct Integer32,
panVsysActiveSessions Integer32,
panVsysMaxSessions Integer32,
panVsysActiveTcpCps Integer32,
panVsysActiveUdpCps Integer32,
panVsysActiveOtherIpCps Integer32
}
panVsysId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Vsys id"
::= { panVsysEntry 1 }
panVsysName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"User assigned vsys name (empty string if not available)"
::= { panVsysEntry 2 }
panVsysSessionUtilizationPct OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Vsys utilization percentage, if session limit is configured.
If session limit is not configured, this value is '0'"
::= { panVsysEntry 3 }
panVsysActiveSessions OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active sessions on this Vsys"
::= { panVsysEntry 4 }
panVsysMaxSessions OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max sessions on this Vsys, if session limit is configured.
If session limit is not configured, this value is '0'"
::= { panVsysEntry 5 }
panVsysActiveTcpCps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active Tcp Connections per second for thie vSys."
::= { panVsysEntry 6 }
panVsysActiveUdpCps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active Udp Connections per second for thie vSys."
::= { panVsysEntry 7 }
panVsysActiveOtherIpCps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active Other IP Connections per second for thie vSys."
::= { panVsysEntry 8 }
----------------------------------------------------------------------
-- Mgmt
panMgmtPanoramaConnected OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Connection status to Panorama Server (connected, not-connected)"
::= { panMgmt 1 }
panMgmtPanorama2Connected OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Connection status to Panorama2 Server (connected, not-connected)"
::= { panMgmt 2 }
----------------------------------------------------------------------
-- GlobalProtect
panGPGatewayUtilization OBJECT-IDENTITY
STATUS current
DESCRIPTION
"GlobalProtect gateway utilization"
::= { panGlobalProtect 1 }
----------------------------------------------------------------------
-- GlobalProtect gateway utilization
panGPGWUtilizationPct OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"GlobalProtect Gateway utilization percentage"
::= { panGPGatewayUtilization 1 }
panGPGWUtilizationMaxTunnels OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max tunnels allowed"
::= { panGPGatewayUtilization 2 }
panGPGWUtilizationActiveTunnels OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active tunnels"
::= { panGPGatewayUtilization 3 }
--------------------------------------------------------------------
-- Device Logging MIB
panDeviceLoggingLogRate OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for Device Logging Rate statistics."
::= { panDeviceLogging 1 }
panDeviceLoggingLogTypeStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanDeviceLoggingLogTypeStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for the statistics for different log types on the Device."
::= { panDeviceLogging 2 }
panDeviceLoggingLogUsageTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanDeviceLoggingLogUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for Log Usage and days retained for different log types on the Device.
Log Disk Usage is avaiable as MB (in use)."
::= { panDeviceLogging 3 }
panDeviceLoggingExtFwd OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for tracking dropped logs as ther are forwarded from device."
::= { panDeviceLogging 4 }
panDeviceLoggingCollectorConnectionTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanDeviceLoggingCollectorConnectionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for tracking various log collection entities connected to device."
::= { panDeviceLogging 5 }
---------------------------------------------------------------------------
-- panSSLBroker
panSSLBrokerStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanSSLBrokerStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Sub-tree for capturing ssl broker statistics and status."
::= { panSSLBroker 1 }
panSSLBrokerStatsEntry OBJECT-TYPE
SYNTAX PanSSLBrokerStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of ssl broker statistics and status."
INDEX { index }
::= { panSSLBrokerStatsTable 1 }
PanSSLBrokerStatsEntry ::= SEQUENCE {
index Integer32,
chainName DisplayString,
avgLatency Integer32,
sessionCount Integer32
}
index OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the ssl broker stats entry"
::= { panSSLBrokerStatsEntry 1 }
chainName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of ssl broker chain object"
::= { panSSLBrokerStatsEntry 2 }
avgLatency OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average latency value"
::= { panSSLBrokerStatsEntry 3 }
sessionCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active sessions"
::= { panSSLBrokerStatsEntry 4 }
---------------------------------------------------------------------------
-- panDeviceLoggingLogRate
panDeviceIncomingLogRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The incoming rate in logs/s on the Device."
::= { panDeviceLoggingLogRate 1 }
panDeviceWriteLogRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The write rate in logs/s on the Device."
::= { panDeviceLoggingLogRate 2 }
---------------------------------------------------------------------------
-- panDeviceLoggingLogTypeStatTable
panDeviceLoggingLogTypeStatEntry OBJECT-TYPE
SYNTAX PanDeviceLoggingLogTypeStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when the panLcLogUsage are added to the panLcLogUsageTable."
INDEX { panDeviceLoggingDevice, panDeviceLoggingLogType }
::= { panDeviceLoggingLogTypeStatTable 1 }
PanDeviceLoggingLogTypeStatEntry ::= SEQUENCE {
panDeviceLoggingDevice DisplayString,
panDeviceLoggingDeviceIndex Integer32,
panDeviceLoggingLogType DisplayString,
panDeviceLoggingLogLastLogCreated TimeStamp,
panDeviceLoggingLogLastLogFwded TimeStamp,
panDeviceLoggingLogLastSeqNumberFwded Counter64,
panDeviceLoggingLogLastSeqNumberAck Counter64,
panDeviceLoggingLogTotalLogsFwded Counter64
}
panDeviceLoggingDevice OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device Information (Name or Serial Number)."
::= { panDeviceLoggingLogTypeStatEntry 1 }
panDeviceLoggingDeviceIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index as mentioned in panDeviceLoggingCollectorConnection table."
::= { panDeviceLoggingLogTypeStatEntry 2 }
panDeviceLoggingLogType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of log."
::= { panDeviceLoggingLogTypeStatEntry 3 }
panDeviceLoggingLogLastLogCreated OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time of the last log creation."
::= { panDeviceLoggingLogTypeStatEntry 4 }
panDeviceLoggingLogLastLogFwded OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time at which last log was forwarded."
::= { panDeviceLoggingLogTypeStatEntry 5 }
panDeviceLoggingLogLastSeqNumberFwded OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sequence number of the last log that was forwarded."
::= { panDeviceLoggingLogTypeStatEntry 6 }
panDeviceLoggingLogLastSeqNumberAck OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sequence number of the last log that was acknowledged."
::= { panDeviceLoggingLogTypeStatEntry 7 }
panDeviceLoggingLogTotalLogsFwded OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of logs forwarded."
::= { panDeviceLoggingLogTypeStatEntry 8 }
--------------------------------------------------------------------
-- PanDeviceLoggingLogUsageEntry
panDeviceLoggingLogUsageEntry OBJECT-TYPE
SYNTAX PanDeviceLoggingLogUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when the panDeviceLoggingLogUsage are added to the panDeviceLoggingLogUsageTable."
INDEX { panDeviceLoggingLogUsageLogType }
::= { panDeviceLoggingLogUsageTable 1 }
PanDeviceLoggingLogUsageEntry ::= SEQUENCE {
panDeviceLoggingLogUsageLogType DisplayString,
panDeviceLoggingDiskUsageDiskSpace FloatValue,
panDeviceLoggingDiskUsageRetention Unsigned32,
panDeviceLoggingDiskQuotaPct FloatValue,
panDeviceLoggingDiskQuota FloatValue
}
panDeviceLoggingLogUsageLogType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Log type for Device. "
::= { panDeviceLoggingLogUsageEntry 1 }
panDeviceLoggingDiskUsageDiskSpace OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk Usage (MB) for particular log type for Device. "
::= { panDeviceLoggingLogUsageEntry 2 }
panDeviceLoggingDiskUsageRetention OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Log Rentention for particular log type for Device. "
::= { panDeviceLoggingLogUsageEntry 3 }
panDeviceLoggingDiskQuotaPct OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk Quota percentage for particular log type for Device. "
::= { panDeviceLoggingLogUsageEntry 4 }
panDeviceLoggingDiskQuota OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk Quota for particular log type for Device. "
::= { panDeviceLoggingLogUsageEntry 5 }
----------------------------------------------------------------------
-- panDeviceLoggingExtFwd
panDeviceLoggingExtFwdCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total count for logs forwarded."
::= { panDeviceLoggingExtFwd 1 }
panDeviceLoggingExtFwdQueueDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for logs dropped due to queue being full."
::= { panDeviceLoggingExtFwd 2 }
panDeviceLoggingExtFwdStatsSendErr OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for logs discarded due to sending error."
::= { panDeviceLoggingExtFwd 3 }
panDeviceLoggingExtFwdStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanDeviceLoggingExtFwdStatsEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This table shows the status of logs as they are forwarded via syslog, Traps, email and
http/https from this Device."
::= { panDeviceLoggingExtFwd 4 }
--------------------------------------------------------------------
-- panDeviceLoggingExtFwdStatsTable
panDeviceLoggingExtFwdStatsEntry OBJECT-TYPE
SYNTAX PanDeviceLoggingExtFwdStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when panDeviceLoggingExtFwdStats are added to panDeviceLoggingExtFwdStatsTable."
INDEX { panDeviceLoggingExtFwdStatsTableType }
::= { panDeviceLoggingExtFwdStatsTable 1 }
PanDeviceLoggingExtFwdStatsEntry ::= SEQUENCE {
panDeviceLoggingExtFwdStatsTableType DisplayString,
panDeviceLoggingExtFwdStatsTableEnqueueCount Counter64,
panDeviceLoggingExtFwdStatsTableSendCount Counter64,
panDeviceLoggingExtFwdStatsTableDropCount Counter64,
panDeviceLoggingExtFwdStatsTableQueueDepth Counter64,
panDeviceLoggingExtFwdStatsTable1minAvgSendRate Unsigned32
}
panDeviceLoggingExtFwdStatsTableType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of method used to forward logs."
::= { panDeviceLoggingExtFwdStatsEntry 1 }
panDeviceLoggingExtFwdStatsTableEnqueueCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for number of logs enqueued."
::= { panDeviceLoggingExtFwdStatsEntry 2 }
panDeviceLoggingExtFwdStatsTableSendCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for number of logs sent."
::= { panDeviceLoggingExtFwdStatsEntry 3 }
panDeviceLoggingExtFwdStatsTableDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for number of logs dropped."
::= { panDeviceLoggingExtFwdStatsEntry 4 }
panDeviceLoggingExtFwdStatsTableQueueDepth OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for depth of queue."
::= { panDeviceLoggingExtFwdStatsEntry 5 }
panDeviceLoggingExtFwdStatsTable1minAvgSendRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for average send rate over 1 minute interval."
::= { panDeviceLoggingExtFwdStatsEntry 6 }
-------------------------------------------------------------------
-- panDeviceLoggingCollectorConnectionTable
panDeviceLoggingCollectorConnectionEntry OBJECT-TYPE
SYNTAX PanDeviceLoggingCollectorConnectionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when the panDeviceLogging are added to the panDeviceLoggingCollectorConnectionTable."
INDEX { panDeviceLoggingCollectorConnectionIP }
::= { panDeviceLoggingCollectorConnectionTable 1 }
PanDeviceLoggingCollectorConnectionEntry ::= SEQUENCE {
panDeviceLoggingCollectorConnectionType DisplayString,
panDeviceLoggingCollectorConnectionIP DisplayString,
panDeviceLoggingCollectorConnectionHostname DisplayString,
panDeviceLoggingCollectorConnectionStatus DisplayString
}
panDeviceLoggingCollectorConnectionType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of log collection entity (CMS/LC)."