-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…5381) * Add support for histograms to metrics intake (#5360) * model/modeldecoder: add metric type and unit * systemtest: test histogram metrics * Update changelog * systemtest: fix min docs expectation in test (cherry picked from commit 0744428) # Conflicts: # changelogs/head.asciidoc * Delete head.asciidoc Co-authored-by: Andrew Wilkins <[email protected]>
- 7.14
- (#5381)
- 7.15
- (#6030, #5381)
- 7.16
- (#5381)
- 7.17
- (#5381)
- 7.17-bump-k8s-apimachinery
- (#5381)
- 7.17.9-rns
- (#5381)
- TapomoyBhowmik-patch-1
- (#5381)
- mergify/bp/7.17/pr-14179
- (#5381)
- michaelhyatt-patch-1
- (#5381)
- otel-docs-limitations-update
- (#5381)
- update-7.17.19
- (#5381)
- updatecli_7.17_bump-elastic-stack-snapshot-7.17
- (#14864, #5381)
1 parent
ff8d462
commit c40a2ad
Showing
20 changed files
with
633 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -298,6 +298,72 @@ | |
"id": "axb123hg", | ||
"name": "logged-in-user" | ||
} | ||
}, | ||
{ | ||
"@timestamp": "2017-05-30T18:53:41.366Z", | ||
"_doc_count": 6, | ||
"_metric_descriptions": { | ||
"latency_distribution": { | ||
"type": "histogram", | ||
"unit": "s" | ||
} | ||
}, | ||
"agent": { | ||
"name": "elastic-node", | ||
"version": "3.14.0" | ||
}, | ||
"ecs": { | ||
"version": "1.8.0" | ||
}, | ||
"host": { | ||
"ip": "127.0.0.1" | ||
}, | ||
"labels": { | ||
"tag1": "one", | ||
"tag2": 2 | ||
}, | ||
"latency_distribution": { | ||
"counts": [ | ||
1, | ||
2, | ||
3 | ||
], | ||
"values": [ | ||
1.1, | ||
2.2, | ||
3.3 | ||
] | ||
}, | ||
"metricset.name": "app", | ||
"observer": { | ||
"ephemeral_id": "00000000-0000-0000-0000-000000000000", | ||
"hostname": "", | ||
"id": "fbba762a-14dd-412c-b7e9-b79f903eb492", | ||
"type": "test-apm-server", | ||
"version": "1.2.3", | ||
"version_major": 1 | ||
}, | ||
"process": { | ||
"pid": 1234 | ||
}, | ||
"processor": { | ||
"event": "metric", | ||
"name": "metric" | ||
}, | ||
"service": { | ||
"language": { | ||
"name": "ecmascript" | ||
}, | ||
"name": "1234_service-12a3", | ||
"node": { | ||
"name": "node-1" | ||
} | ||
}, | ||
"user": { | ||
"email": "[email protected]", | ||
"id": "axb123hg", | ||
"name": "logged-in-user" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.