Skip to content

Commit

Permalink
add metrics exemplar example
Browse files Browse the repository at this point in the history
  • Loading branch information
cboudereau committed Feb 29, 2024
1 parent d8b5199 commit 98154f2
Showing 1 changed file with 126 additions and 0 deletions.
126 changes: 126 additions & 0 deletions _DRAFT/OTEL-example/otlpjson/metrics-exemplars.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
{
"resourceMetrics": [
{
"resource": {
"attributes": [
{
"key": "service.name",
"value": {
"stringValue": "my.service"
}
}
]
},
"scopeMetrics": [
{
"scope": {
"name": "my.library",
"version": "1.0.0",
"attributes": [
{
"key": "my.scope.attribute",
"value": {
"stringValue": "some scope attribute"
}
}
]
},
"metrics": [
{
"name": "my.counter",
"unit": "1",
"description": "I am a Counter",
"sum": {
"aggregationTemporality": 1,
"isMonotonic": true,
"dataPoints": [
{
"asDouble": 5,
"startTimeUnixNano": "1544712660300000000",
"timeUnixNano": "1544712660300000000",
"attributes": [
{
"key": "my.counter.attr",
"value": {
"stringValue": "some value"
}
}
],
"exemplars": [
{
"filteredAttributes": [
{
"key": "my.exemplar",
"value": {
"stringValue": "hello exemplars!"
}
}
],
"timeUnixNano": "1544712660300000000",
"asInt": 3
}
]
}
]
}
},
{
"name": "my.gauge",
"unit": "1",
"description": "I am a Gauge",
"gauge": {
"dataPoints": [
{
"asDouble": 10,
"timeUnixNano": "1544712660300000000",
"attributes": [
{
"key": "my.gauge.attr",
"value": {
"stringValue": "some value"
}
}
]
}
]
}
},
{
"name": "my.histogram",
"unit": "1",
"description": "I am a Histogram",
"histogram": {
"aggregationTemporality": 1,
"dataPoints": [
{
"startTimeUnixNano": "1544712660300000000",
"timeUnixNano": "1544712660300000000",
"count": 2,
"sum": 2,
"bucketCounts": [
1,
1
],
"explicitBounds": [
1
],
"min": 0,
"max": 2,
"attributes": [
{
"key": "my.histogram.attr",
"value": {
"stringValue": "some value"
}
}
]
}
]
}
}
]
}
]
}
]
}

0 comments on commit 98154f2

Please sign in to comment.