-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathARISTA-KUBERNETES-MIB.txt
46 lines (37 loc) · 1.16 KB
/
ARISTA-KUBERNETES-MIB.txt
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
ARISTA-KUBERNETES-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, experimental FROM SNMPv2-SMI;
k8sEntry MODULE-IDENTITY
LAST-UPDATED "202402270000Z"
ORGANIZATION "Arista Networks"
CONTACT-INFO "[email protected]"
DESCRIPTION "SNMP KUBERNETES MIB"
REVISION "202402270000Z"
DESCRIPTION "SNMP KUBERNETES MIB"
::= { experimental 53 }
kubernetesInfo OBJECT IDENTIFIER ::= { k8sEntry 8 }
nbPodsInRunningState OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of Kubernetes pods in Running state."
::= { kubernetesInfo 0 }
nbNodesInReadyState OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of Kubernetes nodes in Ready state."
::= { kubernetesInfo 1 }
k8sNodesInfo OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Kubernetes nodes information."
::= { kubernetesInfo 2 }
k8sPodsInfo OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Kubernetes pods information."
::= { kubernetesInfo 3 }
END