@@ -27,17 +27,17 @@ func init() {
27
27
}
28
28
29
29
var (
30
- mPodsUpdated = stats .Int64 ("otelsvc/k8s/pod_updated " , "Number of pod update events received" , "1" )
31
- mPodsAdded = stats .Int64 ("otelsvc/k8s/pod_added " , "Number of pod add events received" , "1" )
32
- mPodsDeleted = stats .Int64 ("otelsvc/k8s/pod_deleted " , "Number of pod delete events received" , "1" )
33
- mPodTableSize = stats .Int64 ("otelsvc/k8s/pod_table_size " , "Size of table containing pod info" , "1" )
34
- mIPLookupMiss = stats .Int64 ("otelsvc/k8s/ip_lookup_miss " , "Number of times pod by IP lookup failed." , "1" )
35
- mNamespacesUpdated = stats .Int64 ("otelsvc/k8s/namespace_updated " , "Number of namespace update events received" , "1" )
36
- mNamespacesAdded = stats .Int64 ("otelsvc/k8s/namespace_added " , "Number of namespace add events received" , "1" )
37
- mNamespacesDeleted = stats .Int64 ("otelsvc/k8s/namespace_deleted " , "Number of namespace delete events received" , "1" )
38
- mReplicaSetsUpdated = stats .Int64 ("otelsvc/k8s/replicaset_updated " , "Number of ReplicaSet update events received" , "1" )
39
- mReplicaSetsAdded = stats .Int64 ("otelsvc/k8s/replicaset_added " , "Number of ReplicaSet add events received" , "1" )
40
- mReplicaSetsDeleted = stats .Int64 ("otelsvc/k8s/replicaset_deleted " , "Number of ReplicaSet delete events received" , "1" )
30
+ mPodsUpdated = stats .Int64 ("processor.k8sattributes.pods.updated " , "Number of pod update events received" , "1" )
31
+ mPodsAdded = stats .Int64 ("processor.k8sattributes.pods.added " , "Number of pod add events received" , "1" )
32
+ mPodsDeleted = stats .Int64 ("processor.k8sattributes.pods.deleted " , "Number of pod delete events received" , "1" )
33
+ mPodTableSize = stats .Int64 ("processor.k8sattributes.pods.table_size " , "Size of table containing pod info" , "1" )
34
+ mIPLookupMiss = stats .Int64 ("processor.k8sattributes.ip_lookup_misses " , "Number of times pod by IP lookup failed." , "1" )
35
+ mNamespacesUpdated = stats .Int64 ("processor.k8sattributes.namespaces.updated " , "Number of namespace update events received" , "1" )
36
+ mNamespacesAdded = stats .Int64 ("processor.k8sattributes.namespaces.added " , "Number of namespace add events received" , "1" )
37
+ mNamespacesDeleted = stats .Int64 ("processor.k8sattributes.namespaces.deleted " , "Number of namespace delete events received" , "1" )
38
+ mReplicaSetsUpdated = stats .Int64 ("processor.k8sattributes.replicasets.updated " , "Number of ReplicaSet update events received" , "1" )
39
+ mReplicaSetsAdded = stats .Int64 ("processor.k8sattributes.replicasets.added " , "Number of ReplicaSet add events received" , "1" )
40
+ mReplicaSetsDeleted = stats .Int64 ("processor.k8sattributes.replicasets.deleted " , "Number of ReplicaSet delete events received" , "1" )
41
41
)
42
42
43
43
var viewPodsUpdated = & view.View {
0 commit comments