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

Applications API - GET baseline

Gets the baseline data of the specified application.

The request produces an application/json payload.

Early Adopter

This request is an Early Adopter release and may be changed in non-compatible way.

GETManaged https://{your-domain}/e/{your-environment-id}/api/v1/entity/applications/{meIdentifier}/baseline
SaaS https://{your-environment-id}.live.dynatrace.com/api/v1/entity/applications/{meIdentifier}/baseline
Environment ActiveGate https://{your-activegate-domain}/e/{your-environment-id}/api/v1/entity/applications/{meIdentifier}/baseline

Authentication

To execute this request, you need an access token with Access problem and event feed, metrics, and topology (DataExport) scope. To learn how to obtain and use it, see Tokens and authentication.

Parameters

ParameterTypeDescriptionInRequired
meIdentifierstring

The Dynatrace entity ID of the required application.

pathrequired

Response

Response codes

CodeTypeDescription
200ApplicationBaselineValues

Success

Response body objects

The ApplicationBaselineValues object

The baseline data for an application and its children for each available duration metric.

A duration metric is one of the following:

  • DOM interactive
  • HTML downloaded
  • Load event end
  • Load event start
  • Response time
  • Speed index
  • Time to first byte
  • Visually complete
ElementTypeDescription
entityIdstring

The Dynatrace entity ID of the application.

displayNamestring

The name of the application as displayed in the UI.

Can be null.

applicationDomInteractiveBaselinesEntityBaselineData[]

The baseline data for the DOM interactive duration metric.

Can be null.

applicationHtmlDownloadedBaselinesEntityBaselineData[]

The baseline data for the HTML downloaded duration metric.

Can be null.

applicationLoadEventEndBaselinesEntityBaselineData[]

The baseline data for the Load event end duration metric.

Can be null.

applicationLoadEventStartBaselinesEntityBaselineData[]

The baseline data for the Load event start duration metric.

Can be null.

applicationResponseTimeBaselinesEntityBaselineData[]

The baseline data for the Response time duration metric.

Can be null.

applicationSpeedIndexBaselinesEntityBaselineData[]

The baseline data for the Speed index duration metric.

Can be null.

applicationTimeToFirstByteBaselinesEntityBaselineData[]

The baseline data for the Time to first byte duration metric.

Can be null.

applicationVisualCompleteBaselinesEntityBaselineData[]

The baseline data for the Visually complete duration metric.

Can be null.

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.

Can be null.

errorRatenumber

The error rate baseline.

Can be null.

hasLoadBaselineboolean

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

Can be null.

microsMediannumber

The median baseline, in microseconds.

Can be null.

micros90thPercentilenumber

The 90th percentile baseline, in microseconds.

Can be null.

childBaselinesEntityBaselineData[]

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

Can be null.

Response body JSON model

json
{ "entityId": "string", "displayName": "string", "applicationDomInteractiveBaselines": [ { "entityId": "string", "displayName": "string", "errorRate": 1, "hasLoadBaseline": true, "microsMedian": 1, "micros90thPercentile": 1, "childBaselines": [ {} ] } ], "applicationHtmlDownloadedBaselines": [ {} ], "applicationLoadEventEndBaselines": [ {} ], "applicationLoadEventStartBaselines": [ {} ], "applicationResponseTimeBaselines": [ {} ], "applicationSpeedIndexBaselines": [ {} ], "applicationTimeToFirstByteBaselines": [ {} ], "applicationVisualCompleteBaselines": [ {} ] }
Related topics
  • Real User Monitoring

    Learn about Real User Monitoring, key performance metrics, mobile app monitoring, and more.