@@ -10,10 +10,6 @@ status:
1010  unsupported_platforms : [windows] 
1111
1212resource_attributes :
13-   container.runtime :
14-     description : " The runtime of the container. For this receiver, it will always be 'podman'." 
15-     type : string 
16-     enabled : true 
1713  container.id :
1814    description : " The ID of the container." 
1915    type : string 
@@ -26,34 +22,50 @@ resource_attributes:
2622    description : " The name of the container." 
2723    type : string 
2824    enabled : true 
25+   container.runtime :
26+     description : " The runtime of the container. For this receiver, it will always be 'podman'." 
27+     type : string 
28+     enabled : true 
2929
3030attributes :
3131  core :
3232    description : " The CPU core number when utilising per-CPU metrics." 
3333    type : string 
3434
3535metrics :
36-   #  CPU 
37-   container.cpu.usage.system  :
36+   #  BlockIO 
37+   container.blockio.io_service_bytes_recursive.read  :
3838    enabled : true 
39-     description : " System CPU usage." 
39+     description : " Number of bytes transferred from the disk by the container" 
40+     extended_documentation : " [More docs](https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt)." 
4041    stability :
4142      level : development 
42-     unit : s 
43+     unit : " {operations} " 
4344    sum :
4445      value_type : int 
4546      monotonic : true 
4647      aggregation_temporality : cumulative 
47-   container.cpu.usage.total  :
48+   container.blockio.io_service_bytes_recursive.write  :
4849    enabled : true 
49-     description : " Total CPU time consumed." 
50+     description : " Number of bytes transferred to the disk by the container" 
51+     extended_documentation : " [More docs](https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt)." 
5052    stability :
5153      level : development 
52-     unit : s 
54+     unit : " {operations} " 
5355    sum :
5456      value_type : int 
5557      monotonic : true 
5658      aggregation_temporality : cumulative 
59+ 
60+   #  CPU
61+   container.cpu.percent :
62+     enabled : true 
63+     description : " Percent of CPU used by the container." 
64+     stability :
65+       level : development 
66+     unit : " 1" 
67+     gauge :
68+       value_type : double 
5769  container.cpu.usage.percpu :
5870    enabled : true 
5971    description : " Total CPU time consumed per CPU-core." 
@@ -66,35 +78,27 @@ metrics:
6678      aggregation_temporality : cumulative 
6779    attributes :
6880      - core 
69-   container.cpu.percent :
70-     enabled : true 
71-     description : " Percent of CPU used by the container." 
72-     stability :
73-       level : development 
74-     unit : " 1" 
75-     gauge :
76-       value_type : double 
77-   #  Memory
78-   container.memory.usage.limit :
81+   container.cpu.usage.system :
7982    enabled : true 
80-     description : " Memory limit of the container ." 
83+     description : " System CPU usage ." 
8184    stability :
8285      level : development 
83-     unit : By 
86+     unit : s 
8487    sum :
8588      value_type : int 
89+       monotonic : true 
8690      aggregation_temporality : cumulative 
87-       monotonic : false 
88-   container.memory.usage.total :
91+   container.cpu.usage.total :
8992    enabled : true 
90-     description : " Memory usage of the container ." 
93+     description : " Total CPU time consumed ." 
9194    stability :
9295      level : development 
93-     unit : By 
96+     unit : s 
9497    sum :
9598      value_type : int 
99+       monotonic : true 
96100      aggregation_temporality : cumulative 
97-        monotonic :  false 
101+   #  Memory 
98102  container.memory.percent :
99103    enabled : true 
100104    description : " Percentage of memory used." 
@@ -103,46 +107,43 @@ metrics:
103107    unit : " 1" 
104108    gauge :
105109      value_type : double 
106-   #  Network
107-   container.network.io.usage.rx_bytes :
110+   container.memory.usage.limit :
108111    enabled : true 
109-     description : " Bytes received by  the container." 
112+     description : " Memory limit of  the container." 
110113    stability :
111114      level : development 
112115    unit : By 
113116    sum :
114117      value_type : int 
115-       monotonic : true 
116118      aggregation_temporality : cumulative 
117-   container.network.io.usage.tx_bytes :
119+       monotonic : false 
120+   container.memory.usage.total :
118121    enabled : true 
119-     description : " Bytes sent by  the container." 
122+     description : " Memory usage of  the container." 
120123    stability :
121124      level : development 
122125    unit : By 
123126    sum :
124127      value_type : int 
125-       monotonic : true 
126128      aggregation_temporality : cumulative 
127-   #  BlockIO
128-   container.blockio.io_service_bytes_recursive.read :
129+       monotonic : false 
130+   #  Network
131+   container.network.io.usage.rx_bytes :
129132    enabled : true 
130-     description : " Number of bytes transferred from the disk by the container" 
131-     extended_documentation : " [More docs](https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt)." 
133+     description : " Bytes received by the container." 
132134    stability :
133135      level : development 
134-     unit : " {operations} " 
136+     unit : By 
135137    sum :
136138      value_type : int 
137139      monotonic : true 
138140      aggregation_temporality : cumulative 
139-   container.blockio.io_service_bytes_recursive.write  :
141+   container.network.io.usage.tx_bytes  :
140142    enabled : true 
141-     description : " Number of bytes transferred to the disk by the container" 
142-     extended_documentation : " [More docs](https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt)." 
143+     description : " Bytes sent by the container." 
143144    stability :
144145      level : development 
145-     unit : " {operations} " 
146+     unit : By 
146147    sum :
147148      value_type : int 
148149      monotonic : true 
0 commit comments