Get the configuration of error rules in the specified application.
The request produces an application/json payload.
| GET | SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/applications/web/{id}/errorRules |
| Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/applications/web/{id}/errorRules |
To execute this request, you need an access token with ReadConfig scope.
To learn how to obtain and use it, see Tokens and authentication.
| Parameter | Type | Description | In | Required |
|---|---|---|---|---|
| id | string | The ID of the required web application. | path | required |
| Code | Type | Description |
|---|---|---|
| 200 | Application | Success |
ApplicationErrorRules objectConfiguration of error rules in the web application.
| Element | Type | Description |
|---|---|---|
| customErrorRules | Custom | An ordered list of custom errors. Rules are evaluated from top to bottom; the first matching rule applies. |
| httpErrorRules | Http | An ordered list of HTTP errors. Rules are evaluated from top to bottom; the first matching rule applies. |
| ignoreCustomErrorsInApdexCalculation | boolean | Exclude ( |
| ignoreHttpErrorsInApdexCalculation | boolean | Exclude ( |
| ignoreJavaScriptErrorsInApdexCalculation | boolean | Exclude ( |
CustomErrorRule objectConfiguration of the custom error in the web application.
| Element | Type | Description |
|---|---|---|
| capture | boolean | Capture ( |
| customAlerting | boolean | Include ( |
| impactApdex | boolean | Include ( |
| keyMatcher | string | The matching operation for the keyPattern.
|
| keyPattern | string | The key of the error to look for. |
| valueMatcher | string | The matching operation for the valuePattern.
|
| valuePattern | string | The value of the error to look for. |
HttpErrorRule objectConfiguration of the HTTP error in the web application.
| Element | Type | Description |
|---|---|---|
| capture | boolean | Capture ( |
| considerBlockedRequests | boolean | If |
| considerForAi | boolean | Include ( |
| considerUnknownErrorCode | boolean | If |
| errorCodes | string | The HTTP status code or status code range to match by. This field is required if considerUnknownErrorCode AND considerBlockedRequests are both set to |
| filter | string | The matching rule for the URL.
|
| filterByUrl | boolean | If |
| impactApdex | boolean | Include ( |
| url | string | The URL to look for. |
{"customErrorRules": [{"capture": true,"customAlerting": true,"impactApdex": true,"keyMatcher": "BEGINS_WITH","keyPattern": "string","valueMatcher": "BEGINS_WITH","valuePattern": "string"}],"httpErrorRules": [{"capture": true,"considerBlockedRequests": true,"considerForAi": true,"considerUnknownErrorCode": true,"errorCodes": "400","filter": "BEGINS_WITH","filterByUrl": true,"impactApdex": true,"url": "string"}],"ignoreCustomErrorsInApdexCalculation": true,"ignoreHttpErrorsInApdexCalculation": true,"ignoreJavaScriptErrorsInApdexCalculation": true}