You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each CEL input has an associated Open Telemetry Resource associate with it
38
+
39
+
|name|description|
40
+
|----|---|
41
+
|resource.attributes.service.name | the package name of the integration|
42
+
|resource.attributes.service.version | version of the integration|
43
+
|resource.attributes.agent.id | id of the agent|
44
+
|resource.attributes.instance.id ||
45
+
46
+
Exported metrics:
47
+
A program run is single run of the cel program. A periodic run is all the
48
+
program runs for that periodic run.
49
+
50
+
|name|description|metric type|
51
+
|---|---|---|
52
+
|input.cel.periodic.run.count | the number of times a periodic run was started.|Int64Counter|
53
+
| input.cel.periodic.program.started | a histogram of times a program was started in a periodic run.|Int64Histogram|
54
+
| input.cel.periodic.program.success | a histogram of times a program terminated without an error in a periodic run.|Int64Histogram|
55
+
| input.cel.periodic.batch.generated | a histogram of the number of batches generated in a periodic run.|Int64Histogram|
56
+
| input.cel.periodic.batch.published | a histogram of the number of batches successfully published in a periodic run.|Int64Histogram|
57
+
| input.cel.periodic.event.generated | a histogram of the number of events generated in a periodic run.|Int64Histogram|
58
+
| input.cel.periodic.event.published | a histogram of the number of events published in a periodic run.|Int64Histogram|
59
+
| input.cel.periodic.run.duration | a histogram of the total duration of time in seconds spent in a periodic run.|Int64Histogram|
60
+
| input.cel.periodic.cel.duration | a histogram of the total duration of time in seconds spent processing CEL programs in a periodic run.|Int64Histogram|
61
+
|input.cel.periodic.event.publish.duration | a histogram of the total duration of time in seconds publishing events in a periodic run.|Int64Histogram|
62
+
|input.cel.program.run.started.count | a count of the number of times a program was started.|Int64Counter|
63
+
| input.cel.program.run.success.count | a count of the number of times a program terminated without error.|Int64Counter|
64
+
| input.cel.program.batch.count | a count of the number of batches the program has generated.|Int64Counter|
65
+
| input.cel.program.event.count | a count of the number of events the program has generated.|Int64Counter|
66
+
| input.cel.program.event.published.count | a count of the number of events the program has published.|Int64Counter|
67
+
| input.cel.program.batch.published.count | a count of the number of batched the program has published.|Int64Counter|
68
+
| input.cel.program.run.duration | a histogram of the total time in seconds spent executing the program.|Int64Histogram|
69
+
| input.cel.program.cel.duration | a histogram of the time in seconds spent processing the CEL program.|Int64Histogram|
70
+
| input.cel.program.publish.duration | a histogram of the time in seconds spent publishing in the program.|Int64Histogram|
0 commit comments