-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-LIVEDATA-MIB-V1SMI.my
983 lines (891 loc) · 35.5 KB
/
CISCO-LIVEDATA-MIB-V1SMI.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
-- MIB file created 26-Sep-2013 18:47:53, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-LIVEDATA-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-LIVEDATA-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
DateAndTime, TruthValue
FROM SNMPv2-TC-v1
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
ciscoMgmt
FROM CISCO-SMI
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoLivedataMIB OBJECT IDENTIFIER ::= { ciscoMgmt 814 }
-- MODULE-IDENTITY
-- LastUpdated
-- 201308290000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- Cisco LiveData is the next generation reporting product for
-- Cisco Unified Contact Center Enterprise (CCE). Cisco
-- LiveData provides a horizontally scalable, highly available
-- architecture to support systems with large numbers of
-- reporting users. LiveData enables fast refresh rates on
-- real-time data (3 seconds or less). A LiveData node consumes
-- real-time data streams from one or more sources, processes
-- the data and publishes the resulting data to solution
-- consumers. Consumers may be database management systems,
-- applications or reporting engines.
--
-- Cisco LiveData aggregates and publishes real-time data and
-- metrics pushed to it (e.g. from the CCE router and/or
-- peripheral gateway components) to a message bus; Cisco
-- Unified Intelligence Center (CUIC) and the CCE Administrator
-- Workstation (AW) subscribe to this message bus to receive
-- real-time data updates. CUIC users then build reports using
-- this real-time data; other CCE clients may also query this
-- real-time data from the CCE AW database.
--
-- A LiveData cluster consists of one or more nodes; one is
-- designated as the master with additional worker nodes as
-- needed. A LiveData cluster may have a remote peer cluster
-- that works cooperatively in a fault-tolerant model. LiveData
-- cluster peers communicate with one another to negotiate who
-- is the 'active' cluster and who is on 'standby' (only one
-- cluster will be active at a time). If the active cluster
-- fails, the standby cluster will transition to active and
-- begin consuming the data streams previously consumed by the
-- peer cluster.
--
-- In small deployments, a LiveData cluster will be collocated
-- with CUIC in the same server virtual machine; in larger
-- deployments, a LiveData cluster may include several nodes
-- that may or may not be collocated with CUIC.
--
-- A single node in a LiveData cluster will have multiple
-- services running in the guest virtual machine that are
-- critical to the successful function of that node. Services
-- may be distributed across the nodes of a cluster to balance
-- the workload. Each node will establish and maintain
-- connections to data sources in the solution.
--
-- CISCO-LIVEDATA-MIB defines instrumentation unique to the
-- LiveData servers (virtual machines). The instrumentation
-- includes objects of:
-- 1) a general nature - attributes of the device and
-- application,
-- 2) cluster status* and identity,
-- 3) service status and identity and
-- 4) connection status and attributes (including metrics).
-- 5) events
--
-- * It is important to note that cluster status is shared
-- across all nodes of a cluster; cluster status is not
-- device-specific unless there is only one node in the cluster.
--
-- The MIB also defines a single notification type; all nodes in
-- all clusters may emit notifications.
--
-- Service and connection instrumentation is exposed as tables.
-- The number of entries within each table may change over time,
-- adapting to changes within the cluster.
--
-- Glossary:
-- =========
-- AW Administrator Workstation component of a Cisco
-- Unified Contact Center Enterprise deployment. The
-- AW collects and serves real-time and configuration
-- data to the CCE solution.
-- CCE (Cisco Unified) Contact Center Enterprise; CCE
-- delivers intelligent contact routing, call
-- treatment, network-to-desktop computer telephony
-- integration, and multichannel contact management
-- over an IP infrastructure.
-- CUIC Cisco Unified Intelligence Center; CUIC is a web-
-- based reporting application that provides real-
-- time and historical reporting in an easy-to-use,
-- wizard-based application for Cisco Contact Center
-- products.
-- UCCE Unified Contact Center Enterprise; see 'CCE'.
-- RevDate
-- 201305230000Z
-- RevDescr
-- Initial version of this MIB.
ciscoLivedataMIBNotifs OBJECT IDENTIFIER ::= { ciscoLivedataMIB 0 }
ciscoLivedataMIBObjects OBJECT IDENTIFIER ::= { ciscoLivedataMIB 1 }
cldGeneral OBJECT IDENTIFIER ::= { ciscoLivedataMIBObjects 1 }
cldCluster OBJECT IDENTIFIER ::= { ciscoLivedataMIBObjects 2 }
cldServices OBJECT IDENTIFIER ::= { ciscoLivedataMIBObjects 3 }
cldReportingConnections OBJECT IDENTIFIER ::= { ciscoLivedataMIBObjects 4 }
cldEvents OBJECT IDENTIFIER ::= { ciscoLivedataMIBObjects 5 }
ciscoLivedataMIBConform OBJECT IDENTIFIER ::= { ciscoLivedataMIB 2 }
ciscoLivedataMIBCompliances OBJECT IDENTIFIER ::= { ciscoLivedataMIBConform 1 }
ciscoLivedataMIBGroups OBJECT IDENTIFIER ::= { ciscoLivedataMIBConform 2 }
CldIndex ::= Gauge(1..4294967295)
-- TEXTUAL-CONVENTION
-- DspHint
-- d
-- Status
-- mandatory
-- Descr
-- This textual convention represents the index value of an
-- entry in a table. In this MIB, table entries are sorted
-- within a table in an ascending order based on its index
-- value. Indexes for table entries are assigned by the SNMP
-- agent.
CldSeverity ::= INTEGER {
emergency(1),
alert(2),
critical(3),
error(4),
warning(5),
notice(6),
informational(7),
debug(8)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- This textual convention indicates the severity level of a
-- notification or a logged event (or trace) message. The
-- severity levels are:
--
-- 'emergency': Events of this severity indicate that a
-- devastating failure has occurred; the
-- system or service is unusable. Immediate
-- operator intervention is required.
--
-- 'alert': Events of this severity indicate that a
-- devastating failure is imminent that will
-- render the system unusable. Immediate
-- operator attention is necessary.
--
-- 'critical': Events of this severity indicate that a
-- service-impacting failure is likely to
-- occur soon which is the result of an error
-- that was not appropriately handled by the
-- system. Operator attention is needed as
-- soon as possible.
--
-- 'error': Events of this severity contain important
-- operational state information and may
-- indicate that the system has experienced a
-- temporary impairment or an error that was
-- appropriately handled by the system. An
-- operator should review the notification
-- soon as possible to determine if additional
-- action is needed.
--
-- 'warning': Events of this severity contain important
-- operational state information that may be a
-- precursor to an error occurrence. An
-- operator should review the event soon to
-- determine if additional action is needed.
--
-- 'notice': Events of this severity contain health or
-- operational state information that may be
-- pertinent to the health of the system but
-- do not require the immediate attention of
-- the administrator.
--
-- 'informational': Events of this severity contain interesting
-- system-level information that is valuable
-- to an administrator in time, however, the
-- event itself does not indicate a fault or
-- an impairment condition.
--
-- 'debug': Events of this severity provide supplemental
-- information that may be beneficial toward
-- diagnosing or resolving a problem but do not
-- necessarily provide operational health
-- status.
cldServerName OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the fully-qualified domain name of the
Cisco LiveData server."
::= { cldGeneral 1 }
cldDescription OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates a textual description of the Cisco
LiveData software installed on this server. This is
typically the full name of the application."
::= { cldGeneral 2 }
cldVersion OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the version number of the Cisco
LiveData software that is installed on this server."
::= { cldGeneral 3 }
cldStartTime OBJECT-TYPE
SYNTAX DateAndTime
-- Rsyntax OCTET STRING(SIZE(8|11))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the date and time that the Cisco
LiveData software (the primary application service) was
started on this server."
::= { cldGeneral 4 }
cldTimeZoneName OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the textual name of the time zone
where the Cisco LiveData server (host) is physically
located."
::= { cldGeneral 5 }
cldTimeZoneOffset OBJECT-TYPE
SYNTAX INTEGER
-- Units
-- minutes
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of minutes that the local
time, in the time zone where the Cisco LiveData server (host)
is physically located, differs from Greenwich Mean Time
(GMT)."
::= { cldGeneral 6 }
cldEventNotifEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies whether event generation is enabled in
the SNMP entity. This object allows a management station to
disable, during run time, all outgoing Cisco LiveData
notifications. This is typically done during a maintenance
window when many application components are frequently
stopped, reconfigured and restarted, which can generate
periodic floods of notifications that are not desirable
during a maintenance period. Please note that this setting
is persistent even after a restart of the agent; the
management station must explicitly reset this object value
back to 'true' to re-enable outgoing application
notifications from this device.
When the value of this object is 'true', notifications will
be sent to configured management stations. When the value is
set to 'false' by a management station, notifications will
not be sent to configured management stations. The default
value of this object is 'true'.
The value of this object does not alter the normal table
management behavior of the event table, i.e., generated
events will be stored in the event table regardless of the
value of this object."
DEFVAL { true }
::= { cldGeneral 7 }
cldClusterID OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates a cluster- unique textual identifier
for this cluster (e.g. 'sideA')."
::= { cldCluster 1 }
cldClusterStatus OBJECT-TYPE
SYNTAX INTEGER {
pairedActive(1),
pairedStandby(2),
isolatedActive(3),
isolatedStandby(4),
testing(5),
outOfService(6)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the current status of this cluster of
Cisco LiveData servers. A cluster is a group of one or more
Cisco LiveData servers that work cooperatively to consume and
process inbound real-time data from one or more data sources.
Work is distributed between worker nodes within the cluster
by the master node. A cluster may have a peer cluster in a
fault-tolerant deployment model that will assume data
processing duties in the event where its active peer cluster
fails.
'pairedActive': The cluster is actively processing data
and is communicating with its remote
peer cluster.
'pairedStandby': The cluster is standing by (waiting to
process data if necessary) and is
communicating with its remote peer
cluster.
'isolatedActive': The cluster is is actively processing
data but has lost peer-to-peer
communication with it's remote peer
cluster.
'isolatedStandby': The cluster is standing by (waiting to
process data if necessary) but has lost
peer-to-peer communication with its
remote peer cluster.
'testing': The cluster is unable to communicate
with the remote peer cluster via the
peer-to-peer connection and it is
invoking the 'test-other-side' procedure
to decide whether to become active or to
go into a standby state.
'outOfService': The cluster is out of service."
::= { cldCluster 2 }
cldClusterAddress OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the hostname or the IP address of the
remote peer cluster for peer-to-peer communication with the
remote cluster."
::= { cldCluster 3 }
cldServiceTable OBJECT-TYPE
SYNTAX SEQUENCE OF CldServiceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The service table is a list of Cisco LiveData services. A
service in this context is one or more executable processes
that have been configured to run on this server.
Service table objects include both the service name and the
current run state of that service. A single LiveData server
will have multiple running services, each of a different
type, that encompass the LiveData solution on a particular
server. Some of these services work cooperatively with
similar or dependent services on other server nodes in the
cluster.
The SNMP agent constructs the service table at startup; the
agent refreshes this table periodically during runtime to
offer a near real-time status of configured services.
Service table entries cannot be added to or deleted from the
table by the management station. All objects in this table
are read-only."
::= { cldServices 1 }
cldServiceEntry OBJECT-TYPE
SYNTAX CldServiceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each service entry represents a Cisco LiveData service.
The LiveData application software includes a collection of
related services, each of which perform a specific,
necessary function of the application."
INDEX { cldServiceIndex }
::= { cldServiceTable 1 }
CldServiceEntry ::= SEQUENCE {
cldServiceIndex CldIndex,
cldServiceName SnmpAdminString,
cldServiceState INTEGER,
cldServiceUpTime DateAndTime
}
cldServiceIndex OBJECT-TYPE
SYNTAX CldIndex
-- Rsyntax Gauge(1..4294967295)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The service index is a value that uniquely identifies an
entry in the services table. This value is arbitrarily
assigned by the SNMP agent."
::= { cldServiceEntry 1 }
cldServiceName OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates a user-intuitive textual name for the
Cisco LiveData service."
::= { cldServiceEntry 2 }
cldServiceState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
disabled(2),
starting(3),
started(4),
active(5),
stopping(6),
stopped(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the last known state of the Cisco
LiveData service. The object value identifies the run
status of a configured service installed on the Cisco
LiveData server. The possible service states are:
'unknown': The status of the service cannot be
determined.
'disabled': The service has been explicitly disabled by
an administrator.
'starting': The service is currently starting up but has
not yet completed its startup procedure.
'started': The service has completed its startup
procedure and is currently running.
'active': The service has been started, is currently
running and is actively processing data.
'stopping': The service is stopping and is in the midst
of its shutdown procedure.
'stopped': The service is stopped. The service may be
dysfunctional or impaired, or it has been
explicitly stopped by an administrator."
::= { cldServiceEntry 3 }
cldServiceUpTime OBJECT-TYPE
SYNTAX DateAndTime
-- Rsyntax OCTET STRING(SIZE(8|11))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the date and time that this service
started."
::= { cldServiceEntry 4 }
cldReportingConnectionTable OBJECT-TYPE
SYNTAX SEQUENCE OF CldReportingConnectionEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The reporting connection table is a list of Cisco LiveData
server reporting connections. A LiveData server maintains a
number of active connections to data sources; most often,
these are contact center solution nodes that generate real-
time data that is ultimately used for creating reports.
Reporting connection table objects include objects that
identify the reporting connection, the current state of that
connection and a set of metrics and attributes that offer an
indication of the connection health and performance. A
single LiveData server may have multiple reporting
connections, each to a different peer node and/or to multiple
data sources from a single node.
The SNMP agent constructs the reporting connection table at
startup; the agent refreshes this table periodically during
runtime when each LiveData service reports connection states.
Reporting connection table entries cannot be added to or
deleted from the table by the management station. All
objects in this table are read-only."
::= { cldReportingConnections 1 }
cldReportingConnectionEntry OBJECT-TYPE
SYNTAX CldReportingConnectionEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each reporting connection entry represents a Cisco LiveData
reporting connection. The LiveData application connects to a
number of data sources, each of which sends real-time data
as a stream to the LiveData server."
INDEX { cldRptConnIndex }
::= { cldReportingConnectionTable 1 }
CldReportingConnectionEntry ::= SEQUENCE {
cldRptConnIndex CldIndex,
cldRptConnServerID SnmpAdminString,
cldRptConnServerAddress SnmpAdminString,
cldRptConnState INTEGER,
cldRptConnStateTime DateAndTime,
cldRptConnEventRate Gauge,
cldRptConnHeartbeatRTT Gauge,
cldRptConnSocketConnects Counter,
cldRptConnSocketDisconnects Counter,
cldRptConnMessagesDiscarded Counter,
cldRptConnDSCP INTEGER
}
cldRptConnIndex OBJECT-TYPE
SYNTAX CldIndex
-- Rsyntax Gauge(1..4294967295)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The reporting connection index is a value that uniquely
identifies an entry in the reporting connection table.
This value is arbitrarily assigned by the SNMP agent."
::= { cldReportingConnectionEntry 1 }
cldRptConnServerID OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates a user-intuitive textual
identification for the Cisco LiveData connection; this is
indicative of the source of the real-time data streamed via
this reporting connection."
::= { cldReportingConnectionEntry 2 }
cldRptConnServerAddress OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the hostname or IP address of the peer
node in this reporting connection."
::= { cldReportingConnectionEntry 3 }
cldRptConnState OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
active(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the current state of this reporting
connection; it is either active or inactive."
::= { cldReportingConnectionEntry 4 }
cldRptConnStateTime OBJECT-TYPE
SYNTAX DateAndTime
-- Rsyntax OCTET STRING(SIZE(8|11))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the date and time that this reporting
connection transitioned into its current state."
::= { cldReportingConnectionEntry 5 }
cldRptConnEventRate OBJECT-TYPE
SYNTAX Gauge
-- Units
-- events
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of events that are arriving
via this connection per second."
::= { cldReportingConnectionEntry 6 }
cldRptConnHeartbeatRTT OBJECT-TYPE
SYNTAX Gauge
-- Units
-- milliseconds
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the time, in milliseconds, for
heartbeat requests to be returned from the peer node in this
reporting connection."
::= { cldReportingConnectionEntry 7 }
cldRptConnSocketConnects OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of successful socket
connections made to the peer node in this reporting
connection."
::= { cldReportingConnectionEntry 8 }
cldRptConnSocketDisconnects OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of socket disconnects with
the peer node in this reporting connection. This is used in
conjunction with cldConnSocketConnects to identify unstable
connections to a particular endpoint."
::= { cldReportingConnectionEntry 9 }
cldRptConnMessagesDiscarded OBJECT-TYPE
SYNTAX Counter
-- Units
-- messages
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of messages sent by the
peer node in this reporting connection that have been
discarded."
::= { cldReportingConnectionEntry 10 }
cldRptConnDSCP OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the Differentiated Services (DS) value
currently used by this reporting connection for Quality of
Service (QoS) marking."
::= { cldReportingConnectionEntry 11 }
cldEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF CldEventEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The event table is a list of active Cisco LiveData events.
The SNMP agent constructs the event table at startup and it
fills the table as events are generated.
Events with the same cldEventID value will overwrite existing
events in the table with the same EventID (i.e. only the most
recent will persist).
Event table entries cannot be added to or deleted from the
table by the management station. All objects in this table
are read-only."
::= { cldEvents 1 }
cldEventEntry OBJECT-TYPE
SYNTAX CldEventEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each event entry represents a Cisco LiveData event. The
LiveData application software generates events when an
unusual condition has occurred that can potentially affect
the functioning of the Cisco LiveData server."
INDEX { cldEventIndex }
::= { cldEventTable 1 }
CldEventEntry ::= SEQUENCE {
cldEventIndex CldIndex,
cldEventID Gauge,
cldEventAppName SnmpAdminString,
cldEventName SnmpAdminString,
cldEventState INTEGER,
cldEventSeverity CldSeverity,
cldEventTimestamp DateAndTime,
cldEventText SnmpAdminString
}
cldEventIndex OBJECT-TYPE
SYNTAX CldIndex
-- Rsyntax Gauge(1..4294967295)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The event index is a value that uniquely identifies an entry
in the event table. This value is arbitrarily assigned by
the SNMP agent."
::= { cldEventEntry 1 }
cldEventID OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the unique numeric event message
identifier that is assigned by the LiveData server to this
event. This identifier is unique for each different event.
The event ID can be used to correlate 'clear' state events
to 'raise' state events."
::= { cldEventEntry 2 }
cldEventAppName OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the service- specific name of the
Cisco LiveData functional service that generated this event."
::= { cldEventEntry 3 }
cldEventName OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the service-specific name of the Cisco
LiveData event message. The object value is used to group
similar events."
::= { cldEventEntry 4 }
cldEventState OBJECT-TYPE
SYNTAX INTEGER {
raise(1),
clear(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the state (not to be confused with
severity) of the event and potentially the current status of
the functional component that generated the event. The
possible states are:
'raise': A raise state identifies an event received as a
result of a health-impacting condition, such as a
process failure. A subsequent clear state event
will follow when the error condition is resolved.
A node which generates a 'raise' state event may
be impaired and likely requires the attention of
an administrator.
'clear': The clear state indicates that the condition
which generated a previous raise notification has
been resolved. This may occur automatically with
fault-tolerant deployments or may be the result
of administrator intervention."
::= { cldEventEntry 5 }
cldEventSeverity OBJECT-TYPE
SYNTAX CldSeverity
-- Rsyntax INTEGER {
-- emergency(1),
-- alert(2),
-- critical(3),
-- error(4),
-- warning(5),
-- notice(6),
-- informational(7),
-- debug(8)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the severity level of this event."
::= { cldEventEntry 6 }
cldEventTimestamp OBJECT-TYPE
SYNTAX DateAndTime
-- Rsyntax OCTET STRING(SIZE(8|11))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the date and time that the event was
generated on the originating device."
::= { cldEventEntry 7 }
cldEventText OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the full text of the event which
includes a description of the event that was generated,
component state information and potentially a brief
description of administrative action that may be necessary
to correct the condition that caused the event to occur."
::= { cldEventEntry 8 }
cldEventNotif TRAP-TYPE
-- Reverse mappable trap
ENTERPRISE ciscoLivedataMIB
VARIABLES {
cldEventID, cldServerName, cldEventAppName, cldEventName,
cldEventState, cldEventSeverity, cldEventTimestamp,
cldEventText }
-- Status
-- mandatory
DESCRIPTION
"The SNMP entity generates cldEventNotif when an unusual
condition has occurred that can potentially affect the
functioning of the Cisco LiveData server. This notification
type describes operational state information of the service
generating the notification when such service-impacting
conditions occur. A notification is sent by a functional
service of the Cisco LiveData server.
The notification type includes the following objects:
'cldEventID': The unique numeric event message
identifier for this event.
'cldServerName': The fully-qualified domain name of the
Cisco LiveData server that generated the
notification.
'cldEventAppName': The name of the Cisco LiveData
functional service that generated this
event.
'cldEventName': The service-specific name of the Cisco
LiveData event message.
'cldEventState': The state of the event, either 'raise'
or 'clear'. A 'raise' state event is
generated when an unusual or service-
impacting condition occurs while a
'clear' state event is generated when
a prior condition has been resolved.
'cldEventSeverity': The severity level of this event; an
integer value from 1 (emergency) to 8
(debug).
'cldEventTimestamp': The date and time that the event was
generated.
'cldEventText': The full text of the event."
::= 1
cldGeneralGroup OBJECT IDENTIFIER ::= { ciscoLivedataMIBGroups 1 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- The general group defines the general Cisco LiveData
-- objects. All servers will populate these objects.
-- objects
-- cldServerName, cldDescription, cldVersion, cldStartTime,
-- cldTimeZoneName, cldTimeZoneOffset, cldEventNotifEnable
cldClusterGroup OBJECT IDENTIFIER ::= { ciscoLivedataMIBGroups 2 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- The cluster group defines the Cisco LiveData objects related
-- to the cluster of LiveData servers. All servers will populate
-- these objects.
-- objects
-- cldClusterID, cldClusterStatus, cldClusterAddress
cldServicesGroup OBJECT IDENTIFIER ::= { ciscoLivedataMIBGroups 3 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- The services group defines the Cisco LiveData service table
-- objects. All servers will populate these objects, however,
-- the number of entries in the table will vary across servers
-- and the types of services will vary as well.
-- objects
-- cldServiceName, cldServiceState, cldServiceUpTime
cldRptConnectionsGroup OBJECT IDENTIFIER ::= { ciscoLivedataMIBGroups 4 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- The reporting connections group defines the Cisco LiveData
-- connection table objects. All servers will populate these
-- objects, however, the number of entries in the table will
-- vary across servers.
-- objects
-- cldRptConnServerID, cldRptConnServerAddress, cldRptConnState,
-- cldRptConnStateTime, cldRptConnEventRate,
-- cldRptConnHeartbeatRTT, cldRptConnSocketConnects,
-- cldRptConnSocketDisconnects, cldRptConnMessagesDiscarded,
-- cldRptConnDSCP
cldEventsGroup OBJECT IDENTIFIER ::= { ciscoLivedataMIBGroups 5 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- The events group defines the Cisco LiveData event table
-- objects. All servers will populate these objects, however,
-- the number of entries in the table will vary across servers.
-- objects
-- cldEventID, cldEventAppName, cldEventName, cldEventState,
-- cldEventSeverity, cldEventTimestamp, cldEventText
cldMIBEventGroup OBJECT IDENTIFIER ::= { ciscoLivedataMIBGroups 6 }
-- NOTIFICATION-GROUP
-- Status
-- mandatory
-- Descr
-- This group defines the notification types defined in this
-- MIB.
-- notifications
-- cldEventNotif
ciscoLivedataMIBCompliance OBJECT IDENTIFIER ::= { ciscoLivedataMIBCompliances 1 }
-- MODULE-COMPLIANCE
-- Status
-- mandatory
-- Descr
-- This object is the compliance statement for entities which
-- implement the Cisco LiveData MIB.
-- Module
-- CISCO-LIVEDATA-MIB
-- MandGroup
-- cldGeneralGroup
-- MandGroup
-- cldClusterGroup
-- MandGroup
-- cldServicesGroup
-- MandGroup
-- cldRptConnectionsGroup
-- MandGroup
-- cldEventsGroup
-- MandGroup
-- cldMIBEventGroup
END