diff --git a/tests/APM_Server_intake_API_schema/latest_used/error.json b/tests/APM_Server_intake_API_schema/latest_used/error.json index 2170ccc32..839b55376 100644 --- a/tests/APM_Server_intake_API_schema/latest_used/error.json +++ b/tests/APM_Server_intake_API_schema/latest_used/error.json @@ -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": [ diff --git a/tests/APM_Server_intake_API_schema/latest_used/metricset.json b/tests/APM_Server_intake_API_schema/latest_used/metricset.json index 391ae3480..9a3eff315 100644 --- a/tests/APM_Server_intake_API_schema/latest_used/metricset.json +++ b/tests/APM_Server_intake_API_schema/latest_used/metricset.json @@ -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": [