forked from simonjj/SnmpMibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ASYNCOSWEBSECURITYAPPLIANCE-MIB.mib
1849 lines (1587 loc) · 69.6 KB
/
ASYNCOSWEBSECURITYAPPLIANCE-MIB.mib
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
ASYNCOSWEBSECURITYAPPLIANCE-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises, Unsigned32, TimeTicks, Gauge32, Counter32,
MODULE-IDENTITY, OBJECT-TYPE, Integer32
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC;
asyncOSWebSecurityAppliance MODULE-IDENTITY
LAST-UPDATED "200901080000Z"
ORGANIZATION "IronPort Systems, Inc."
CONTACT-INFO
"IronPort Systems, Inc.
Postal: 950 Elm Avenue
San Bruno, CA 94066
USA
Tel: +1 650-989-6500
E-mail: info@ironport.com"
DESCRIPTION
"Ironport WSA MIB defined for the management of the IronPort S-series Web Security Appliance. See http://www.ironport.com/."
REVISION "200901080000Z"
DESCRIPTION
"MIB Version 0.1"
::= { asyncOSAppliances 2 }
org OBJECT IDENTIFIER ::= { iso 3 }
dod OBJECT IDENTIFIER ::= { org 6 }
internet OBJECT IDENTIFIER ::= { dod 1 }
private OBJECT IDENTIFIER ::= { internet 4 }
enterprises OBJECT IDENTIFIER ::= { private 1 }
ironPort OBJECT IDENTIFIER ::= { enterprises 15497 }
asyncOSAppliances OBJECT IDENTIFIER ::= { ironPort 1 }
-- asyncOSWebSecurityAppliance OBJECT IDENTIFIER ::= { asyncOSAppliances 2 }
--
-- OID Assignments
--
proxySystem OBJECT IDENTIFIER ::= { asyncOSWebSecurityAppliance 1 }
proxyConfig OBJECT IDENTIFIER ::= { asyncOSWebSecurityAppliance 2 }
proxyPerf OBJECT IDENTIFIER ::= { asyncOSWebSecurityAppliance 3 }
proxyHardware OBJECT IDENTIFIER ::= { asyncOSWebSecurityAppliance 4 }
proxyTraps OBJECT IDENTIFIER ::= { asyncOSWebSecurityAppliance 5 }
--
-- cacheSystem group { asyncOSWebSecurityAppliance 1 }
--
cacheUptime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Uptime of the proxy in timeticks"
::= { proxySystem 1 }
cacheMemory OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System Memory size in KB"
::= { proxySystem 2 }
cacheSysStorage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Caching Storage size in KB"
::= { proxySystem 3 }
-- end of proxySystem group
--
-- The Proxy Config group
--
cacheAdmin OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The contact responsible for the administration of the proxy. Usually a name and email address."
::= { proxyConfig 1 }
cacheSoftware OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the proxy sofware."
::= { proxyConfig 2 }
cacheVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Version of the proxy software."
::= { proxyConfig 3 }
licenseExpiration OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When does the license expire."
::= { proxyConfig 4 }
--
-- The Proxy Performance group { asyncOSWebSecurityAppliance 3 }
--
proxySysPerf OBJECT IDENTIFIER ::= { proxyPerf 1 }
proxyClientSidePerf OBJECT IDENTIFIER ::= { proxyPerf 2 }
proxyServerSidePerf OBJECT IDENTIFIER ::= { proxyPerf 3 }
proxyCachePerf OBJECT IDENTIFIER ::= { proxyPerf 4 }
proxyMedianSvcTime OBJECT IDENTIFIER ::= { proxyPerf 5 }
proxyExecutiveSummary OBJECT IDENTIFIER ::= { proxyPerf 6 }
proxyRecentPerf OBJECT IDENTIFIER ::= { proxyPerf 7 }
--
-- The peformance of the proxy process
--
cacheCpuTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Amount of cpu seconds consumed"
::= { proxySysPerf 1 }
cacheCpuUsage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage use of the CPU"
::= { proxySysPerf 2 }
cacheMaxResSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum Resident Size in KB"
::= { proxySysPerf 3 }
cacheUsedStoragePct OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage use of caching storage"
::= { proxySysPerf 4 }
cacheBusyCPUPct OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage busy time of CPU"
::= { proxySysPerf 5 }
--
-- Statistics for the Client side of the Proxy
--
cacheClientSizeHistTable OBJECT-TYPE
SYNTAX SEQUENCE OF CacheClientSizeHistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of median statistics serviced by the proxy indexed by the median time."
::= { proxyClientSidePerf 1 }
cacheClientSizeHistEntry OBJECT-TYPE
SYNTAX CacheClientSizeHistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the cacheCacheSizeHistTable."
INDEX { cacheClientSizeHistBinNumber }
::= { cacheClientSizeHistTable 1 }
CacheClientSizeHistEntry ::= SEQUENCE {
cacheClientSizeHistBinNumber Integer32,
cacheClientReqSize Integer32
}
cacheClientSizeHistBinNumber OBJECT-TYPE
SYNTAX Integer32 (1..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value used to index the table 1..15."
::= { cacheClientSizeHistEntry 1 }
cacheClientReqSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size distribution of requests from the clients."
::= { cacheClientSizeHistEntry 2 }
cacheClientRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of HTTP requests received from clients."
::= { proxyClientSidePerf 2 }
cacheClientHits OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of HTTP hits that the proxy clients have produced."
::= { proxyClientSidePerf 3 }
cacheClientErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of HTTP errors caused by client connections."
::= { proxyClientSidePerf 4 }
cacheClientInKb OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of KBs received from the clients by the proxy."
::= { proxyClientSidePerf 5 }
cacheClientOutKb OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of KBs delivered to clients from the proxy."
::= { proxyClientSidePerf 6 }
cacheClientIdleConns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of idle client persistent connections."
::= { proxyClientSidePerf 7 }
cacheClientTotalConns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of total client connections."
::= { proxyClientSidePerf 8 }
cacheClientMaxConns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximal number of client connections."
::= { proxyClientSidePerf 9 }
cacheClientAccepts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of sockets accepted from the clients."
::= { proxyClientSidePerf 10 }
cacheClientICPRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ICP requests received from clients."
::= { proxyClientSidePerf 11 }
cacheClientICPHits OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ICP hits that the proxy clients have produced."
::= { proxyClientSidePerf 12 }
cacheClientICPMisses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ICP misses that the proxy clients have produced."
::= { proxyClientSidePerf 13 }
cacheClientICPErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ICP errors that the proxy clients have produced."
::= { proxyClientSidePerf 14 }
cacheClientICPDenials OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ICP denials that the proxy clients have produced."
::= { proxyClientSidePerf 15 }
--
-- Statistics for the Server side of the Proxy
--
cacheServerSizeHistTable OBJECT-TYPE
SYNTAX SEQUENCE OF CacheServerSizeHistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of median statistics serviced by the proxy indexed by the median time."
::= { proxyServerSidePerf 1 }
cacheServerSizeHistEntry OBJECT-TYPE
SYNTAX CacheServerSizeHistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the cacheCacheSizeHistTable."
INDEX { cacheServerSizeHistBinNumber }
::= { cacheServerSizeHistTable 1 }
CacheServerSizeHistEntry ::= SEQUENCE {
cacheServerSizeHistBinNumber Integer32,
cacheServerReplySize Integer32
}
cacheServerSizeHistBinNumber OBJECT-TYPE
SYNTAX Integer32 (1..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value used to index the table 1..15."
::= { cacheServerSizeHistEntry 1 }
cacheServerReplySize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size distribution of replies from the Servers."
::= { cacheServerSizeHistEntry 2 }
cacheServerRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of HTTP requests sent to servers."
::= { proxyServerSidePerf 2 }
cacheServerSockets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of sockets opened from the servers."
::= { proxyServerSidePerf 3 }
cacheServerErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of HTTP errors while fetching objects."
::= { proxyServerSidePerf 4 }
cacheServerInKb OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of KBs received by the proxy from remote servers."
::= { proxyServerSidePerf 5 }
cacheServerOutKb OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of KBs sent the proxy to remote servers."
::= { proxyServerSidePerf 6 }
cacheServerIdleConns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of idle server persistent connections."
::= { proxyServerSidePerf 7 }
cacheServerTotalConns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of server connections."
::= { proxyServerSidePerf 8 }
cacheServerCloseIdleConns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number server closed idle connections."
::= { proxyServerSidePerf 9 }
cacheServerLimitIdleConns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the number of idle persistent connections hit the limit."
::= { proxyServerSidePerf 10 }
cacheServerConnsThresh OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The limit on the number of server connections."
::= { proxyServerSidePerf 11 }
cacheServerPersisConnsRetries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of retries on persistent connections."
::= { proxyServerSidePerf 12 }
cacheServerRegConnsRetries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of retries on regular connections."
::= { proxyServerSidePerf 13 }
cacheServerRWErrorRetries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of retries due to read/write errors."
::= { proxyServerSidePerf 14 }
cacheServerEarlyCloseRetries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of retries due to early closed connections."
::= { proxyServerSidePerf 15 }
cacheServerICPRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ICP requests sent to servers."
::= { proxyServerSidePerf 16 }
cacheServerICPHits OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ICP hits that the proxy servers have produced."
::= { proxyServerSidePerf 17 }
cacheServerICPMisses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ICP misses that the proxy servers have produced."
::= { proxyServerSidePerf 18 }
cacheServerICPErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ICP errors that the proxy servers have produced."
::= { proxyServerSidePerf 19 }
cacheServerICPDenials OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ICP denials that the proxy servers have produced."
::= { proxyServerSidePerf 20 }
--
-- Protocol Statistics for the Proxy
--
cacheCacheSizeHistTable OBJECT-TYPE
SYNTAX SEQUENCE OF CacheCacheSizeHistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of median statistics serviced by the proxy indexed by the median time."
::= { proxyCachePerf 1 }
cacheCacheSizeHistEntry OBJECT-TYPE
SYNTAX CacheCacheSizeHistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the cacheCacheSizeHistTable."
INDEX { cacheSizeHistBinNumber }
::= { cacheCacheSizeHistTable 1 }
CacheCacheSizeHistEntry ::= SEQUENCE {
cacheSizeHistBinNumber Integer32,
cacheCacheActiveObjs Integer32,
cacheCacheAllObjs Integer32
}
cacheSizeHistBinNumber OBJECT-TYPE
SYNTAX Integer32 (1..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value used to index the table 1..15."
::= { cacheCacheSizeHistEntry 1 }
cacheCacheActiveObjs OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size distribution of currently cached objects."
::= { cacheCacheSizeHistEntry 2 }
cacheCacheAllObjs OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size distribution of all cached objects."
::= { cacheCacheSizeHistEntry 3 }
cacheCacheLiveCachedObjs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of objects currently cached."
::= { proxyCachePerf 2 }
cacheCacheLiveCachedObjSizes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total size in KBs of currently cached objects."
::= { proxyCachePerf 3 }
cacheCacheTotalCachedObjs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of cached objects written to disks."
::= { proxyCachePerf 4 }
cacheCacheTotalCachedObjSizes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total size in KBs of all objects ever cached and written to disks."
::= { proxyCachePerf 5 }
--
-- Median statistics served by the proxy.
--
cacheMedianSvcTable OBJECT-TYPE
SYNTAX SEQUENCE OF CacheMedianSvcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of median statistics serviced by the proxy indexed by the median time."
::= { proxyMedianSvcTime 1 }
cacheMedianSvcEntry OBJECT-TYPE
SYNTAX CacheMedianSvcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the proxyMedianSvcTable."
INDEX { cacheMedianTime }
::= { cacheMedianSvcTable 1 }
CacheMedianSvcEntry ::= SEQUENCE {
cacheMedianTime Integer32,
cacheHTTPCltSvcTime Integer32,
cacheHTTPMissSvcTime Integer32,
cacheHTTPHitSvcTime Integer32,
cacheHTTPSrvSvcTime Integer32,
cacheDnsSvcTime Integer32,
cacheHTTPSvcWaitTime Integer32
}
cacheMedianTime OBJECT-TYPE
SYNTAX Integer32 (1..60)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value used to index the table 1/5/60"
::= { cacheMedianSvcEntry 1 }
cacheHTTPCltSvcTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The service time for all HTTP requests."
::= { cacheMedianSvcEntry 2 }
cacheHTTPMissSvcTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The service time for all HTTP misses."
::= { cacheMedianSvcEntry 3 }
cacheHTTPHitSvcTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The service time for all HTTP hits."
::= { cacheMedianSvcEntry 4 }
cacheHTTPSrvSvcTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The service time from servers."
::= { cacheMedianSvcEntry 5 }
cacheDnsSvcTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DNS service time."
::= { cacheMedianSvcEntry 6 }
cacheHTTPSvcWaitTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time waiting for first byte response from servers."
::= { cacheMedianSvcEntry 7 }
--
-- The executive summary of the proxy performance
--
cacheTotalHttpReqs OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of HTTP requests from clients"
::= { proxyExecutiveSummary 1 }
cacheMeanRespTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The HTTP mean response time"
::= { proxyExecutiveSummary 2 }
cacheMeanMissRespTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The HTTP mean response time of Misses"
::= { proxyExecutiveSummary 3 }
cacheMeanHitRespTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The HTTP mean response time of Hits"
::= { proxyExecutiveSummary 4 }
cacheMeanHitRatio OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The HTTP hit ratio"
::= { proxyExecutiveSummary 5 }
cacheMeanByteHitRatio OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The HTTP byte hit ratio"
::= { proxyExecutiveSummary 6 }
cacheTotalBandwidthSaving OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bandwidth savings for HTTP in Mbits/sec"
::= { proxyExecutiveSummary 7 }
cacheDuration OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The proxy up time"
::= { proxyExecutiveSummary 8 }
cacheCltReplyErrPct OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of errors in the HTTP replies to clients"
::= { proxyExecutiveSummary 9 }
--
-- The summary of recent proxy performance
--
proxyRecentThruputPerf OBJECT IDENTIFIER ::= { proxyRecentPerf 1 }
--
-- The peformance of the proxy process
--
cacheThruputNow OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Request throughput in the last minute"
::= { proxyRecentThruputPerf 1 }
cacheThruput1hrPeak OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak request throughput in the last hour"
::= { proxyRecentThruputPerf 2 }
cacheThruput1hrMean OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average request throughput in the last hour"
::= { proxyRecentThruputPerf 3 }
cacheThruput1dayPeak OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak request throughput in the last day"
::= { proxyRecentThruputPerf 4 }
cacheThruput1dayMean OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average request throughput in the last day"
::= { proxyRecentThruputPerf 5 }
cacheThruput1weekPeak OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak request throughput in the last week"
::= { proxyRecentThruputPerf 6 }
cacheThruput1weekMean OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average request throughput in the last week"
::= { proxyRecentThruputPerf 7 }
cacheThruputLifePeak OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak request throughput in the cache lifetime"
::= { proxyRecentThruputPerf 8 }
cacheThruputLifeMean OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average request throughput in the cache lifetime"
::= { proxyRecentThruputPerf 9 }
proxyRecentBandWSavPerf OBJECT IDENTIFIER ::= { proxyRecentPerf 2 }
cacheBwidthSavingNow OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bandwidth savings in the last minute (in Kb/sec)"
::= { proxyRecentBandWSavPerf 1 }
cacheBwidthSaving1hrPeak OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak Bandwidth savings in the last hour (in Kb/sec)"
::= { proxyRecentBandWSavPerf 2 }
cacheBwidthSaving1hrMean OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average Bandwidth savings in the last hour (in Kb/sec)"
::= { proxyRecentBandWSavPerf 3 }
cacheBwidthSaving1dayPeak OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak Bandwidth savings in the last day (in Kb/sec)"
::= { proxyRecentBandWSavPerf 4 }
cacheBwidthSaving1dayMean OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average Bandwidth savings in the last day (in Kb/sec)"
::= { proxyRecentBandWSavPerf 5 }
cacheBwidthSaving1weekPeak OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak Bandwidth savings in the last week (in Kb/sec)"
::= { proxyRecentBandWSavPerf 6 }
cacheBwidthSaving1weekMean OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average Bandwidth savings in the last week (in Kb/sec)"
::= { proxyRecentBandWSavPerf 7 }
cacheBwidthSavingLifePeak OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak Bandwidth savings in the cache lifetime (in Kb/sec)"
::= { proxyRecentBandWSavPerf 8 }
cacheBwidthSavingLifeMean OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average Bandwidth savings in the cache lifetime (in Kb/sec)"
::= { proxyRecentBandWSavPerf 9 }
proxyRecentBandWSpntPerf OBJECT IDENTIFIER ::= { proxyRecentPerf 3 }
cacheBwidthSpentNow OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bandwidth spent in the last minute (in Kb/sec)"
::= { proxyRecentBandWSpntPerf 1 }
cacheBwidthSpent1hrPeak OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak Bandwidth spent in the last hour (in Kb/sec)"
::= { proxyRecentBandWSpntPerf 2 }
cacheBwidthSpent1hrMean OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average Bandwidth spent in the last hour (in Kb/sec)"
::= { proxyRecentBandWSpntPerf 3 }
cacheBwidthSpent1dayPeak OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak Bandwidth spent in the last day (in Kb/sec)"
::= { proxyRecentBandWSpntPerf 4 }
cacheBwidthSpent1dayMean OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average Bandwidth spent in the last day (in Kb/sec)"
::= { proxyRecentBandWSpntPerf 5 }
cacheBwidthSpent1weekPeak OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak Bandwidth spent in the last week (in Kb/sec)"
::= { proxyRecentBandWSpntPerf 6 }
cacheBwidthSpent1weekMean OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average Bandwidth spent in the last week (in Kb/sec)"
::= { proxyRecentBandWSpntPerf 7 }
cacheBwidthSpentLifePeak OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak Bandwidth spent in the cache lifetime (in Kb/sec)"
::= { proxyRecentBandWSpntPerf 8 }
cacheBwidthSpentLifeMean OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average Bandwidth spent in the cache lifetime (in Kb/sec)"
::= { proxyRecentBandWSpntPerf 9 }