Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions tests/APM_Server_intake_API_schema/latest_used/error.json
Original file line number Diff line number Diff line change
Expand Up @@ -1096,6 +1096,14 @@
"object"
],
"properties": {
"name": {
"description": "Name is the generic designation of a transaction in the scope of a single service, eg: 'GET /users/:id'.",
"type": [
"null",
"string"
],
"maxLength": 1024
},
"sampled": {
"description": "Sampled indicates whether or not the full information for a transaction is captured. If a transaction is unsampled no spans and less context information will be reported.",
"type": [
Expand Down
25 changes: 25 additions & 0 deletions tests/APM_Server_intake_API_schema/latest_used/metricset.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,31 @@
}
}
},
"service": {
"description": "Service holds selected information about the correlated service.",
"type": [
"null",
"object"
],
"properties": {
"name": {
"description": "Name of the correlated service.",
"type": [
"null",
"string"
],
"maxLength": 1024
},
"version": {
"description": "Version of the correlated service.",
"type": [
"null",
"string"
],
"maxLength": 1024
}
}
},
"span": {
"description": "Span holds selected information about the correlated transaction.",
"type": [
Expand Down