• Home
  • Dynatrace API
  • Environment
  • Topology and Smartscape v1
  • Services
  • GET baseline

Services API - GET baseline

Gets the baseline data of the specified service.

The request produces an application/json payload.

GETManagedDynatrace for Governmenthttps://{your-domain}/e/{your-environment-id}/api/v1/entity/services/{meIdentifier}/baseline
SaaShttps://{your-environment-id}.live.dynatrace.com/api/v1/entity/services/{meIdentifier}/baseline
Environment ActiveGatehttps://{your-activegate-domain}/e/{your-environment-id}/api/v1/entity/services/{meIdentifier}/baseline

Authentication

To execute this request, you need an access token with DataExport scope.

To learn how to obtain and use it, see Tokens and authentication.

Parameters

ParameterTypeDescriptionInRequired
meIdentifierstring

The Dynatrace entity ID of the required service.

pathrequired

Response

Response codes

CodeTypeDescription
200ServiceBaselineValues

Success

Response body objects

The ServiceBaselineValues object

The baseline data for a service and its children for the Response time duration metric.

ElementTypeDescription
entityIdstring

The ID of the service.

displayNamestring

The display name of the service.

serviceResponseTimeBaselinesEntityBaselineData[]

The baseline data for the Response time duration metric.

The EntityBaselineData object

The baseline data for a Dynatrace entity for a specific duration metric.

ElementTypeDescription
entityIdstring

The ID of the Dynatrace entity.

displayNamestring

The display name of the entity.

errorRatenumber

The error rate baseline.

hasLoadBaselineboolean

The entity has a load baseline (true) or doesn't (false).

microsMediannumber

The median baseline, in microseconds.

micros90thPercentilenumber

The 90th percentile baseline, in microseconds.

childBaselinesEntityBaselineData[]

The baseline data for child entities of this entity, for example a SERVICE_METHOD of a SERVICE_METHOD_GROUP.

Response body JSON model

json
{ "entityId": "string", "displayName": "string", "serviceResponseTimeBaselines": [ { "entityId": "string", "displayName": "string", "errorRate": 1, "hasLoadBaseline": true, "microsMedian": 1, "micros90thPercentile": 1, "childBaselines": [ {} ] } ] }
Related topics
  • Services

    Learn how to monitor and analyze your services, how to define and use request attributes, and more.