updated config for existing components, new components, wk config uploaded
parent
1c2beef761
commit
fd9880a63b
File diff suppressed because it is too large
Load Diff
|
|
@ -795,6 +795,29 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "SERVICE",
|
||||||
|
"enabled": true,
|
||||||
|
"valueFormat": "Send destination to vehicle (Legacy)",
|
||||||
|
"propagationTypes": [],
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"key": {
|
||||||
|
"attribute": "SERVICE_TAGS"
|
||||||
|
},
|
||||||
|
"comparisonInfo": {
|
||||||
|
"type": "TAG",
|
||||||
|
"operator": "EQUALS",
|
||||||
|
"value": {
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "send-to-car-service"
|
||||||
|
},
|
||||||
|
"negate": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "SERVICE",
|
"type": "SERVICE",
|
||||||
|
|
@ -818,6 +841,29 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "SERVICE",
|
||||||
|
"enabled": true,
|
||||||
|
"valueFormat": "Send destination to vehicle (MGU)",
|
||||||
|
"propagationTypes": [],
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"key": {
|
||||||
|
"attribute": "SERVICE_TAGS"
|
||||||
|
},
|
||||||
|
"comparisonInfo": {
|
||||||
|
"type": "TAG",
|
||||||
|
"operator": "EQUALS",
|
||||||
|
"value": {
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "send-to-car-service"
|
||||||
|
},
|
||||||
|
"negate": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "SERVICE",
|
"type": "SERVICE",
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,22 @@
|
||||||
|
## Custom Metrics - Multidimensional Analysis
|
||||||
|
|
||||||
|
Dynatrace out-of-the-box metrics generally focus on availability, failure rate, and performance.
|
||||||
|
Of course, there are many other use cases for service metrics that are specific to a particular service, a particular customer, or for whatever reason have significant relevance for your business.
|
||||||
|
|
||||||
|
You can create custom metrics using the Multidimensional Analysis (Diagnostic Tools > Create Analysis View).
|
||||||
|
You will be able to plot your custom metric and see if it's what you're expecting.
|
||||||
|
|
||||||
|
To create the custom metric, follow these steps:
|
||||||
|
|
||||||
|
1. Add the following line to the config
|
||||||
|
|
||||||
|
- MyNewMetric: template-custom-metric.json
|
||||||
|
|
||||||
|
2. Customize your metrics:
|
||||||
|
|
||||||
|
MyNewMetric:
|
||||||
|
- name: cd_mycomponent ReqPerInstance
|
||||||
|
- mz: cd_mycomponent
|
||||||
|
- key: calc:service.cdmycomponentReqPerInstance
|
||||||
|
- splitByDimension: {Service:Instance}
|
||||||
|
- condition:
|
||||||
|
|
@ -0,0 +1,54 @@
|
||||||
|
{
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"attribute": "SERVICE_TAG",
|
||||||
|
"comparisonInfo": {
|
||||||
|
"comparison": "EQUALS",
|
||||||
|
"negate": false,
|
||||||
|
"type": "TAG",
|
||||||
|
"value": {
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "APIGW-WS"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"attribute": "SERVICE_DISPLAY_NAME",
|
||||||
|
"comparisonInfo": {
|
||||||
|
"caseSensitive": false,
|
||||||
|
"comparison": "CONTAINS",
|
||||||
|
"negate": false,
|
||||||
|
"type": "FAST_STRING",
|
||||||
|
"value": "int-api.bmwgroup.com"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dimensionDefinition": {
|
||||||
|
"dimension": "{HTTP-Status}",
|
||||||
|
"name": "Dimension",
|
||||||
|
"placeholders": [],
|
||||||
|
"topX": 10,
|
||||||
|
"topXAggregation": "SINGLE_VALUE",
|
||||||
|
"topXDirection": "DESCENDING"
|
||||||
|
},
|
||||||
|
"enabled": true,
|
||||||
|
"entityId": null,
|
||||||
|
"managementZones": [
|
||||||
|
"CD_APIGW"
|
||||||
|
],
|
||||||
|
"metadata": {
|
||||||
|
"clusterVersion": "1.211.111.20210222-093946",
|
||||||
|
"configurationVersions": [
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"metricDefinition": {
|
||||||
|
"metric": "REQUEST_COUNT",
|
||||||
|
"requestAttribute": null
|
||||||
|
},
|
||||||
|
"name": "{{.name}}",
|
||||||
|
"tsmMetricKey": "calc:service.api_gw_byhttpstatus",
|
||||||
|
"unit": "COUNT",
|
||||||
|
"unitDisplayName": ""
|
||||||
|
}
|
||||||
|
|
@ -4,6 +4,8 @@ config:
|
||||||
- RsEventStatus: RsEventStatus.json
|
- RsEventStatus: RsEventStatus.json
|
||||||
- RsType: RsType.json
|
- RsType: RsType.json
|
||||||
- MSGSVCPOI-HTTP4xx: MSGSVCPOI-HTTP4xx.json
|
- MSGSVCPOI-HTTP4xx: MSGSVCPOI-HTTP4xx.json
|
||||||
|
- api-gw-byHttpStatus: api-gw-byHttpStatus.json
|
||||||
|
- MSGSVCPOI-Failedrequestcount: MSGSVCPOI-Failedrequestcount.json
|
||||||
MSGSVCPOI:
|
MSGSVCPOI:
|
||||||
- name: MSGSVC POI
|
- name: MSGSVC POI
|
||||||
RsEventStatus:
|
RsEventStatus:
|
||||||
|
|
@ -16,3 +18,5 @@ MSGSVCPOI-Failedrequestcount:
|
||||||
- name: MSGSVC POI - Failed request count
|
- name: MSGSVC POI - Failed request count
|
||||||
MSGSVCPOI-HTTP4xx:
|
MSGSVCPOI-HTTP4xx:
|
||||||
- name: MSGSVC POI - HTTP 4xx
|
- name: MSGSVC POI - HTTP 4xx
|
||||||
|
api-gw-byHttpStatus:
|
||||||
|
- name: api-gw-byHttpStatus
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"displayName": "{{.name}}",
|
||||||
|
"enabled": true,
|
||||||
|
"metadata": {
|
||||||
|
"clusterVersion": "1.212.88.20210305-151445",
|
||||||
|
"configurationVersions": [
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"nameFormat": "{ProcessGroup:DetectedName} - {HostGroup:Name/[^\\_]*$}",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"negate": false,
|
||||||
|
"operator": "EQUALS",
|
||||||
|
"type": "TAG",
|
||||||
|
"value": {
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "ASBC-HAL"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "PROCESS_GROUP_TAGS"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type": "PROCESS_GROUP"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"displayName": "{{.name}}",
|
||||||
|
"enabled": true,
|
||||||
|
"metadata": {
|
||||||
|
"clusterVersion": "1.212.88.20210305-151445",
|
||||||
|
"configurationVersions": [
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"nameFormat": "{ProcessGroup:DetectedName} - {HostGroup:Name/[^\\_]*$}",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"negate": false,
|
||||||
|
"operator": "EQUALS",
|
||||||
|
"type": "TAG",
|
||||||
|
"value": {
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "ASBC-RSU"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "PROCESS_GROUP_TAGS"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type": "PROCESS_GROUP"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"displayName": "{{.name}}",
|
||||||
|
"enabled": true,
|
||||||
|
"metadata": {
|
||||||
|
"clusterVersion": "1.212.88.20210305-151445",
|
||||||
|
"configurationVersions": [
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"nameFormat": "{ProcessGroup:DetectedName} - {HostGroup:Name/[^\\_]*$}",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"negate": false,
|
||||||
|
"operator": "EQUALS",
|
||||||
|
"type": "TAG",
|
||||||
|
"value": {
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "ASBC-SMACC"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "PROCESS_GROUP_TAGS"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type": "PROCESS_GROUP"
|
||||||
|
}
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"displayName": "{{.name}}",
|
"displayName": "{{.name}}",
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"clusterVersion": "1.211.111.20210222-093946",
|
"clusterVersion": "1.212.88.20210305-151445",
|
||||||
"configurationVersions": [
|
"configurationVersions": [
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,12 @@
|
||||||
"displayName": "{{.name}}",
|
"displayName": "{{.name}}",
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"clusterVersion": "1.211.111.20210222-093946",
|
"clusterVersion": "1.212.88.20210305-151445",
|
||||||
"configurationVersions": [
|
"configurationVersions": [
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"nameFormat": "{ProcessGroup:KubernetesContainerName} - {ProcessGroup:Environment:Environment}",
|
"nameFormat": "{ProcessGroup:KubernetesNamespace} - {ProcessGroup:KubernetesFullPodName/buffet-(.*?)-}",
|
||||||
"rules": [
|
"rules": [
|
||||||
{
|
{
|
||||||
"comparisonInfo": {
|
"comparisonInfo": {
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
"value": {
|
"value": {
|
||||||
"context": "CONTEXTLESS",
|
"context": "CONTEXTLESS",
|
||||||
"key": "Component",
|
"key": "Component",
|
||||||
"value": "Infotainment"
|
"value": "Buffet"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"key": {
|
"key": {
|
||||||
|
|
@ -28,13 +28,13 @@
|
||||||
"comparisonInfo": {
|
"comparisonInfo": {
|
||||||
"caseSensitive": true,
|
"caseSensitive": true,
|
||||||
"negate": false,
|
"negate": false,
|
||||||
"operator": "EQUALS",
|
"operator": "BEGINS_WITH",
|
||||||
"type": "STRING",
|
"type": "STRING",
|
||||||
"value": "id5-app"
|
"value": "buffet-"
|
||||||
},
|
},
|
||||||
"key": {
|
"key": {
|
||||||
"attribute": "PROCESS_GROUP_PREDEFINED_METADATA",
|
"attribute": "PROCESS_GROUP_PREDEFINED_METADATA",
|
||||||
"dynamicKey": "KUBERNETES_CONTAINER_NAME",
|
"dynamicKey": "KUBERNETES_FULL_POD_NAME",
|
||||||
"type": "PROCESS_PREDEFINED_METADATA_KEY"
|
"type": "PROCESS_PREDEFINED_METADATA_KEY"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"displayName": "{{.name}}",
|
"displayName": "{{.name}}",
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"clusterVersion": "1.211.111.20210222-093946",
|
"clusterVersion": "1.212.88.20210305-151445",
|
||||||
"configurationVersions": [
|
"configurationVersions": [
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"displayName": "{{.name}}",
|
"displayName": "{{.name}}",
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"clusterVersion": "1.211.111.20210222-093946",
|
"clusterVersion": "1.212.88.20210305-151445",
|
||||||
"configurationVersions": [
|
"configurationVersions": [
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,22 @@
|
||||||
config:
|
config:
|
||||||
|
- ASBC-HAL: ASBC-HAL.json
|
||||||
|
- ASBC-RSU: ASBC-RSU.json
|
||||||
|
- ASBC-SMACC: ASBC-SMACC.json
|
||||||
|
- BillingBuffet-Microservices-FullPodname: BillingBuffet-Microservices-FullPodname.json
|
||||||
|
- KubernetesNaming: KubernetesNaming.json
|
||||||
- ApacheWebServers: ApacheWebServers.json
|
- ApacheWebServers: ApacheWebServers.json
|
||||||
- CDIPrenaming: CDIPrenaming.json
|
- CDIPrenaming: CDIPrenaming.json
|
||||||
- KubernetesNaming: KubernetesNaming.json
|
ASBC-HAL:
|
||||||
- Infotainment-VCISInformationRule-id5-app: Infotainment-VCISInformationRule-id5-app.json
|
- name: ASBC-HAL
|
||||||
|
ASBC-RSU:
|
||||||
|
- name: ASBC-RSU
|
||||||
|
ASBC-SMACC:
|
||||||
|
- name: ASBC-SMACC
|
||||||
ApacheWebServers:
|
ApacheWebServers:
|
||||||
- name: Apache Web Servers
|
- name: Apache Web Servers
|
||||||
|
BillingBuffet-Microservices-FullPodname:
|
||||||
|
- name: Billing Buffet - Microservices - Full Pod name
|
||||||
CDIPrenaming:
|
CDIPrenaming:
|
||||||
- name: CDIP renaming
|
- name: CDIP renaming
|
||||||
|
|
||||||
Infotainment-VCISInformationRule-id5-app:
|
|
||||||
- name: Infotainment - VCIS Information Rule - id5-app
|
|
||||||
- skipDeployment: "true"
|
|
||||||
|
|
||||||
KubernetesNaming:
|
KubernetesNaming:
|
||||||
- name: Kubernetes Naming
|
- name: Kubernetes Naming
|
||||||
|
|
|
||||||
|
|
@ -1,46 +0,0 @@
|
||||||
{
|
|
||||||
"displayName": "{{.name}}",
|
|
||||||
"enabled": true,
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.211.111.20210222-093946",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"nameFormat": "{Service:DetectedName} - {ProcessGroup:KubernetesNamespace} - {ProcessGroup:Kubernetes:environment}",
|
|
||||||
"rules": [
|
|
||||||
{
|
|
||||||
"comparisonInfo": {
|
|
||||||
"negate": false,
|
|
||||||
"operator": "EQUALS",
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "PaaS",
|
|
||||||
"value": "Orbit"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"key": {
|
|
||||||
"attribute": "SERVICE_TAGS"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": null,
|
|
||||||
"negate": false,
|
|
||||||
"operator": "EXISTS",
|
|
||||||
"type": "STRING",
|
|
||||||
"value": null
|
|
||||||
},
|
|
||||||
"key": {
|
|
||||||
"attribute": "PROCESS_GROUP_CUSTOM_METADATA",
|
|
||||||
"dynamicKey": {
|
|
||||||
"key": "environment",
|
|
||||||
"source": "KUBERNETES"
|
|
||||||
},
|
|
||||||
"type": "PROCESS_CUSTOM_METADATA_KEY"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "SERVICE"
|
|
||||||
}
|
|
||||||
|
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
"displayName": "{{.name}}",
|
||||||
|
"enabled": true,
|
||||||
|
"metadata": {
|
||||||
|
"clusterVersion": "1.211.111.20210222-093946",
|
||||||
|
"configurationVersions": [
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"nameFormat": "{Service:DatabaseName} - E2E",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"negate": false,
|
||||||
|
"operator": "EQUALS",
|
||||||
|
"type": "SERVICE_TYPE",
|
||||||
|
"value": "DATABASE_SERVICE"
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "SERVICE_TYPE"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"caseSensitive": true,
|
||||||
|
"negate": false,
|
||||||
|
"operator": "EQUALS",
|
||||||
|
"type": "STRING",
|
||||||
|
"value": "pia00256.bmwgroup.net"
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "SERVICE_DATABASE_HOST_NAME"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type": "SERVICE"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
"displayName": "{{.name}}",
|
||||||
|
"enabled": true,
|
||||||
|
"metadata": {
|
||||||
|
"clusterVersion": "1.211.111.20210222-093946",
|
||||||
|
"configurationVersions": [
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"nameFormat": "{Service:DatabaseName} - PROD",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"negate": false,
|
||||||
|
"operator": "EQUALS",
|
||||||
|
"type": "SERVICE_TYPE",
|
||||||
|
"value": "DATABASE_SERVICE"
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "SERVICE_TYPE"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"caseSensitive": true,
|
||||||
|
"negate": false,
|
||||||
|
"operator": "EQUALS",
|
||||||
|
"type": "STRING",
|
||||||
|
"value": "ppa00247.bmwgroup.net"
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "SERVICE_DATABASE_HOST_NAME"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type": "SERVICE"
|
||||||
|
}
|
||||||
|
|
@ -1,21 +1,16 @@
|
||||||
config:
|
config:
|
||||||
- BASEservicename-environment: BASEservicename-environment.json
|
- ClassicITservicename-INT: ClassicITservicename-INT.json
|
||||||
- rsrs-360rs-cockpitwebservicename-microservicename-: rsrs-360rs-cockpitwebservicename-microservicename-.json
|
- ClassicITservicename-E2E: ClassicITservicename-E2E.json
|
||||||
- AWSOrbitservicename-namespace-environment: AWSOrbitservicename-namespace-environment.json
|
- AzureRuntimeservicename-DLY: AzureRuntimeservicename-DLY.json
|
||||||
|
- ClassicITservicename-TEST: ClassicITservicename-TEST.json
|
||||||
|
- AzureRuntimeservicename-TEST: AzureRuntimeservicename-TEST.json
|
||||||
- OpenShiftservicename-containername-environment: OpenShiftservicename-containername-environment.json
|
- OpenShiftservicename-containername-environment: OpenShiftservicename-containername-environment.json
|
||||||
- ClassicITservicename-PROD: ClassicITservicename-PROD.json
|
- ClassicITservicename-PROD: ClassicITservicename-PROD.json
|
||||||
- ClassicITservicename-E2E: ClassicITservicename-E2E.json
|
- BASEservicename-environment: BASEservicename-environment.json
|
||||||
- ClassicITservicename-INT: ClassicITservicename-INT.json
|
|
||||||
- ClassicITservicename-TEST: ClassicITservicename-TEST.json
|
|
||||||
- AzureRuntimeservicename-PROD: AzureRuntimeservicename-PROD.json
|
|
||||||
- AzureRuntimeservicename-INT: AzureRuntimeservicename-INT.json
|
- AzureRuntimeservicename-INT: AzureRuntimeservicename-INT.json
|
||||||
- AzureRuntimeservicename-DLY: AzureRuntimeservicename-DLY.json
|
- AzureRuntimeservicename-PROD: AzureRuntimeservicename-PROD.json
|
||||||
- AzureRuntimeservicename-TEST: AzureRuntimeservicename-TEST.json
|
- VoiceServices-epldb-namingE2E: VoiceServices-epldb-namingE2E.json
|
||||||
|
- VoiceServices-epldb-namingPROD: VoiceServices-epldb-namingPROD.json
|
||||||
AWSOrbitservicename-namespace-environment:
|
|
||||||
- name: AWS Orbit <service name> - <namespace> - <environment>
|
|
||||||
- skipDeployment: "true"
|
|
||||||
|
|
||||||
AzureRuntimeservicename-DLY:
|
AzureRuntimeservicename-DLY:
|
||||||
- name: Azure Runtime <service name> - DLY
|
- name: Azure Runtime <service name> - DLY
|
||||||
AzureRuntimeservicename-INT:
|
AzureRuntimeservicename-INT:
|
||||||
|
|
@ -36,7 +31,7 @@ ClassicITservicename-TEST:
|
||||||
- name: Classic IT <service name> - TEST
|
- name: Classic IT <service name> - TEST
|
||||||
OpenShiftservicename-containername-environment:
|
OpenShiftservicename-containername-environment:
|
||||||
- name: OpenShift <service name> - <container name> - <environment>
|
- name: OpenShift <service name> - <container name> - <environment>
|
||||||
|
VoiceServices-epldb-namingE2E:
|
||||||
rsrs-360rs-cockpitwebservicename-microservicename-:
|
- name: Voice Services - epl db - naming E2E
|
||||||
- name: rs/rs-360/rs-cockpit <web service name> - <microservice name> - <environment>
|
VoiceServices-epldb-namingPROD:
|
||||||
- skipDeployment: "true"
|
- name: Voice Services - epl db - naming PROD
|
||||||
|
|
|
||||||
|
|
@ -1,43 +0,0 @@
|
||||||
{
|
|
||||||
"displayName": "{{.name}}",
|
|
||||||
"enabled": true,
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.211.111.20210222-093946",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"nameFormat": "{Service:WebServiceName} - {ProcessGroup:Kubernetes:microservice} - {ProcessGroup:Kubernetes:environment}",
|
|
||||||
"rules": [
|
|
||||||
{
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"negate": false,
|
|
||||||
"operator": "CONTAINS",
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "rs"
|
|
||||||
},
|
|
||||||
"key": {
|
|
||||||
"attribute": "PROCESS_GROUP_CUSTOM_METADATA",
|
|
||||||
"dynamicKey": {
|
|
||||||
"key": "microservice",
|
|
||||||
"source": "KUBERNETES"
|
|
||||||
},
|
|
||||||
"type": "PROCESS_CUSTOM_METADATA_KEY"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": null,
|
|
||||||
"negate": false,
|
|
||||||
"operator": "EXISTS",
|
|
||||||
"type": "STRING",
|
|
||||||
"value": null
|
|
||||||
},
|
|
||||||
"key": {
|
|
||||||
"attribute": "SERVICE_WEB_SERVICE_NAME"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "SERVICE"
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/me/service/remoteservices/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/me/service/remoteservices/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/store/v[0-9]{1}/[a-zA-Z0-9]{17}/external/offer"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/store/v{version}/\u003cVIN\u003e/external/offer",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/store/v[0-9]{1}/[a-zA-Z0-9]{17}/offersAndPortfolios"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/store/v{version}/\u003cVIN\u003e/offersAndPortfolios",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/vehicle/dynamic/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/vehicle/dynamic/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/vehicle/image/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/vehicle/image/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/vehicle/servicepartner/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/vehicle/servicepartner/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/vehicle/service/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/vehicle/service/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/vehicle/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/vehicle/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,60 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/currentDriver/vehicle/[a-zA-Z0-9]{17}/driver"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": true,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/currentDriver/vehicle/[a-zA-Z0-9]{17}/driver/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "current-driver-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/currentDriver/vehicle/\u003cVIN\u003e/driver",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/currentDriver/vehicle/[a-zA-Z0-9]{17}/driver/[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "current-driver-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/currentDriver/vehicle/\u003cVIN\u003e/driver/[UUID]",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/destination/cars/[a-zA-Z0-9]{17}/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "destination-composite-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/destinations/cars/\u003cVIN\u003e/{suffix}",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/api/v[0-9]{1}/destinations/cars/[a-zA-Z0-9]{17}/(.*+)",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "suffix",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/presentation/remote-commands/[a-zA-Z0-9]{17}/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "vehicle-remote-commands-composite-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/presentation/remote-commands/\u003cVIN\u003e/{suffix}",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/api/v[0-9]{1}/presentation/remote-commands/[a-zA-Z0-9]{17}/(.*+)",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "suffix",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/presentation/remote-history/[a-zA-Z0-9]{17}/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "vehicle-remote-commands-composite-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/presentation/remote-history/\u003cVIN\u003e/{suffix}",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/api/v[0-9]{1}/presentation/remote-history/[a-zA-Z0-9]{17}/(.*+)",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "suffix",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/presentation/vehicles/[a-zA-Z0-9]{17}/images"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "image-composite-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/presentation/vehicles/\u003cVIN\u003e/images",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/recordings/vehicle/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "remote-360-composite-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/recordings/vehicle/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/users/[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12}/vehicles/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "vehicle-user-relationship-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/users/[UUID]/vehicles/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/vehicle/[a-zA-Z0-9]{17}/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "remote-360-composite-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/vehicle/\u003cVIN\u003e/{suffix}",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/api/v[0-9]{1}/vehicle/[a-zA-Z0-9]{17}/(.*+)",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "suffix",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,60 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/vehicles/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": true,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/vehicles/[a-zA-Z0-9]{17}/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "vehicle-mapping-composite-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/vehicles/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/vehicles/[a-zA-Z0-9]{17}/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "vehicle-composite-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/vehicles/\u003cVIN\u003e/{suffix}",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/api/v[0-9]{1}/vehicles/[a-zA-Z0-9]{17}/(.*+)",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "suffix",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/vehicles/[a-zA-Z0-9]{17}/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "vehicle-mapping-composite-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/vehicles/\u003cVIN\u003e/{suffix}",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/api/v[0-9]{1}/vehicles/[a-zA-Z0-9]{17}/(.*+)",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "suffix",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/api/v[0-9]{1}/vehicles/[a-zA-Z0-9]{17}/users"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "vehicle-user-relationship-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/api/v{version}/vehicles/\u003cVIN\u003e/users",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/ccg/vehicle/chargingProfile/generic/internal/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "CCG"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/ccg/vehicle/chargingProfile/generic/internal/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/ccg/vehicle/chargingProfile/generic/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "CCG"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/ccg/vehicle/chargingProfile/generic/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/ccg/vehicle/chargingProfile/internal/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "CCG"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/ccg/vehicle/chargingProfile/internal/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/ccg/vehicle/chargingProfile/map/generic/internal/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "CCG"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/ccg/vehicle/chargingProfile/map/generic/internal/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/ccg/vehicle/chargingProfile/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "CCG"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/ccg/vehicle/chargingProfile/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/ccg/vehicle/climateTimer/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "CCG"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/ccg/vehicle/climateTimer/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/ccg/vehicle/efficiency/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "CCG"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/ccg/vehicle/efficiency/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/ccg/vehicle/location/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "CCG"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/ccg/vehicle/location/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/ccg/vehicle/service/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "CCG"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/ccg/vehicle/service/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/ccg/vehicle/state/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "CCG"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/ccg/vehicle/state/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/cdc/v[0-9]{1}/internet/vehicle/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/cdc/v{version}/internet/vehicle/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "BEGINS_WITH",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "https://atc-int.bmwgroup.net/jira/rest/api/latest/issue/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "Connected Backend Services"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "https://atc-int.bmwgroup.net/jira/rest/api/latest/issue/\u003cJIRATicketNumber\u003e",
|
|
||||||
"placeholders": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "https://b2vii.muc:4194/svds/vehicle/internal/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "https://b2vii.muc:4194/svds/vehicle/internal/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "https://b2vii.muc:4194/svds/vehicle/users/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "https://b2vii.muc:4194/svds/vehicle/users/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "https://b2vii.muc:4194/svds/vehicle/vinLong/legacy/v[0-9]{1}/[a-zA-Z0-9]"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "https://b2vii.muc:4194/svds/vehicle/vinLong/legacy/v{version}/\u003cID\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "https://itsmsuite-gate-int.bmwgroup.net/iris/incident-services/v1/incident/INC[0-9]"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "ENDS_WITH",
|
|
||||||
"negate": true,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/workinfo"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "Connected Backend Services"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "https://itsmsuite-gate-int.bmwgroup.net/iris/incident-services/v1/incident/\u003cITSMTicketNumber\u003e",
|
|
||||||
"placeholders": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
{
|
|
||||||
"metadata": {
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317"
|
|
||||||
},
|
|
||||||
"enabled": true,
|
|
||||||
"namingPattern": "https://itsmsuite-gate-int.bmwgroup.net/iris/incident-services/v1/incident/<ITSMTicketNumber>/workinfo",
|
|
||||||
"managementZones": [],
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"type": "STRING",
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"value": "https://itsmsuite-gate-int.bmwgroup.net/iris/incident-services/v1/incident/INC[0-9]/workinfo",
|
|
||||||
"negate": false,
|
|
||||||
"caseSensitive": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"type": "STRING",
|
|
||||||
"comparison": "ENDS_WITH",
|
|
||||||
"value": "/workinfo",
|
|
||||||
"negate": false,
|
|
||||||
"caseSensitive": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"type": "TAG",
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "Connected Backend Services"
|
|
||||||
},
|
|
||||||
"negate": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"placeholders": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "http://vehicle-service-background.service.consul/v[0-9]{1}/vehicle/[a-zA-Z0-9]{17}/properties"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "vehicle-shadow-event-processor"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "http://vehicle-service-background.service.consul/v{version}/vehicle/\u003cVIN\u003e/properties",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "REQUEST_NAME",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/npm/registry/provisionedAppNames/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "App Repository"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/npm/registry/provisionedAppNames/\u003cVIN\u003e",
|
|
||||||
"placeholders": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/remoteservices/rsapi/v[0-9]{1}/[a-zA-Z0-9]{17}/history"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/remoteservices/rsapi/v{version}/\u003cVIN\u003e/history",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/remoteservices/rsapi/v[0-9]{1}/[a-zA-Z0-9]{17}/state/execution"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/remoteservices/rsapi/v{version}/\u003cVIN\u003e/state/execution",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/remoteservices/rs/v[0-9]{1}/events/vehicle/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/remoteservices/rs/v{version}/events/vehicle/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/remoteservices/rs/v[0-9]{1}/vehicle/[a-zA-Z0-9]{17}/services"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/remoteservices/rs/v{version}/vehicle/\u003cVIN\u003e/services",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,175 +0,0 @@
|
||||||
config:
|
|
||||||
- svcinfoconfirmationvversionVINstate: svcinfoconfirmationvversionVINstate.json
|
|
||||||
- smc2-e2eomcvversionvehiclesVINsupported: smc2-e2eomcvversionvehiclesVINsupported.json
|
|
||||||
- remoteservicesrsapivversionVINhistory: remoteservicesrsapivversionVINhistory.json
|
|
||||||
- remoteservicesrsvversioneventsvehicleVIN: remoteservicesrsvversioneventsvehicleVIN.json
|
|
||||||
- cdcvversioninternetvehicleVIN: cdcvversioninternetvehicleVIN.json
|
|
||||||
- apistorevversionVINoffersAndPortfolios: apistorevversionVINoffersAndPortfolios.json
|
|
||||||
- apimeserviceremoteservicesvversionVIN: apimeserviceremoteservicesvversionVIN.json
|
|
||||||
- apivehicledynamicvversionVIN: apivehicledynamicvversionVIN.json
|
|
||||||
- apivehicleservicevversionVIN: apivehicleservicevversionVIN.json
|
|
||||||
- apivehicleservicepartnervversionVIN: apivehicleservicepartnervversionVIN.json
|
|
||||||
- apivehicleimagevversionVIN: apivehicleimagevversionVIN.json
|
|
||||||
- apivehiclevversionVIN: apivehiclevversionVIN.json
|
|
||||||
- apistorevversionVINexternaloffer: apistorevversionVINexternaloffer.json
|
|
||||||
- svdsvehicleimagesvversionVIN: svdsvehicleimagesvversionVIN.json
|
|
||||||
- rs-360rsvversionrecordingsvehicleVIN: rs-360rsvversionrecordingsvehicleVIN.json
|
|
||||||
- remoteservicesrsapivversionVINstateexecution: remoteservicesrsapivversionVINstateexecution.json
|
|
||||||
- remoteservicesrsvversionvehicleVINservices: remoteservicesrsvversionvehicleVINservices.json
|
|
||||||
- httpsitsmsuite-gate-intbmwgroupnetirisincident-ser: httpsitsmsuite-gate-intbmwgroupnetirisincident-ser.json
|
|
||||||
- httpsatc-intbmwgroupnetjirarestapilatestissueJIRAT: httpsatc-intbmwgroupnetjirarestapilatestissueJIRAT.json
|
|
||||||
- vversionvehicleVINsuffix: vversionvehicleVINsuffix.json
|
|
||||||
- vversionvehicleVIN: vversionvehicleVIN.json
|
|
||||||
- vversionVINfeatures: vversionVINfeatures.json
|
|
||||||
- apivversioncurrentDrivervehicleVINdriverUUID: apivversioncurrentDrivervehicleVINdriverUUID.json
|
|
||||||
- apivversioncurrentDrivervehicleVINdriver: apivversioncurrentDrivervehicleVINdriver.json
|
|
||||||
- serviceapivehiclevversiongcidUUIDvinVINpds: serviceapivehiclevversiongcidUUIDvinVINpds.json
|
|
||||||
- serviceapivehiclevversiongcidUUIDvinVIN: serviceapivehiclevversiongcidUUIDvinVIN.json
|
|
||||||
- apivversionpresentationvehiclesVINimages: apivversionpresentationvehiclesVINimages.json
|
|
||||||
- apivversionusersUUIDvehiclesVIN: apivversionusersUUIDvehiclesVIN.json
|
|
||||||
- apivversionvehiclesVINusers: apivversionvehiclesVINusers.json
|
|
||||||
- npmregistryprovisionedAppNamesVIN: npmregistryprovisionedAppNamesVIN.json
|
|
||||||
- httpvehicle-service-backgroundserviceconsulvversio: httpvehicle-service-backgroundserviceconsulvversio.json
|
|
||||||
- vversionvehicleVINstatus: vversionvehicleVINstatus.json
|
|
||||||
- vversionmotoristUUIDagentsVIN-suffix: vversionmotoristUUIDagentsVIN-suffix.json
|
|
||||||
- vehiclesVINinfo: vehiclesVINinfo.json
|
|
||||||
- vversionvehiclesVINrsustatus: vversionvehiclesVINrsustatus.json
|
|
||||||
- vversionvehiclesVINreleasenotes: vversionvehiclesVINreleasenotes.json
|
|
||||||
- ccgvehicleservicevversionVIN: ccgvehicleservicevversionVIN.json
|
|
||||||
- ccgvehicleefficiencyvversionVIN: ccgvehicleefficiencyvversionVIN.json
|
|
||||||
- ccgvehicleclimateTimervversionVIN: ccgvehicleclimateTimervversionVIN.json
|
|
||||||
- ccgvehiclechargingProfilegenericinternalvversionVI: ccgvehiclechargingProfilegenericinternalvversionVI.json
|
|
||||||
- ccgvehiclechargingProfilevversionVIN: ccgvehiclechargingProfilevversionVIN.json
|
|
||||||
- ccgvehiclechargingProfileinternalvversionVIN: ccgvehiclechargingProfileinternalvversionVIN.json
|
|
||||||
- ccgvehiclechargingProfilegenericvversionVIN: ccgvehiclechargingProfilegenericvversionVIN.json
|
|
||||||
- ccgvehiclelocationvversionVIN: ccgvehiclelocationvversionVIN.json
|
|
||||||
- ccgvehiclestatevversionVIN: ccgvehiclestatevversionVIN.json
|
|
||||||
- ccgvehiclechargingProfilemapgenericinternalvversio: ccgvehiclechargingProfilemapgenericinternalvversio.json
|
|
||||||
- apivversionvehiclesVIN: apivversionvehiclesVIN.json
|
|
||||||
- apivversionrecordingsvehicleVIN: apivversionrecordingsvehicleVIN.json
|
|
||||||
- apivversionvehicleVINsuffix: apivversionvehicleVINsuffix.json
|
|
||||||
- apivversionvehiclesVINsuffix-vcs: apivversionvehiclesVINsuffix-vcs.json
|
|
||||||
- apivversionvehiclesVINsuffix-vmcs: apivversionvehiclesVINsuffix-vmcs.json
|
|
||||||
- apivversiondestinationscarsVINsuffix: apivversiondestinationscarsVINsuffix.json
|
|
||||||
- apivversionpresentationremote-historyVINsuffix: apivversionpresentationremote-historyVINsuffix.json
|
|
||||||
- apivversionpresentationremote-commandsVINsuffix: apivversionpresentationremote-commandsVINsuffix.json
|
|
||||||
- httpsb2viimuc4194svdsvehicleusersvversionVIN: httpsb2viimuc4194svdsvehicleusersvversionVIN.json
|
|
||||||
- httpsb2viimuc4194svdsvehicleinternalvversionVIN: httpsb2viimuc4194svdsvehicleinternalvversionVIN.json
|
|
||||||
- httpsb2viimuc4194svdsvehiclevinLonglegacyvversionI: httpsb2viimuc4194svdsvehiclevinLonglegacyvversionI.json
|
|
||||||
- httpsitsmsuite-gate-intbmwgroupnetirisincident-wor: httpsitsmsuite-gate-intbmwgroupnetirisincident-wor.json
|
|
||||||
apimeserviceremoteservicesvversionVIN:
|
|
||||||
- name: /api/me/service/remoteservices/v{version}/<VIN>
|
|
||||||
apistorevversionVINexternaloffer:
|
|
||||||
- name: /api/store/v{version}/<VIN>/external/offer
|
|
||||||
apistorevversionVINoffersAndPortfolios:
|
|
||||||
- name: /api/store/v{version}/<VIN>/offersAndPortfolios
|
|
||||||
apivehicledynamicvversionVIN:
|
|
||||||
- name: /api/vehicle/dynamic/v{version}/<VIN>
|
|
||||||
apivehicleimagevversionVIN:
|
|
||||||
- name: /api/vehicle/image/v{version}/<VIN>
|
|
||||||
apivehicleservicepartnervversionVIN:
|
|
||||||
- name: /api/vehicle/servicepartner/v{version}/<VIN>
|
|
||||||
apivehicleservicevversionVIN:
|
|
||||||
- name: /api/vehicle/service/v{version}/<VIN>
|
|
||||||
apivehiclevversionVIN:
|
|
||||||
- name: /api/vehicle/v{version}/<VIN>
|
|
||||||
apivversioncurrentDrivervehicleVINdriver:
|
|
||||||
- name: /api/v{version}/currentDriver/vehicle/<VIN>/driver
|
|
||||||
apivversioncurrentDrivervehicleVINdriverUUID:
|
|
||||||
- name: /api/v{version}/currentDriver/vehicle/<VIN>/driver/[UUID]
|
|
||||||
apivversiondestinationscarsVINsuffix:
|
|
||||||
- name: /api/v{version}/destinations/cars/<VIN>/{suffix}
|
|
||||||
apivversionpresentationremote-commandsVINsuffix:
|
|
||||||
- name: /api/v{version}/presentation/remote-commands/<VIN>/{suffix}
|
|
||||||
apivversionpresentationremote-historyVINsuffix:
|
|
||||||
- name: /api/v{version}/presentation/remote-history/<VIN>/{suffix}
|
|
||||||
apivversionpresentationvehiclesVINimages:
|
|
||||||
- name: /api/v{version}/presentation/vehicles/<VIN>/images
|
|
||||||
apivversionrecordingsvehicleVIN:
|
|
||||||
- name: /api/v{version}/recordings/vehicle/<VIN>
|
|
||||||
apivversionusersUUIDvehiclesVIN:
|
|
||||||
- name: /api/v{version}/users/[UUID]/vehicles/<VIN>
|
|
||||||
apivversionvehicleVINsuffix:
|
|
||||||
- name: /api/v{version}/vehicle/<VIN>/{suffix}
|
|
||||||
apivversionvehiclesVIN:
|
|
||||||
- name: /api/v{version}/vehicles/<VIN>
|
|
||||||
apivversionvehiclesVINsuffix-vcs:
|
|
||||||
- name: /api/v{version}/vehicles/<VIN>/{suffix} - vcs
|
|
||||||
apivversionvehiclesVINsuffix-vmcs:
|
|
||||||
- name: /api/v{version}/vehicles/<VIN>/{suffix} - vmcs
|
|
||||||
apivversionvehiclesVINusers:
|
|
||||||
- name: /api/v{version}/vehicles/<VIN>/users
|
|
||||||
ccgvehiclechargingProfilegenericinternalvversionVI:
|
|
||||||
- name: /ccg/vehicle/chargingProfile/generic/internal/v{version}/<VIN>
|
|
||||||
ccgvehiclechargingProfilegenericvversionVIN:
|
|
||||||
- name: /ccg/vehicle/chargingProfile/generic/v{version}/<VIN>
|
|
||||||
ccgvehiclechargingProfileinternalvversionVIN:
|
|
||||||
- name: /ccg/vehicle/chargingProfile/internal/v{version}/<VIN>
|
|
||||||
ccgvehiclechargingProfilemapgenericinternalvversio:
|
|
||||||
- name: /ccg/vehicle/chargingProfile/map/generic/internal/v{version}/<VIN>
|
|
||||||
ccgvehiclechargingProfilevversionVIN:
|
|
||||||
- name: /ccg/vehicle/chargingProfile/v{version}/<VIN>
|
|
||||||
ccgvehicleclimateTimervversionVIN:
|
|
||||||
- name: /ccg/vehicle/climateTimer/v{version}/<VIN>
|
|
||||||
ccgvehicleefficiencyvversionVIN:
|
|
||||||
- name: /ccg/vehicle/efficiency/v{version}/<VIN>
|
|
||||||
ccgvehiclelocationvversionVIN:
|
|
||||||
- name: /ccg/vehicle/location/v{version}/<VIN>
|
|
||||||
ccgvehicleservicevversionVIN:
|
|
||||||
- name: /ccg/vehicle/service/v{version}/<VIN>
|
|
||||||
ccgvehiclestatevversionVIN:
|
|
||||||
- name: /ccg/vehicle/state/v{version}/<VIN>
|
|
||||||
cdcvversioninternetvehicleVIN:
|
|
||||||
- name: /cdc/v{version}/internet/vehicle/<VIN>
|
|
||||||
httpsatc-intbmwgroupnetjirarestapilatestissueJIRAT:
|
|
||||||
- name: https://atc-int.bmwgroup.net/jira/rest/api/latest/issue/<JIRATicketNumber>
|
|
||||||
httpsb2viimuc4194svdsvehicleinternalvversionVIN:
|
|
||||||
- name: https://b2vii.muc:4194/svds/vehicle/internal/v{version}/<VIN>
|
|
||||||
httpsb2viimuc4194svdsvehicleusersvversionVIN:
|
|
||||||
- name: https://b2vii.muc:4194/svds/vehicle/users/v{version}/<VIN>
|
|
||||||
httpsb2viimuc4194svdsvehiclevinLonglegacyvversionI:
|
|
||||||
- name: https://b2vii.muc:4194/svds/vehicle/vinLong/legacy/v{version}/<ID>
|
|
||||||
httpsitsmsuite-gate-intbmwgroupnetirisincident-ser:
|
|
||||||
- name: https://itsmsuite-gate-int.bmwgroup.net/iris/incident-services/v1/incident/<ITSMTicketNumber>
|
|
||||||
httpvehicle-service-backgroundserviceconsulvversio:
|
|
||||||
- name: http://vehicle-service-background.service.consul/v{version}/vehicle/<VIN>/properties
|
|
||||||
npmregistryprovisionedAppNamesVIN:
|
|
||||||
- name: /npm/registry/provisionedAppNames/<VIN>
|
|
||||||
remoteservicesrsapivversionVINhistory:
|
|
||||||
- name: /remoteservices/rsapi/v{version}/<VIN>/history
|
|
||||||
remoteservicesrsapivversionVINstateexecution:
|
|
||||||
- name: /remoteservices/rsapi/v{version}/<VIN>/state/execution
|
|
||||||
remoteservicesrsvversioneventsvehicleVIN:
|
|
||||||
- name: /remoteservices/rs/v{version}/events/vehicle/<VIN>
|
|
||||||
remoteservicesrsvversionvehicleVINservices:
|
|
||||||
- name: /remoteservices/rs/v{version}/vehicle/<VIN>/services
|
|
||||||
rs-360rsvversionrecordingsvehicleVIN:
|
|
||||||
- name: /rs-360/rs/v{version}/recordings/vehicle/<VIN>
|
|
||||||
serviceapivehiclevversiongcidUUIDvinVIN:
|
|
||||||
- name: /service/api/vehicle/v{version}/gcid/[UUID]/vin/<VIN>
|
|
||||||
serviceapivehiclevversiongcidUUIDvinVINpds:
|
|
||||||
- name: /service/api/vehicle/v{version}/gcid/[UUID]/vin/<VIN>/pds
|
|
||||||
smc2-e2eomcvversionvehiclesVINsupported:
|
|
||||||
- name: /smc2-e2e/omc/v{version}/vehicles/<VIN>/supported
|
|
||||||
svcinfoconfirmationvversionVINstate:
|
|
||||||
- name: /svcinfo/confirmation/v{version}/<VIN>/state
|
|
||||||
svdsvehicleimagesvversionVIN:
|
|
||||||
- name: /svds/vehicle/images/v{version}/<VIN>
|
|
||||||
vehiclesVINinfo:
|
|
||||||
- name: /vehicles/<VIN>/info
|
|
||||||
vversionVINfeatures:
|
|
||||||
- name: /v{version}/<VIN>/features
|
|
||||||
vversionmotoristUUIDagentsVIN-suffix:
|
|
||||||
- name: /v{version}/motorist/[UUID]/agents/<VIN>-{suffix}
|
|
||||||
vversionvehicleVIN:
|
|
||||||
- name: /v{version}/vehicle/<VIN>
|
|
||||||
vversionvehicleVINstatus:
|
|
||||||
- name: /v{version}/vehicle/<VIN>/status
|
|
||||||
vversionvehicleVINsuffix:
|
|
||||||
- name: /v{version}/vehicle/<VIN>/{suffix}
|
|
||||||
vversionvehiclesVINreleasenotes:
|
|
||||||
- name: /v{version}/vehicles/<VIN>/releasenotes
|
|
||||||
vversionvehiclesVINrsustatus:
|
|
||||||
- name: /v{version}/vehicles/<VIN>/rsustatus
|
|
||||||
httpsitsmsuite-gate-intbmwgroupnetirisincident-wor:
|
|
||||||
- name: httpsitsmsuite-gate-intbmwgroupnetirisincident-wor
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/rs-360/rs/v[0-9]{1}/recordings/vehicle/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/rs-360/rs/v{version}/recordings/vehicle/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,60 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/service/api/vehicle/v[0-9]{1}/gcid/[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12}/vin/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "ENDS_WITH",
|
|
||||||
"negate": true,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/pds"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "Perseus"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/service/api/vehicle/v{version}/gcid/[UUID]/vin/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/service/api/vehicle/v[0-9]{1}/gcid/[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12}/vin/[a-zA-Z0-9]{17}/pds"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "Perseus"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/service/api/vehicle/v{version}/gcid/[UUID]/vin/\u003cVIN\u003e/pds",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/smc2-e2e/omc/v[0-9]{1}/vehicles/[a-zA-Z0-9]{17}/supported"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/smc2-e2e/omc/v{version}/vehicles/\u003cVIN\u003e/supported",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/svcinfo/confirmation/v[0-9]{1}/[a-zA-Z0-9]{17}/state"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/svcinfo/confirmation/v{version}/\u003cVIN\u003e/state",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/svds/vehicle/images/v[0-9]{1}/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/svds/vehicle/images/v{version}/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/vehicles/[a-zA-Z0-9]{17}/info"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "ctns-vehicle-api"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/vehicles/\u003cVIN\u003e/info",
|
|
||||||
"placeholders": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/v[0-9]{1}/[a-zA-Z0-9]{17}/features"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "vehicle-features-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/v{version}/\u003cVIN\u003e/features",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/v[0-9]{1}/motorist/[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12}/agents/[a-zA-Z0-9]{17}-"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "agent-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/v{version}/motorist/[UUID]/agents/\u003cVIN\u003e-{suffix}",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/agents/[a-zA-Z0-9]{17}-(.*+)",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "suffix",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,60 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/v[0-9]{1}/vehicle/[a-zA-Z0-9]{17}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": true,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/v[0-9]{1}/vehicle/[a-zA-Z0-9]{17}/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "vehicle-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/v{version}/vehicle/\u003cVIN\u003e",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/v[0-9]{1}/vehicle/[a-zA-Z0-9]{17}/status"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "vehicle-status-proxy-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/v{version}/vehicle/\u003cVIN\u003e/status",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/v[0-9]{1}/vehicle/[a-zA-Z0-9]{17}/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "vehicle-service"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/v{version}/vehicle/\u003cVIN\u003e/{suffix}",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v[0-9]{1}/vehicle/[a-zA-Z0-9]{17}/(.*+)",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "suffix",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/v[0-9]{1}/vehicles/[a-zA-Z0-9]{17}/releasenotes"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "remote-software-upgrade"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/v{version}/vehicles/\u003cVIN\u003e/releasenotes",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"conditions": [
|
|
||||||
{
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"caseSensitive": false,
|
|
||||||
"comparison": "REGEX_MATCHES",
|
|
||||||
"negate": false,
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/v[0-9]{1}/vehicles/[a-zA-Z0-9]{17}/rsustatus"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"attribute": "SERVICE_TAG",
|
|
||||||
"comparisonInfo": {
|
|
||||||
"comparison": "EQUALS",
|
|
||||||
"negate": false,
|
|
||||||
"type": "TAG",
|
|
||||||
"value": {
|
|
||||||
"context": "CONTEXTLESS",
|
|
||||||
"key": "Component",
|
|
||||||
"value": "remote-software-upgrade"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true,
|
|
||||||
"managementZones": [],
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317",
|
|
||||||
"configurationVersions": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"namingPattern": "/v{version}/vehicles/\u003cVIN\u003e/rsustatus",
|
|
||||||
"placeholders": [
|
|
||||||
{
|
|
||||||
"aggregation": null,
|
|
||||||
"attribute": "WEBREQUEST_URL_PATH",
|
|
||||||
"delimiterOrRegex": "/v([0-9]{1})/",
|
|
||||||
"endDelimiter": null,
|
|
||||||
"kind": "REGEX_EXTRACTION",
|
|
||||||
"name": "version",
|
|
||||||
"normalization": "ORIGINAL",
|
|
||||||
"requestAttribute": null,
|
|
||||||
"source": null,
|
|
||||||
"useFromChildCalls": null
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -0,0 +1,122 @@
|
||||||
|
{
|
||||||
|
"displayName": "{{.name}}",
|
||||||
|
"eventTypeFilters": [],
|
||||||
|
"managementZoneId": "{{.mzId}}",
|
||||||
|
"mzId": "{{.mzId}}",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"delayInMinutes": 0,
|
||||||
|
"severityLevel": "AVAILABILITY",
|
||||||
|
"tagFilter": {
|
||||||
|
"includeMode": "INCLUDE_ALL",
|
||||||
|
"tagFilters": [
|
||||||
|
{
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "{{.tag}}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Environment",
|
||||||
|
"value": "{{.env}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"delayInMinutes": 10,
|
||||||
|
"severityLevel": "ERROR",
|
||||||
|
"tagFilter": {
|
||||||
|
"includeMode": "INCLUDE_ALL",
|
||||||
|
"tagFilters": [
|
||||||
|
{
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "{{.tag}}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Environment",
|
||||||
|
"value": "{{.env}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"delayInMinutes": 30,
|
||||||
|
"severityLevel": "PERFORMANCE",
|
||||||
|
"tagFilter": {
|
||||||
|
"includeMode": "INCLUDE_ALL",
|
||||||
|
"tagFilters": [
|
||||||
|
{
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "{{.tag}}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Environment",
|
||||||
|
"value": "{{.env}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"delayInMinutes": 30,
|
||||||
|
"severityLevel": "RESOURCE_CONTENTION",
|
||||||
|
"tagFilter": {
|
||||||
|
"includeMode": "INCLUDE_ALL",
|
||||||
|
"tagFilters": [
|
||||||
|
{
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "{{.tag}}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Environment",
|
||||||
|
"value": "{{.env}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"delayInMinutes": 10,
|
||||||
|
"severityLevel": "CUSTOM_ALERT",
|
||||||
|
"tagFilter": {
|
||||||
|
"includeMode": "INCLUDE_ALL",
|
||||||
|
"tagFilters": [
|
||||||
|
{
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "{{.tag}}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Environment",
|
||||||
|
"value": "{{.env}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"delayInMinutes": 0,
|
||||||
|
"severityLevel": "MONITORING_UNAVAILABLE",
|
||||||
|
"tagFilter": {
|
||||||
|
"includeMode": "INCLUDE_ALL",
|
||||||
|
"tagFilters": [
|
||||||
|
{
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "{{.tag}}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Environment",
|
||||||
|
"value": "{{.env}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,82 @@
|
||||||
|
config:
|
||||||
|
- CDABC-PROD: ABC.json
|
||||||
|
- CDABC-E2E: ABC.json
|
||||||
|
- CDABC-INT: ABC.json
|
||||||
|
|
||||||
|
#Prod dashboards for EMEA/NA/CN
|
||||||
|
CDABC-PROD:
|
||||||
|
- name: CD_ABC PROD
|
||||||
|
- tag: ABC
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: PROD
|
||||||
|
- skipDeployment: "true"
|
||||||
|
CDABC-PROD.EMEA-Prod:
|
||||||
|
- name: CD_ABC PROD
|
||||||
|
- tag: ABC
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: PROD
|
||||||
|
- skipDeployment: "false"
|
||||||
|
CDABC-PROD.NA-Prod:
|
||||||
|
- name: CD_ABC PROD
|
||||||
|
- tag: ABC
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: PROD
|
||||||
|
- skipDeployment: "false"
|
||||||
|
CDABC-PROD.CN-Prod:
|
||||||
|
- name: CD_ABC PROD
|
||||||
|
- tag: ABC
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: PROD
|
||||||
|
- skipDeployment: "false"
|
||||||
|
|
||||||
|
#E2E dashboards for EMEA/NA/CN
|
||||||
|
CDABC-E2E:
|
||||||
|
- name: CD_ABC E2E
|
||||||
|
- tag: ABC
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: E2E
|
||||||
|
- skipDeployment: "true"
|
||||||
|
CDABC-E2E.EMEA-Prod:
|
||||||
|
- name: CD_ABC E2E
|
||||||
|
- tag: ABC
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: E2E
|
||||||
|
- skipDeployment: "false"
|
||||||
|
CDABC-E2E.NA-Prod:
|
||||||
|
- name: CD_ABC E2E
|
||||||
|
- tag: ABC
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: E2E
|
||||||
|
- skipDeployment: "false"
|
||||||
|
CDABC-E2E.CN-Prod:
|
||||||
|
- name: CD_ABC E2E
|
||||||
|
- tag: ABC
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: E2E
|
||||||
|
- skipDeployment: "false"
|
||||||
|
|
||||||
|
#INT dashboards for EMEA/NA/CN
|
||||||
|
CDABC-INT:
|
||||||
|
- name: CD_ABC INT
|
||||||
|
- tag: ABC
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: INT
|
||||||
|
- skipDeployment: "true"
|
||||||
|
CDABC-INT.EMEA-PreProd:
|
||||||
|
- name: CD_ABC INT
|
||||||
|
- tag: ABC
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: INT
|
||||||
|
- skipDeployment: "false"
|
||||||
|
CDABC-INT.NA-PreProd:
|
||||||
|
- name: CD_ABC INT
|
||||||
|
- tag: ABC
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: INT
|
||||||
|
- skipDeployment: "false"
|
||||||
|
CDABC-INT.CN-PreProd:
|
||||||
|
- name: CD_ABC INT
|
||||||
|
- tag: ABC
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: INT
|
||||||
|
- skipDeployment: "false"
|
||||||
|
|
@ -0,0 +1,285 @@
|
||||||
|
{
|
||||||
|
"metadata": {
|
||||||
|
"configurationVersions": [
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"clusterVersion": "1.212.88.20210305-151445"
|
||||||
|
},
|
||||||
|
"dashboardMetadata": {
|
||||||
|
"name": "{{.name}}",
|
||||||
|
"shared": false,
|
||||||
|
"owner": "Ignacio.Goldman@partner.bmwgroup.com",
|
||||||
|
"dashboardFilter": {
|
||||||
|
"managementZone": {
|
||||||
|
"id": "{{.mzId}}",
|
||||||
|
"name": "{{.mzName}}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tags": [
|
||||||
|
"{{.mzName}}"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"tiles": [
|
||||||
|
{
|
||||||
|
"name": "Custom chart",
|
||||||
|
"tileType": "CUSTOM_CHARTING",
|
||||||
|
"configured": true,
|
||||||
|
"bounds": {
|
||||||
|
"top": 38,
|
||||||
|
"left": 38,
|
||||||
|
"width": 1216,
|
||||||
|
"height": 304
|
||||||
|
},
|
||||||
|
"tileFilter": {},
|
||||||
|
"filterConfig": {
|
||||||
|
"type": "MIXED",
|
||||||
|
"customName": "Response time, Throughput and Number of Errors",
|
||||||
|
"defaultName": "Custom chart",
|
||||||
|
"chartConfig": {
|
||||||
|
"legendShown": true,
|
||||||
|
"type": "TIMESERIES",
|
||||||
|
"series": [
|
||||||
|
{
|
||||||
|
"metric": "builtin:service.response.time",
|
||||||
|
"aggregation": "AVG",
|
||||||
|
"type": "LINE",
|
||||||
|
"entityType": "SERVICE",
|
||||||
|
"dimensions": [],
|
||||||
|
"sortAscending": false,
|
||||||
|
"sortColumn": false,
|
||||||
|
"aggregationRate": "TOTAL"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"metric": "builtin:service.requestCount.total",
|
||||||
|
"aggregation": "NONE",
|
||||||
|
"type": "BAR",
|
||||||
|
"entityType": "SERVICE",
|
||||||
|
"dimensions": [],
|
||||||
|
"sortAscending": false,
|
||||||
|
"sortColumn": false,
|
||||||
|
"aggregationRate": "TOTAL"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"metric": "builtin:service.errors.total.count",
|
||||||
|
"aggregation": "NONE",
|
||||||
|
"type": "BAR",
|
||||||
|
"entityType": "SERVICE",
|
||||||
|
"dimensions": [],
|
||||||
|
"sortAscending": false,
|
||||||
|
"sortColumn": true,
|
||||||
|
"aggregationRate": "TOTAL"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"resultMetadata": {
|
||||||
|
"nullbuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
||||||
|
"lastModified": 1595275720776,
|
||||||
|
"customColor": "#008cdb"
|
||||||
|
},
|
||||||
|
"nullbuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
||||||
|
"lastModified": 1595275955999,
|
||||||
|
"customColor": "#ef651f"
|
||||||
|
},
|
||||||
|
"nullbuiltin:service.response.time|AVG|TOTAL|LINE|SERVICE": {
|
||||||
|
"lastModified": 1595275686773,
|
||||||
|
"customColor": "#b4e5f9"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"filtersPerEntityType": {
|
||||||
|
"SERVICE": {
|
||||||
|
"AUTO_TAGS": [
|
||||||
|
"Environment:{{.env}}"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Custom chart",
|
||||||
|
"tileType": "CUSTOM_CHARTING",
|
||||||
|
"configured": true,
|
||||||
|
"bounds": {
|
||||||
|
"top": 342,
|
||||||
|
"left": 38,
|
||||||
|
"width": 304,
|
||||||
|
"height": 304
|
||||||
|
},
|
||||||
|
"tileFilter": {},
|
||||||
|
"filterConfig": {
|
||||||
|
"type": "MIXED",
|
||||||
|
"customName": "Failure rate (HTTP 4xx/5xx errors)",
|
||||||
|
"defaultName": "Custom chart",
|
||||||
|
"chartConfig": {
|
||||||
|
"legendShown": true,
|
||||||
|
"type": "TIMESERIES",
|
||||||
|
"series": [
|
||||||
|
{
|
||||||
|
"metric": "builtin:service.errors.fourxx.rate",
|
||||||
|
"aggregation": "AVG",
|
||||||
|
"type": "BAR",
|
||||||
|
"entityType": "SERVICE",
|
||||||
|
"dimensions": [],
|
||||||
|
"sortAscending": false,
|
||||||
|
"sortColumn": false,
|
||||||
|
"aggregationRate": "TOTAL"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"metric": "builtin:service.errors.fivexx.rate",
|
||||||
|
"aggregation": "AVG",
|
||||||
|
"type": "BAR",
|
||||||
|
"entityType": "SERVICE",
|
||||||
|
"dimensions": [],
|
||||||
|
"sortAscending": false,
|
||||||
|
"sortColumn": true,
|
||||||
|
"aggregationRate": "TOTAL"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"resultMetadata": {
|
||||||
|
"nullbuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
||||||
|
"lastModified": 1595276148986,
|
||||||
|
"customColor": "#ef651f"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"filtersPerEntityType": {
|
||||||
|
"SERVICE": {
|
||||||
|
"AUTO_TAGS": [
|
||||||
|
"Environment:{{.env}}"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markdown",
|
||||||
|
"tileType": "MARKDOWN",
|
||||||
|
"configured": true,
|
||||||
|
"bounds": {
|
||||||
|
"top": 684,
|
||||||
|
"left": 38,
|
||||||
|
"width": 304,
|
||||||
|
"height": 114
|
||||||
|
},
|
||||||
|
"tileFilter": {},
|
||||||
|
"markdown": "[Top Web Requests](https://vse69518.sprint.dynatracelabs.com/#topglobalwebrequests;gtf=l_2_HOURS;gf=all)\n\n[Top database statements](https://vse69518.sprint.dynatracelabs.com/#topdbstatements;gtf=l_2_HOURS;gf=all)\n\n[Overview of captured exceptions](https://vse69518.sprint.dynatracelabs.com/#exceptionsoverview;gtf=l_2_HOURS;gf=all)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Problems",
|
||||||
|
"tileType": "OPEN_PROBLEMS",
|
||||||
|
"configured": true,
|
||||||
|
"bounds": {
|
||||||
|
"top": 646,
|
||||||
|
"left": 1102,
|
||||||
|
"width": 152,
|
||||||
|
"height": 152
|
||||||
|
},
|
||||||
|
"tileFilter": {}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markdown",
|
||||||
|
"tileType": "MARKDOWN",
|
||||||
|
"configured": true,
|
||||||
|
"bounds": {
|
||||||
|
"top": 38,
|
||||||
|
"left": 1254,
|
||||||
|
"width": 152,
|
||||||
|
"height": 304
|
||||||
|
},
|
||||||
|
"tileFilter": {},
|
||||||
|
"markdown": "Response time (line, left axis), number of requests (blue bars, right axis) and number of errors (red bars, right axis)."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "",
|
||||||
|
"tileType": "SERVICES",
|
||||||
|
"configured": true,
|
||||||
|
"bounds": {
|
||||||
|
"top": 342,
|
||||||
|
"left": 342,
|
||||||
|
"width": 304,
|
||||||
|
"height": 304
|
||||||
|
},
|
||||||
|
"tileFilter": {},
|
||||||
|
"filterConfig": {
|
||||||
|
"type": "SERVICE",
|
||||||
|
"customName": "Services",
|
||||||
|
"defaultName": "Services",
|
||||||
|
"chartConfig": {
|
||||||
|
"legendShown": true,
|
||||||
|
"type": "TIMESERIES",
|
||||||
|
"series": [],
|
||||||
|
"resultMetadata": {}
|
||||||
|
},
|
||||||
|
"filtersPerEntityType": {
|
||||||
|
"SERVICE": {
|
||||||
|
"AUTO_TAGS": [
|
||||||
|
"Environment:{{.env}}"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"chartVisible": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "",
|
||||||
|
"tileType": "HOSTS",
|
||||||
|
"configured": true,
|
||||||
|
"bounds": {
|
||||||
|
"top": 342,
|
||||||
|
"left": 646,
|
||||||
|
"width": 304,
|
||||||
|
"height": 304
|
||||||
|
},
|
||||||
|
"tileFilter": {},
|
||||||
|
"filterConfig": {
|
||||||
|
"type": "HOST",
|
||||||
|
"customName": "Hosts",
|
||||||
|
"defaultName": "Hosts",
|
||||||
|
"chartConfig": {
|
||||||
|
"legendShown": true,
|
||||||
|
"type": "TIMESERIES",
|
||||||
|
"series": [],
|
||||||
|
"resultMetadata": {}
|
||||||
|
},
|
||||||
|
"filtersPerEntityType": {
|
||||||
|
"HOST": {
|
||||||
|
"AUTO_TAGS": [
|
||||||
|
"Environment:{{.env}}"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"chartVisible": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "",
|
||||||
|
"tileType": "DATABASES_OVERVIEW",
|
||||||
|
"configured": true,
|
||||||
|
"bounds": {
|
||||||
|
"top": 342,
|
||||||
|
"left": 950,
|
||||||
|
"width": 304,
|
||||||
|
"height": 304
|
||||||
|
},
|
||||||
|
"tileFilter": {},
|
||||||
|
"filterConfig": {
|
||||||
|
"type": "DATABASE",
|
||||||
|
"customName": "Databases",
|
||||||
|
"defaultName": "Databases",
|
||||||
|
"chartConfig": {
|
||||||
|
"legendShown": true,
|
||||||
|
"type": "TIMESERIES",
|
||||||
|
"series": [],
|
||||||
|
"resultMetadata": {}
|
||||||
|
},
|
||||||
|
"filtersPerEntityType": {
|
||||||
|
"DATABASE": {
|
||||||
|
"AUTO_TAGS": [
|
||||||
|
"Environment:{{.env}}"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"chartVisible": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,82 @@
|
||||||
|
config:
|
||||||
|
- CDABC-PROD: ABC.json
|
||||||
|
- CDABC-E2E: ABC.json
|
||||||
|
- CDABC-INT: ABC.json
|
||||||
|
|
||||||
|
#Prod dashboards for EMEA/NA/CN
|
||||||
|
CDABC-PROD:
|
||||||
|
- name: CD_ABC PROD
|
||||||
|
- mzName: CD_ABC/management-zone/CDABC.name
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: PROD
|
||||||
|
- skipDeployment: "true"
|
||||||
|
CDABC-PROD.EMEA-Prod:
|
||||||
|
- name: CD_ABC PROD
|
||||||
|
- mzName: CD_ABC/management-zone/CDABC.name
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: PROD
|
||||||
|
- skipDeployment: "false"
|
||||||
|
CDABC-PROD.NA-Prod:
|
||||||
|
- name: CD_ABC PROD
|
||||||
|
- mzName: CD_ABC/management-zone/CDABC.name
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: PROD
|
||||||
|
- skipDeployment: "false"
|
||||||
|
CDABC-PROD.CN-Prod:
|
||||||
|
- name: CD_ABC PROD
|
||||||
|
- mzName: CD_ABC/management-zone/CDABC.name
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: PROD
|
||||||
|
- skipDeployment: "false"
|
||||||
|
|
||||||
|
#E2E dashboards for EMEA/NA/CN
|
||||||
|
CDABC-E2E:
|
||||||
|
- name: CD_ABC E2E
|
||||||
|
- mzName: CD_ABC/management-zone/CDABC.name
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: E2E
|
||||||
|
- skipDeployment: "true"
|
||||||
|
CDABC-E2E.EMEA-Prod:
|
||||||
|
- name: CD_ABC E2E
|
||||||
|
- mzName: CD_ABC/management-zone/CDABC.name
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: E2E
|
||||||
|
- skipDeployment: "false"
|
||||||
|
CDABC-E2E.NA-Prod:
|
||||||
|
- name: CD_ABC E2E
|
||||||
|
- mzName: CD_ABC/management-zone/CDABC.name
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: E2E
|
||||||
|
- skipDeployment: "false"
|
||||||
|
CDABC-E2E.CN-Prod:
|
||||||
|
- name: CD_ABC E2E
|
||||||
|
- mzName: CD_ABC/management-zone/CDABC.name
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: E2E
|
||||||
|
- skipDeployment: "false"
|
||||||
|
|
||||||
|
#INT dashboards for EMEA/NA/CN
|
||||||
|
CDABC-INT:
|
||||||
|
- name: CD_ABC INT
|
||||||
|
- mzName: CD_ABC/management-zone/CDABC.name
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: INT
|
||||||
|
- skipDeployment: "true"
|
||||||
|
CDABC-INT.EMEA-PreProd:
|
||||||
|
- name: CD_ABC INT
|
||||||
|
- mzName: CD_ABC/management-zone/CDABC.name
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: INT
|
||||||
|
- skipDeployment: "false"
|
||||||
|
CDABC-INT.NA-PreProd:
|
||||||
|
- name: CD_ABC INT
|
||||||
|
- mzName: CD_ABC/management-zone/CDABC.name
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: INT
|
||||||
|
- skipDeployment: "false"
|
||||||
|
CDABC-INT.CN-PreProd:
|
||||||
|
- name: CD_ABC INT
|
||||||
|
- mzName: CD_ABC/management-zone/CDABC.name
|
||||||
|
- mzId: CD_ABC/management-zone/CDABC.id
|
||||||
|
- env: INT
|
||||||
|
- skipDeployment: "false"
|
||||||
|
|
@ -0,0 +1,112 @@
|
||||||
|
{
|
||||||
|
"dimensionalRules": [],
|
||||||
|
"name": "{{.name}}",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"negate": false,
|
||||||
|
"operator": "EQUALS",
|
||||||
|
"type": "TAG",
|
||||||
|
"value": {
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "{{.tag}}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "SERVICE_TAGS"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"caseSensitive": true,
|
||||||
|
"negate": true,
|
||||||
|
"operator": "CONTAINS",
|
||||||
|
"type": "STRING",
|
||||||
|
"value": "HealthResource"
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "SERVICE_NAME"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"caseSensitive": true,
|
||||||
|
"negate": true,
|
||||||
|
"operator": "CONTAINS",
|
||||||
|
"type": "STRING",
|
||||||
|
"value": "PingResource"
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "SERVICE_NAME"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"caseSensitive": true,
|
||||||
|
"negate": true,
|
||||||
|
"operator": "CONTAINS",
|
||||||
|
"type": "STRING",
|
||||||
|
"value": "PrometheusResource"
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "SERVICE_NAME"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enabled": true,
|
||||||
|
"propagationTypes": [
|
||||||
|
"SERVICE_TO_PROCESS_GROUP_LIKE",
|
||||||
|
"SERVICE_TO_HOST_LIKE"
|
||||||
|
],
|
||||||
|
"type": "SERVICE"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"negate": false,
|
||||||
|
"operator": "EQUALS",
|
||||||
|
"type": "TAG",
|
||||||
|
"value": {
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "{{.tag}}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "PROCESS_GROUP_TAGS"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enabled": true,
|
||||||
|
"propagationTypes": [
|
||||||
|
"PROCESS_GROUP_TO_HOST"
|
||||||
|
],
|
||||||
|
"type": "PROCESS_GROUP"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"comparisonInfo": {
|
||||||
|
"negate": false,
|
||||||
|
"operator": "EQUALS",
|
||||||
|
"type": "TAG",
|
||||||
|
"value": {
|
||||||
|
"context": "CONTEXTLESS",
|
||||||
|
"key": "Component",
|
||||||
|
"value": "{{.tag}}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"key": {
|
||||||
|
"attribute": "HOST_TAGS"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enabled": true,
|
||||||
|
"type": "HOST"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
config:
|
||||||
|
- CDABC: ABC.json
|
||||||
|
CDABC.CN-PreProd:
|
||||||
|
- name: CD_ABC
|
||||||
|
- tag: ABC
|
||||||
|
CDABC.CN-Prod:
|
||||||
|
- name: CD_ABC
|
||||||
|
- tag: ABC
|
||||||
|
CDABC.EMEA-PreProd:
|
||||||
|
- name: CD_ABC
|
||||||
|
- tag: ABC
|
||||||
|
CDABC.EMEA-Prod:
|
||||||
|
- name: CD_ABC
|
||||||
|
- tag: ABC
|
||||||
|
CDABC.NA-PreProd:
|
||||||
|
- name: CD_ABC
|
||||||
|
- tag: ABC
|
||||||
|
CDABC.NA-Prod:
|
||||||
|
- name: CD_ABC
|
||||||
|
- tag: ABC
|
||||||
|
|
@ -1,314 +0,0 @@
|
||||||
{
|
|
||||||
"metadata": {
|
|
||||||
"configurationVersions": [3],
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317"
|
|
||||||
},
|
|
||||||
"dashboardMetadata": {
|
|
||||||
"name": "{{.name}}",
|
|
||||||
"shared": true,
|
|
||||||
"owner": "Ignacio.Goldman@partner.bmwgroup.com",
|
|
||||||
"sharingDetails": {
|
|
||||||
"linkShared": true,
|
|
||||||
"published": false
|
|
||||||
},
|
|
||||||
"dashboardFilter": {
|
|
||||||
"managementZone": {
|
|
||||||
"id": "8127945079601728901",
|
|
||||||
"name": "CD_APIGW"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"tags": ["Template"]
|
|
||||||
},
|
|
||||||
"tiles": [{
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileType": "CUSTOM_CHARTING",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 38,
|
|
||||||
"left": 38,
|
|
||||||
"width": 1216,
|
|
||||||
"height": 304
|
|
||||||
},
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": {
|
|
||||||
"id": "8127945079601728901",
|
|
||||||
"name": "CD_APIGW"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"filterConfig": {
|
|
||||||
"type": "MIXED",
|
|
||||||
"customName": "Response time, Throughput and Number of Errors",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"type": "TIMESERIES",
|
|
||||||
"series": [{
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"type": "LINE",
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"dimensions": [],
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"aggregationRate": "TOTAL"
|
|
||||||
}, {
|
|
||||||
"metric": "builtin:service.requestCount.total",
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"type": "BAR",
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"dimensions": [],
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"aggregationRate": "TOTAL"
|
|
||||||
}, {
|
|
||||||
"metric": "builtin:service.errors.total.count",
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"type": "BAR",
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"dimensions": [],
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"aggregationRate": "TOTAL"
|
|
||||||
}],
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"lastModified": 1595275720776,
|
|
||||||
"customColor": "#008cdb"
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"lastModified": 1595275955999,
|
|
||||||
"customColor": "#ef651f"
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.response.time|AVG|TOTAL|LINE|SERVICE": {
|
|
||||||
"lastModified": 1595275686773,
|
|
||||||
"customColor": "#b4e5f9"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"filtersPerEntityType": {}
|
|
||||||
}
|
|
||||||
}, {
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileType": "CUSTOM_CHARTING",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 342,
|
|
||||||
"left": 38,
|
|
||||||
"width": 304,
|
|
||||||
"height": 304
|
|
||||||
},
|
|
||||||
"tileFilter": {},
|
|
||||||
"filterConfig": {
|
|
||||||
"type": "MIXED",
|
|
||||||
"customName": "Failure rate (HTTP 4xx/5xx errors)",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"type": "TIMESERIES",
|
|
||||||
"series": [{
|
|
||||||
"metric": "builtin:service.errors.fourxx.rate",
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"type": "BAR",
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"dimensions": [],
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"aggregationRate": "TOTAL"
|
|
||||||
}, {
|
|
||||||
"metric": "builtin:service.errors.fivexx.rate",
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"type": "BAR",
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"dimensions": [],
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"aggregationRate": "TOTAL"
|
|
||||||
}],
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"lastModified": 1595276148986,
|
|
||||||
"customColor": "#ef651f"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"filtersPerEntityType": {}
|
|
||||||
}
|
|
||||||
}, {
|
|
||||||
"name": "Markdown",
|
|
||||||
"tileType": "MARKDOWN",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 684,
|
|
||||||
"left": 38,
|
|
||||||
"width": 304,
|
|
||||||
"height": 114
|
|
||||||
},
|
|
||||||
"tileFilter": {},
|
|
||||||
"markdown": "[Top Web Requests](https://vse69518.sprint.dynatracelabs.com/#topglobalwebrequests;gtf=l_2_HOURS;gf=all)\n\n[Top database statements](https://vse69518.sprint.dynatracelabs.com/#topdbstatements;gtf=l_2_HOURS;gf=all)\n\n[Overview of captured exceptions](https://vse69518.sprint.dynatracelabs.com/#exceptionsoverview;gtf=l_2_HOURS;gf=all)"
|
|
||||||
}, {
|
|
||||||
"name": "Host health",
|
|
||||||
"tileType": "HOSTS",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 342,
|
|
||||||
"left": 646,
|
|
||||||
"width": 304,
|
|
||||||
"height": 304
|
|
||||||
},
|
|
||||||
"tileFilter": {},
|
|
||||||
"chartVisible": true
|
|
||||||
}, {
|
|
||||||
"name": "Service health",
|
|
||||||
"tileType": "SERVICES",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 342,
|
|
||||||
"left": 342,
|
|
||||||
"width": 304,
|
|
||||||
"height": 304
|
|
||||||
},
|
|
||||||
"tileFilter": {},
|
|
||||||
"chartVisible": true
|
|
||||||
}, {
|
|
||||||
"name": "Database health",
|
|
||||||
"tileType": "DATABASES_OVERVIEW",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 342,
|
|
||||||
"left": 950,
|
|
||||||
"width": 304,
|
|
||||||
"height": 304
|
|
||||||
},
|
|
||||||
"tileFilter": {},
|
|
||||||
"chartVisible": true
|
|
||||||
}, {
|
|
||||||
"name": "Problems",
|
|
||||||
"tileType": "OPEN_PROBLEMS",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 646,
|
|
||||||
"left": 1102,
|
|
||||||
"width": 152,
|
|
||||||
"height": 152
|
|
||||||
},
|
|
||||||
"tileFilter": {}
|
|
||||||
}, {
|
|
||||||
"name": "Markdown",
|
|
||||||
"tileType": "MARKDOWN",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 38,
|
|
||||||
"left": 1254,
|
|
||||||
"width": 152,
|
|
||||||
"height": 304
|
|
||||||
},
|
|
||||||
"tileFilter": {},
|
|
||||||
"markdown": "Response time (line, left axis), number of requests (blue bars, right axis) and number of errors (red bars, right axis)."
|
|
||||||
}, {
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileType": "CUSTOM_CHARTING",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 836,
|
|
||||||
"left": 38,
|
|
||||||
"width": 1216,
|
|
||||||
"height": 304
|
|
||||||
},
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": {
|
|
||||||
"id": "8127945079601728901",
|
|
||||||
"name": "CD_APIGW"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"filterConfig": {
|
|
||||||
"type": "MIXED",
|
|
||||||
"customName": "Response time, Throughput and Number of Errors",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"type": "TIMESERIES",
|
|
||||||
"series": [{
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"type": "LINE",
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"dimensions": [{
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": [],
|
|
||||||
"entityDimension": true
|
|
||||||
}],
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"aggregationRate": "TOTAL"
|
|
||||||
}, {
|
|
||||||
"metric": "builtin:service.requestCount.total",
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"type": "BAR",
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"dimensions": [{
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": [],
|
|
||||||
"entityDimension": true
|
|
||||||
}],
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"aggregationRate": "TOTAL"
|
|
||||||
}, {
|
|
||||||
"metric": "builtin:service.errors.total.count",
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"type": "BAR",
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"dimensions": [{
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": [],
|
|
||||||
"entityDimension": true
|
|
||||||
}],
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"aggregationRate": "TOTAL"
|
|
||||||
}],
|
|
||||||
"resultMetadata": {
|
|
||||||
"SERVICE-B906ECBFB2BD723B¦SERVICE»SERVICE-B906ECBFB2BD723B»truebuiltin:service.response.time|AVG|TOTAL|LINE|SERVICE": {
|
|
||||||
"lastModified": 1613393828759,
|
|
||||||
"customColor": "#7c38a1"
|
|
||||||
},
|
|
||||||
"SERVICE-B906ECBFB2BD723B¦SERVICE»SERVICE-B906ECBFB2BD723B»truebuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"lastModified": 1613393834140,
|
|
||||||
"customColor": "#ff0000"
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"lastModified": 1613393762483,
|
|
||||||
"customColor": "#debbf3"
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"lastModified": 1613393770444,
|
|
||||||
"customColor": "#ff0000"
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.response.time|AVG|TOTAL|LINE|SERVICE": {
|
|
||||||
"lastModified": 1613393764720,
|
|
||||||
"customColor": "#008cdb"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"SPECIFIC_ENTITIES": ["SERVICE-B906ECBFB2BD723B"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, {
|
|
||||||
"name": "RouterService",
|
|
||||||
"tileType": "HEADER",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 798,
|
|
||||||
"left": 38,
|
|
||||||
"width": 304,
|
|
||||||
"height": 38
|
|
||||||
},
|
|
||||||
"tileFilter": {}
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
@ -1,210 +0,0 @@
|
||||||
{
|
|
||||||
"metadata": {
|
|
||||||
"configurationVersions": [3],
|
|
||||||
"clusterVersion": "1.210.97.20210210-140317"
|
|
||||||
},
|
|
||||||
"dashboardMetadata": {
|
|
||||||
"name": "{{.name}}",
|
|
||||||
"shared": true,
|
|
||||||
"owner": "Ignacio.Goldman@partner.bmwgroup.com",
|
|
||||||
"sharingDetails": {
|
|
||||||
"linkShared": true,
|
|
||||||
"published": true
|
|
||||||
},
|
|
||||||
"dashboardFilter": {
|
|
||||||
"managementZone": {
|
|
||||||
"id": "8127945079601728901",
|
|
||||||
"name": "CD_APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"tiles": [{
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileType": "CUSTOM_CHARTING",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 0,
|
|
||||||
"left": 0,
|
|
||||||
"width": 988,
|
|
||||||
"height": 494
|
|
||||||
},
|
|
||||||
"tileFilter": {},
|
|
||||||
"filterConfig": {
|
|
||||||
"type": "MIXED",
|
|
||||||
"customName": "Total Response time and Response count",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"type": "TIMESERIES",
|
|
||||||
"series": [{
|
|
||||||
"metric": "calc:service.api_gw_byhttpstatus",
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"type": "BAR",
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"dimensions": [{
|
|
||||||
"id": "1",
|
|
||||||
"name": "Dimension",
|
|
||||||
"values": [],
|
|
||||||
"entityDimension": false
|
|
||||||
}],
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"aggregationRate": "TOTAL"
|
|
||||||
}, {
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"aggregation": "PERCENTILE",
|
|
||||||
"percentile": 95,
|
|
||||||
"type": "LINE",
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"dimensions": [],
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"aggregationRate": "TOTAL"
|
|
||||||
}, {
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"type": "LINE",
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"dimensions": [],
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"aggregationRate": "TOTAL"
|
|
||||||
}],
|
|
||||||
"resultMetadata": {
|
|
||||||
"null¦Dimension»500»falsecalc:service.api_gw_byhttpstatus|NONE|TOTAL|BAR|SERVICE|SERVICE¿¿¿Dimensionɵfalse": {
|
|
||||||
"lastModified": 1610972483074,
|
|
||||||
"customColor": "#ff0000"
|
|
||||||
},
|
|
||||||
"null¦Dimension»200»falsecalc:service.api_gw_byhttpstatus|NONE|TOTAL|BAR|SERVICE|SERVICE¿¿¿Dimensionɵfalse": {
|
|
||||||
"lastModified": 1610972474646,
|
|
||||||
"customColor": "#00ff00"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"filtersPerEntityType": {}
|
|
||||||
}
|
|
||||||
}, {
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileType": "CUSTOM_CHARTING",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 0,
|
|
||||||
"left": 988,
|
|
||||||
"width": 456,
|
|
||||||
"height": 494
|
|
||||||
},
|
|
||||||
"tileFilter": {},
|
|
||||||
"filterConfig": {
|
|
||||||
"type": "MIXED",
|
|
||||||
"customName": "http Response Code Distribution ",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"type": "PIE",
|
|
||||||
"series": [{
|
|
||||||
"metric": "calc:service.api_gw_byhttpstatus",
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"type": "BAR",
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"dimensions": [{
|
|
||||||
"id": "1",
|
|
||||||
"name": "Dimension",
|
|
||||||
"values": [],
|
|
||||||
"entityDimension": false
|
|
||||||
}],
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"aggregationRate": "TOTAL"
|
|
||||||
}],
|
|
||||||
"resultMetadata": {
|
|
||||||
"null¦Dimension»500»falsecalc:service.api_gw_byhttpstatus|NONE|TOTAL|BAR|SERVICE|SERVICE¿¿¿Dimensionɵfalse": {
|
|
||||||
"lastModified": 1610972483074,
|
|
||||||
"customColor": "#ff0000"
|
|
||||||
},
|
|
||||||
"null¦Dimension»200»falsecalc:service.api_gw_byhttpstatus|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"lastModified": 1610972583848,
|
|
||||||
"customColor": "#00ff00"
|
|
||||||
},
|
|
||||||
"null¦Dimension»200»falsecalc:service.api_gw_byhttpstatus|NONE|TOTAL|BAR|SERVICE|SERVICE¿¿¿Dimensionɵfalse": {
|
|
||||||
"lastModified": 1610972474646,
|
|
||||||
"customColor": "#00ff00"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"filtersPerEntityType": {}
|
|
||||||
}
|
|
||||||
}, {
|
|
||||||
"name": "Problems",
|
|
||||||
"tileType": "OPEN_PROBLEMS",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 494,
|
|
||||||
"left": 1292,
|
|
||||||
"width": 152,
|
|
||||||
"height": 152
|
|
||||||
},
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": {
|
|
||||||
"id": "8127945079601728901",
|
|
||||||
"name": "CD_APIGW"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, {
|
|
||||||
"name": "",
|
|
||||||
"tileType": "SERVICES",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 494,
|
|
||||||
"left": 912,
|
|
||||||
"width": 190,
|
|
||||||
"height": 190
|
|
||||||
},
|
|
||||||
"tileFilter": {},
|
|
||||||
"filterConfig": {
|
|
||||||
"type": "SERVICE",
|
|
||||||
"customName": "Services",
|
|
||||||
"defaultName": "Services",
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"type": "TIMESERIES",
|
|
||||||
"series": [],
|
|
||||||
"resultMetadata": {}
|
|
||||||
},
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"SERVICE_TYPE": ["1"],
|
|
||||||
"NAME": ["int-api"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"chartVisible": true
|
|
||||||
}, {
|
|
||||||
"name": "",
|
|
||||||
"tileType": "HOSTS",
|
|
||||||
"configured": true,
|
|
||||||
"bounds": {
|
|
||||||
"top": 494,
|
|
||||||
"left": 1102,
|
|
||||||
"width": 190,
|
|
||||||
"height": 190
|
|
||||||
},
|
|
||||||
"tileFilter": {},
|
|
||||||
"filterConfig": {
|
|
||||||
"type": "HOST",
|
|
||||||
"customName": "Hosts",
|
|
||||||
"defaultName": "Hosts",
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"type": "TIMESERIES",
|
|
||||||
"series": [],
|
|
||||||
"resultMetadata": {}
|
|
||||||
},
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"HOST": {
|
|
||||||
"NAME": ["li"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"chartVisible": true
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
config:
|
|
||||||
- CDAPIGWWebserverOv: CDAPIGWWebserverOv.json
|
|
||||||
- CDAPIGWAppServerOv: CDAPIGWAppServerOv.json
|
|
||||||
|
|
||||||
CDAPIGWWebserverOv:
|
|
||||||
- name: CD_APIGW Webserver Overview
|
|
||||||
|
|
||||||
CDAPIGWAppServerOv:
|
|
||||||
- name: CD_APIGW Application Server Overview
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
CDASBC-HAL:
|
|
||||||
- name: CD_ASBC-HAL/management-zone/CDASBC-HAL.name
|
|
||||||
- mzName: CD_ASBC-HAL/management-zone/CDASBC-HAL.name
|
|
||||||
- mzId: CD_ASBC-HAL/management-zone/CDASBC-HAL.id
|
|
||||||
config:
|
|
||||||
- CDASBC-HAL: ASBC-HAL.json
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
CDASBC-RSU:
|
|
||||||
- name: CD_ASBC-RSU/management-zone/CDASBC-RSU.name
|
|
||||||
- mzName: CD_ASBC-RSU/management-zone/CDASBC-RSU.name
|
|
||||||
- mzId: CD_ASBC-RSU/management-zone/CDASBC-RSU.id
|
|
||||||
config:
|
|
||||||
- CDASBC-RSU: ASBC-RSU.json
|
|
||||||
|
|
@ -1,468 +0,0 @@
|
||||||
{
|
|
||||||
"dashboardMetadata": {
|
|
||||||
"dashboardFilter": {
|
|
||||||
"managementZone": {
|
|
||||||
"id": "-2086783870824620197",
|
|
||||||
"name": "CD_ASBC-SMACC"
|
|
||||||
},
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"name": "{{.name}}",
|
|
||||||
"owner": "Ignacio.Goldman@partner.bmwgroup.com",
|
|
||||||
"shared": true,
|
|
||||||
"sharingDetails": {
|
|
||||||
"linkShared": true,
|
|
||||||
"published": false
|
|
||||||
},
|
|
||||||
"tags": [
|
|
||||||
"Template"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.209.98.20210122-102634",
|
|
||||||
"configurationVersions": [
|
|
||||||
3
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"tiles": [
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 38,
|
|
||||||
"top": 38,
|
|
||||||
"width": 1216
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1595275955999
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1595275720776
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.response.time|AVG|TOTAL|LINE|SERVICE": {
|
|
||||||
"customColor": "#b4e5f9",
|
|
||||||
"lastModified": 1595275686773
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "LINE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.requestCount.total",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.total.count",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Response time, Throughput and Number of Errors",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:PROD"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 38,
|
|
||||||
"top": 342,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1595276148986
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.fourxx.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.fivexx.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Failure rate (HTTP 4xx/5xx errors)",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 114,
|
|
||||||
"left": 38,
|
|
||||||
"top": 684,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"markdown": "[Top Web Requests](https://vse69518.sprint.dynatracelabs.com/#topglobalwebrequests;gtf=l_2_HOURS;gf=all)\n\n[Top database statements](https://vse69518.sprint.dynatracelabs.com/#topdbstatements;gtf=l_2_HOURS;gf=all)\n\n[Overview of captured exceptions](https://vse69518.sprint.dynatracelabs.com/#exceptionsoverview;gtf=l_2_HOURS;gf=all)",
|
|
||||||
"name": "Markdown",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "MARKDOWN"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 1254,
|
|
||||||
"top": 38,
|
|
||||||
"width": 152
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"markdown": "Response time (line, left axis), number of requests (blue bars, right axis) and number of errors (red bars, right axis).",
|
|
||||||
"name": "Markdown",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "MARKDOWN"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 342,
|
|
||||||
"top": 342,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {},
|
|
||||||
"series": [],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Services",
|
|
||||||
"defaultName": "Services",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:PROD"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "SERVICE"
|
|
||||||
},
|
|
||||||
"name": "",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "SERVICES"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 646,
|
|
||||||
"top": 342,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {},
|
|
||||||
"series": [],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Hosts",
|
|
||||||
"defaultName": "Hosts",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"HOST": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:PROD"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "HOST"
|
|
||||||
},
|
|
||||||
"name": "",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "HOSTS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 38,
|
|
||||||
"top": 836,
|
|
||||||
"width": 1216
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"SERVICE-95FD52B492A2BD39¦SERVICE»SERVICE-95FD52B492A2BD39»truebuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#FF0000",
|
|
||||||
"lastModified": 1612256418497
|
|
||||||
},
|
|
||||||
"SERVICE-95FD52B492A2BD39¦SERVICE»SERVICE-95FD52B492A2BD39»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#debbf3",
|
|
||||||
"lastModified": 1612256420494
|
|
||||||
},
|
|
||||||
"SERVICE-95FD52B492A2BD39¦SERVICE»SERVICE-95FD52B492A2BD39»truebuiltin:service.response.time|AVG|TOTAL|LINE|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1612256422453
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1595275955999
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1595275720776
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.response.time|AVG|TOTAL|LINE|SERVICE": {
|
|
||||||
"customColor": "#b4e5f9",
|
|
||||||
"lastModified": 1595275686773
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "LINE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.requestCount.total",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.total.count",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "DataPackageDecryptionResourceV2",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:PROD"
|
|
||||||
],
|
|
||||||
"SPECIFIC_ENTITIES": [
|
|
||||||
"SERVICE-95FD52B492A2BD39"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 38,
|
|
||||||
"left": 38,
|
|
||||||
"top": 798,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"name": "\u003cName\u003e",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "HEADER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 950,
|
|
||||||
"top": 342,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {},
|
|
||||||
"series": [],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Databases",
|
|
||||||
"defaultName": "Databases",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"DATABASE": {
|
|
||||||
"NAME": [
|
|
||||||
"prod"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "DATABASE"
|
|
||||||
},
|
|
||||||
"name": "",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "DATABASES_OVERVIEW"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 152,
|
|
||||||
"left": 1102,
|
|
||||||
"top": 646,
|
|
||||||
"width": 152
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"name": "Problems",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": {
|
|
||||||
"id": "-2086783870824620197",
|
|
||||||
"name": "CD_ASBC-SMACC"
|
|
||||||
},
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "OPEN_PROBLEMS"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
config:
|
|
||||||
- CDASBC-SMACC: CDASBC-SMACC.json
|
|
||||||
|
|
||||||
CDASBC-SMACC.EMEA-Prod:
|
|
||||||
- name: CD_ASBC-SMACC-Prod
|
|
||||||
CDASBC-SMACC.EMEA-PreProd:
|
|
||||||
- name: CD_ASBC-SMACC-Int
|
|
||||||
CDASBC-SMACC.NA-Prod:
|
|
||||||
- name: CD_ASBC-SMACC-Prod
|
|
||||||
CDASBC-SMACC.NA-PreProd:
|
|
||||||
- name: CD_ASBC-SMACC-Int
|
|
||||||
CDASBC-SMACC.CN-Prod:
|
|
||||||
- name: CD_ASBC-SMACC-Prod
|
|
||||||
CDASBC-SMACC.CN-PreProd:
|
|
||||||
- name: CD_ASBC-SMACC-Int
|
|
||||||
|
|
@ -1,259 +0,0 @@
|
||||||
{
|
|
||||||
"dashboardMetadata": {
|
|
||||||
"dashboardFilter": {
|
|
||||||
"managementZone": {
|
|
||||||
"id": "2107206930322242750",
|
|
||||||
"name": "CD_App-Repository"
|
|
||||||
},
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"name": "CD_App-Repository",
|
|
||||||
"owner": "Ignacio.Goldman@partner.bmwgroup.com",
|
|
||||||
"shared": false,
|
|
||||||
"sharingDetails": {
|
|
||||||
"linkShared": true,
|
|
||||||
"published": false
|
|
||||||
},
|
|
||||||
"tags": [
|
|
||||||
"Template"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.209.98.20210122-102634",
|
|
||||||
"configurationVersions": [
|
|
||||||
3
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"tiles": [
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 38,
|
|
||||||
"top": 38,
|
|
||||||
"width": 1216
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1595275955999
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1595275720776
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.response.time|AVG|TOTAL|LINE|SERVICE": {
|
|
||||||
"customColor": "#b4e5f9",
|
|
||||||
"lastModified": 1595275686773
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "LINE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.requestCount.total",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.total.count",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Response time, Throughput and Number of Errors",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 38,
|
|
||||||
"top": 342,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1595276148986
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.fourxx.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.fivexx.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Failure rate (HTTP 4xx/5xx errors)",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 114,
|
|
||||||
"left": 38,
|
|
||||||
"top": 684,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"markdown": "[Top Web Requests](https://vse69518.sprint.dynatracelabs.com/#topglobalwebrequests;gtf=l_2_HOURS;gf=all)\n\n[Top database statements](https://vse69518.sprint.dynatracelabs.com/#topdbstatements;gtf=l_2_HOURS;gf=all)\n\n[Overview of captured exceptions](https://vse69518.sprint.dynatracelabs.com/#exceptionsoverview;gtf=l_2_HOURS;gf=all)",
|
|
||||||
"name": "Markdown",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "MARKDOWN"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 646,
|
|
||||||
"top": 342,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": null,
|
|
||||||
"name": "Host health",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "HOSTS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 342,
|
|
||||||
"top": 342,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": null,
|
|
||||||
"name": "Service health",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "SERVICES"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 950,
|
|
||||||
"top": 342,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": null,
|
|
||||||
"name": "Database health",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "DATABASES_OVERVIEW"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 152,
|
|
||||||
"left": 1102,
|
|
||||||
"top": 646,
|
|
||||||
"width": 152
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"name": "Problems",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": {
|
|
||||||
"id": "2107206930322242750",
|
|
||||||
"name": "CD_App-Repository"
|
|
||||||
},
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "OPEN_PROBLEMS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 1254,
|
|
||||||
"top": 38,
|
|
||||||
"width": 152
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"markdown": "Response time (line, left axis), number of requests (blue bars, right axis) and number of errors (red bars, right axis).",
|
|
||||||
"name": "Markdown",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "MARKDOWN"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
config:
|
|
||||||
- CDApp-Repository: CDApp-Repository.json
|
|
||||||
|
|
||||||
CDApp-Repository:
|
|
||||||
- name: CD_App-Repository
|
|
||||||
|
|
@ -1,294 +0,0 @@
|
||||||
{
|
|
||||||
"dashboardMetadata": {
|
|
||||||
"dashboardFilter": null,
|
|
||||||
"name": "[BASE][EMEA][PROD] Database",
|
|
||||||
"owner": "Andrzej.Michalowski@partner.bmw.de",
|
|
||||||
"shared": true,
|
|
||||||
"sharingDetails": {
|
|
||||||
"linkShared": false,
|
|
||||||
"published": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.209.98.20210122-102634",
|
|
||||||
"configurationVersions": [
|
|
||||||
3
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"tiles": [
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 342,
|
|
||||||
"top": 0,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {},
|
|
||||||
"series": [],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Databases",
|
|
||||||
"defaultName": "Databases",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"DATABASE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:prod",
|
|
||||||
"Component:BASE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "DATABASE"
|
|
||||||
},
|
|
||||||
"name": "",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "DATABASES_OVERVIEW"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 38,
|
|
||||||
"top": 1216,
|
|
||||||
"width": 950
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.dbChildCallCount|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#2ab6f4",
|
|
||||||
"lastModified": 1607336888591
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.dbChildCallTime|NONE|TOTAL|LINE|SERVICE": {
|
|
||||||
"customColor": "#f5d30f",
|
|
||||||
"lastModified": 1607336857030
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.dbconnections.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1607335656336
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.dbChildCallCount",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.dbChildCallTime",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "LINE"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Database calls (sum)",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:prod",
|
|
||||||
"Component:BASE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 38,
|
|
||||||
"top": 532,
|
|
||||||
"width": 950
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.dbChildCallCount|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#2ab6f4",
|
|
||||||
"lastModified": 1607335081771
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.dbconnections.failure|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ff1b00",
|
|
||||||
"lastModified": 1607335534198
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.dbconnections.success|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#2ab6f4",
|
|
||||||
"lastModified": 1607335472192
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.dbconnections.success",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.dbconnections.failure",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Database connections",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:prod",
|
|
||||||
"Component:BASE"
|
|
||||||
],
|
|
||||||
"SERVICE_TYPE": [
|
|
||||||
"3"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 38,
|
|
||||||
"top": 874,
|
|
||||||
"width": 950
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.dbChildCallCount|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#2ab6f4",
|
|
||||||
"lastModified": 1607335081771
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.dbconnections.failureRate|AVG|TOTAL|AREA|SERVICE": {
|
|
||||||
"customColor": "#ff1b00",
|
|
||||||
"lastModified": 1607336250099
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.dbconnections.failure|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ff1b00",
|
|
||||||
"lastModified": 1607335534198
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.dbconnections.successRate|AVG|TOTAL|AREA|SERVICE": {
|
|
||||||
"customColor": "#1bd635",
|
|
||||||
"lastModified": 1607336207003
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.dbconnections.success|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#2ab6f4",
|
|
||||||
"lastModified": 1607335472192
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.dbconnections.successRate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "AREA"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.dbconnections.failureRate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "AREA"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Database connection success/failure rate",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:prod",
|
|
||||||
"Component:BASE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"assignedEntities": [
|
|
||||||
"SERVICE-A5941E68858C8C0F"
|
|
||||||
],
|
|
||||||
"bounds": {
|
|
||||||
"height": 152,
|
|
||||||
"left": 342,
|
|
||||||
"top": 342,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"name": "Database performance",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "DATABASE"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,906 +0,0 @@
|
||||||
{
|
|
||||||
"dashboardMetadata": {
|
|
||||||
"dashboardFilter": null,
|
|
||||||
"name": "[BASE][EMEA][PROD] Overview dashboard",
|
|
||||||
"owner": "Andrzej.Michalowski@partner.bmw.de",
|
|
||||||
"shared": true,
|
|
||||||
"sharingDetails": {
|
|
||||||
"linkShared": false,
|
|
||||||
"published": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.209.98.20210122-102634",
|
|
||||||
"configurationVersions": [
|
|
||||||
3
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"tiles": [
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 304,
|
|
||||||
"top": 38,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {},
|
|
||||||
"series": [],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Hosts",
|
|
||||||
"defaultName": "Hosts",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"HOST": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:INT",
|
|
||||||
"Component:BASE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "HOST"
|
|
||||||
},
|
|
||||||
"name": "",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "HOSTS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 646,
|
|
||||||
"top": 38,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {},
|
|
||||||
"series": [],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Services",
|
|
||||||
"defaultName": "Services",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:INT",
|
|
||||||
"Component:BASE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "SERVICE"
|
|
||||||
},
|
|
||||||
"name": "",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "SERVICES"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 342,
|
|
||||||
"left": 76,
|
|
||||||
"top": 418,
|
|
||||||
"width": 532
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.errors.fivexx.count|NONE|TOTAL|LINE|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1604573808483
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.errors.fourxx.count|NONE|TOTAL|LINE|SERVICE": {
|
|
||||||
"customColor": "#f5d30f",
|
|
||||||
"lastModified": 1604573818712
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.fourxx.count",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "LINE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.fivexx.count",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "LINE"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "(Services) Number of HTTP 4xx and 5xx errors",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:INT",
|
|
||||||
"Component:BASE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 342,
|
|
||||||
"left": 646,
|
|
||||||
"top": 418,
|
|
||||||
"width": 532
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.errors.total.count|NONE|TOTAL|LINE|SERVICE": {
|
|
||||||
"customColor": "#ff1b00",
|
|
||||||
"lastModified": 1607085892905
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.total.count",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "LINE"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "(Services) Number of any errors",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Hub:EMEA",
|
|
||||||
"Environment:INT",
|
|
||||||
"Component:BASE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": {
|
|
||||||
"id": "all",
|
|
||||||
"name": "All"
|
|
||||||
},
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 114,
|
|
||||||
"top": 2280,
|
|
||||||
"width": 1026
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"axisLimits": {
|
|
||||||
"LEFT_MAX": 100
|
|
||||||
},
|
|
||||||
"leftAxisCustomUnit": "Percent",
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"SERVICE_METHOD-FCC866567F533FE0¦SERVICE_METHOD»SERVICE_METHOD-FCC866567F533FE0»truebuiltin:service.keyRequest.successes.server.rate|AVG|TOTAL|BAR|SERVICE_KEY_REQUEST": {
|
|
||||||
"customColor": "#4fd5e0",
|
|
||||||
"lastModified": 1605258717668
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.keyRequest.errors.server.rate|AVG|TOTAL|BAR|SERVICE_KEY_REQUEST": {
|
|
||||||
"customColor": "#ff1b00",
|
|
||||||
"lastModified": 1605263857023
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.keyRequest.successes.server.rate|AVG|TOTAL|BAR|SERVICE_KEY_REQUEST": {
|
|
||||||
"customColor": "#1bd635",
|
|
||||||
"lastModified": 1605263828783
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.keyRequest.totalProcessingTime|AVG|TOTAL|LINE|SERVICE_KEY_REQUEST": {
|
|
||||||
"customColor": "#a972cc",
|
|
||||||
"lastModified": 1605263879286
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE_KEY_REQUEST",
|
|
||||||
"metric": "builtin:service.keyRequest.successes.server.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE_KEY_REQUEST",
|
|
||||||
"metric": "builtin:service.keyRequest.errors.server.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE_KEY_REQUEST",
|
|
||||||
"metric": "builtin:service.keyRequest.totalProcessingTime",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "LINE"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "(NGTP) notifyCallEventCreatedCall",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE_KEY_REQUEST": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:INT",
|
|
||||||
"Component:BASE"
|
|
||||||
],
|
|
||||||
"SERVICE_OF_SERVICE_METHOD": [
|
|
||||||
"SERVICE-F0BB60265D1C65FA"
|
|
||||||
],
|
|
||||||
"SPECIFIC_ENTITIES": [
|
|
||||||
"SERVICE_METHOD-FCC866567F533FE0"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 114,
|
|
||||||
"top": 2622,
|
|
||||||
"width": 1026
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"axisLimits": {
|
|
||||||
"LEFT_MAX": 100
|
|
||||||
},
|
|
||||||
"leftAxisCustomUnit": "Percent",
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.errors.server.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1605263596219
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.keyRequest.errors.server.rate|AVG|TOTAL|BAR|SERVICE_KEY_REQUEST": {
|
|
||||||
"customColor": "#ff1b00",
|
|
||||||
"lastModified": 1607084699152
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.keyRequest.successes.server.rate|AVG|TOTAL|BAR|SERVICE_KEY_REQUEST": {
|
|
||||||
"customColor": "#1bd635",
|
|
||||||
"lastModified": 1607084686765
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.keyRequest.totalProcessingTime|AVG|TOTAL|LINE|SERVICE_KEY_REQUEST": {
|
|
||||||
"customColor": "#a972cc",
|
|
||||||
"lastModified": 1607084710863
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE_KEY_REQUEST",
|
|
||||||
"metric": "builtin:service.keyRequest.successes.server.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE_KEY_REQUEST",
|
|
||||||
"metric": "builtin:service.keyRequest.totalProcessingTime",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "LINE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE_KEY_REQUEST",
|
|
||||||
"metric": "builtin:service.keyRequest.errors.server.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "(XCS) xcsEventReceived",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE_KEY_REQUEST": {
|
|
||||||
"SERVICE_OF_SERVICE_METHOD": [
|
|
||||||
"SERVICE-837285CFA9BD34C8"
|
|
||||||
],
|
|
||||||
"SPECIFIC_ENTITIES": [
|
|
||||||
"SERVICE_METHOD-30B6021014AE5EAC"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 38,
|
|
||||||
"left": 532,
|
|
||||||
"top": 798,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"name": "SERVICES OVERVIEW",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "HEADER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 38,
|
|
||||||
"left": 532,
|
|
||||||
"top": 0,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"name": "HOSTS AND SERVICES",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "HEADER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 38,
|
|
||||||
"left": 532,
|
|
||||||
"top": 380,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"name": "GENRAL ERRORS",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "HEADER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 114,
|
|
||||||
"top": 2964,
|
|
||||||
"width": 1026
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"axisLimits": {
|
|
||||||
"LEFT_MAX": 100
|
|
||||||
},
|
|
||||||
"leftAxisCustomUnit": "Percent",
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"SERVICE_METHOD-FCC866567F533FE0¦SERVICE_METHOD»SERVICE_METHOD-FCC866567F533FE0»truebuiltin:service.keyRequest.successes.server.rate|AVG|TOTAL|BAR|SERVICE_KEY_REQUEST": {
|
|
||||||
"customColor": "#4fd5e0",
|
|
||||||
"lastModified": 1605258717668
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.keyRequest.errors.server.rate|AVG|TOTAL|BAR|SERVICE_KEY_REQUEST": {
|
|
||||||
"customColor": "#ff1b00",
|
|
||||||
"lastModified": 1605263857023
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.keyRequest.successes.server.rate|AVG|TOTAL|BAR|SERVICE_KEY_REQUEST": {
|
|
||||||
"customColor": "#1bd635",
|
|
||||||
"lastModified": 1605263828783
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.keyRequest.totalProcessingTime|AVG|TOTAL|LINE|SERVICE_KEY_REQUEST": {
|
|
||||||
"customColor": "#a972cc",
|
|
||||||
"lastModified": 1605263879286
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE_KEY_REQUEST",
|
|
||||||
"metric": "builtin:service.keyRequest.successes.server.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE_KEY_REQUEST",
|
|
||||||
"metric": "builtin:service.keyRequest.errors.server.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE_KEY_REQUEST",
|
|
||||||
"metric": "builtin:service.keyRequest.totalProcessingTime",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "LINE"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "sendReport",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE_KEY_REQUEST": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:INT",
|
|
||||||
"Component:BASE"
|
|
||||||
],
|
|
||||||
"SERVICE_OF_SERVICE_METHOD": [
|
|
||||||
"SERVICE-5C61977F011C3EF7"
|
|
||||||
],
|
|
||||||
"SPECIFIC_ENTITIES": [
|
|
||||||
"SERVICE_METHOD-5B49EC8AAF3E0B17"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 38,
|
|
||||||
"left": 532,
|
|
||||||
"top": 2242,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"name": "KEY REQUESTS",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "HEADER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 114,
|
|
||||||
"top": 1178,
|
|
||||||
"width": 1026
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ff1b00",
|
|
||||||
"lastModified": 1607084965141
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#2ab6f4",
|
|
||||||
"lastModified": 1607084956752
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.response.time|AVG|TOTAL|LINE|SERVICE": {
|
|
||||||
"customColor": "#f5d30f",
|
|
||||||
"lastModified": 1607084960623
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.requestCount.total",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "LINE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.total.count",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "application-1 - INT",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Hub:EMEA",
|
|
||||||
"Environment:INT",
|
|
||||||
"Component:BASE"
|
|
||||||
],
|
|
||||||
"SPECIFIC_ENTITIES": [
|
|
||||||
"SERVICE-8145AD86C5A5C537"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 114,
|
|
||||||
"top": 1520,
|
|
||||||
"width": 1026
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ff1b00",
|
|
||||||
"lastModified": 1607084965141
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#2ab6f4",
|
|
||||||
"lastModified": 1607084956752
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.response.time|AVG|TOTAL|LINE|SERVICE": {
|
|
||||||
"customColor": "#f5d30f",
|
|
||||||
"lastModified": 1607084960623
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.requestCount.total",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "LINE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.total.count",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Web Service",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Hub:EMEA",
|
|
||||||
"Environment:INT",
|
|
||||||
"Component:BASE"
|
|
||||||
],
|
|
||||||
"SERVICE_TYPE": [
|
|
||||||
"2"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 342,
|
|
||||||
"left": 114,
|
|
||||||
"top": 1862,
|
|
||||||
"width": 1026
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ff1b00",
|
|
||||||
"lastModified": 1607084965141
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#2ab6f4",
|
|
||||||
"lastModified": 1607084956752
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.response.time|AVG|TOTAL|LINE|SERVICE": {
|
|
||||||
"customColor": "#f5d30f",
|
|
||||||
"lastModified": 1607084960623
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.requestCount.total",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "LINE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.total.count",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Custom Service",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Hub:EMEA",
|
|
||||||
"Environment:INT",
|
|
||||||
"Component:BASE"
|
|
||||||
],
|
|
||||||
"SERVICE_TYPE": [
|
|
||||||
"4"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 114,
|
|
||||||
"top": 836,
|
|
||||||
"width": 1026
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"nullbuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ff1b00",
|
|
||||||
"lastModified": 1607084965141
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#2ab6f4",
|
|
||||||
"lastModified": 1607084956752
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.response.time|AVG|TOTAL|LINE|SERVICE": {
|
|
||||||
"customColor": "#f5d30f",
|
|
||||||
"lastModified": 1607084960623
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.requestCount.total",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "LINE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.total.count",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "ALL SERVICES",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Hub:EMEA",
|
|
||||||
"Environment:INT",
|
|
||||||
"Component:BASE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 0,
|
|
||||||
"top": 38,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": null,
|
|
||||||
"name": "Host health",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "HOSTS"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,758 +0,0 @@
|
||||||
{
|
|
||||||
"dashboardMetadata": {
|
|
||||||
"dashboardFilter": null,
|
|
||||||
"name": "CD_BASE E2E",
|
|
||||||
"owner": "sandra.la.lewerenz@bmwgroup.com",
|
|
||||||
"shared": true,
|
|
||||||
"sharingDetails": {
|
|
||||||
"linkShared": true,
|
|
||||||
"published": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"metadata": {
|
|
||||||
"clusterVersion": "1.209.98.20210122-102634",
|
|
||||||
"configurationVersions": [
|
|
||||||
3
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"tiles": [
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 0,
|
|
||||||
"top": 38,
|
|
||||||
"width": 1216
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"SERVICE-8145AD86C5A5C537¦SERVICE»SERVICE-8145AD86C5A5C537»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601554531139
|
|
||||||
},
|
|
||||||
"SERVICE-8145AD86C5A5C537¦SERVICE»SERVICE-8145AD86C5A5C537»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1601554533381
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1595275955999
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1595275720776
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#b4e5f9",
|
|
||||||
"lastModified": 1595275686773
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "PERCENTILE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"percentile": 95,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "LINE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.requestCount.total",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.total.count",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Response time, Throughput and Number of Errors",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:E2E",
|
|
||||||
"Component:BASE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 1216,
|
|
||||||
"top": 38,
|
|
||||||
"width": 722
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"SERVICE-8145AD86C5A5C537¦SERVICE»SERVICE-8145AD86C5A5C537»truebuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#2ab6f4",
|
|
||||||
"lastModified": 1601554747627
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1595276148986
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.fourxx.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.fivexx.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Failure rate (HTTP 4xx/5xx errors)",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:E2E",
|
|
||||||
"Component:BASE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 114,
|
|
||||||
"left": 38,
|
|
||||||
"top": 722,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"markdown": "[Top Web Requests](https://vse69518.sprint.dynatracelabs.com/#topglobalwebrequests;gtf=l_2_HOURS;gf=all)\n\n[Top database statements](https://vse69518.sprint.dynatracelabs.com/#topdbstatements;gtf=l_2_HOURS;gf=all)\n\n[Overview of captured exceptions](https://vse69518.sprint.dynatracelabs.com/#exceptionsoverview;gtf=l_2_HOURS;gf=all)",
|
|
||||||
"name": "Markdown",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "MARKDOWN"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 266,
|
|
||||||
"left": 950,
|
|
||||||
"top": 684,
|
|
||||||
"width": 266
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": null,
|
|
||||||
"name": "Database health",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": {
|
|
||||||
"id": "4530644663209438695",
|
|
||||||
"name": "CD_BMW-Assistant-for-Service-Events-(BASE)"
|
|
||||||
},
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "DATABASES_OVERVIEW"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 266,
|
|
||||||
"left": 418,
|
|
||||||
"top": 684,
|
|
||||||
"width": 266
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {},
|
|
||||||
"series": [],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Services",
|
|
||||||
"defaultName": "Services",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:E2E",
|
|
||||||
"Component:BASE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "SERVICE"
|
|
||||||
},
|
|
||||||
"name": "",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "SERVICES"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 266,
|
|
||||||
"left": 684,
|
|
||||||
"top": 684,
|
|
||||||
"width": 266
|
|
||||||
},
|
|
||||||
"chartVisible": true,
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {},
|
|
||||||
"series": [],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Hosts",
|
|
||||||
"defaultName": "Hosts",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"HOST": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:E2E",
|
|
||||||
"Component:BASE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "HOST"
|
|
||||||
},
|
|
||||||
"name": "",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "HOSTS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 38,
|
|
||||||
"left": 0,
|
|
||||||
"top": 0,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"name": "application-1",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "HEADER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 0,
|
|
||||||
"top": 380,
|
|
||||||
"width": 1216
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"SERVICE-18F31B0E1E82C191¦SERVICE»SERVICE-18F31B0E1E82C191»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555242530
|
|
||||||
},
|
|
||||||
"SERVICE-18F31B0E1E82C191¦SERVICE»SERVICE-18F31B0E1E82C191»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555186229
|
|
||||||
},
|
|
||||||
"SERVICE-292EF4979DF3D114¦SERVICE»SERVICE-292EF4979DF3D114»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555145158
|
|
||||||
},
|
|
||||||
"SERVICE-292EF4979DF3D114¦SERVICE»SERVICE-292EF4979DF3D114»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555196766
|
|
||||||
},
|
|
||||||
"SERVICE-2F7573EB489969C6¦SERVICE»SERVICE-2F7573EB489969C6»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555162294
|
|
||||||
},
|
|
||||||
"SERVICE-2F7573EB489969C6¦SERVICE»SERVICE-2F7573EB489969C6»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555193366
|
|
||||||
},
|
|
||||||
"SERVICE-57C172B677BA8C39¦SERVICE»SERVICE-57C172B677BA8C39»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555152885
|
|
||||||
},
|
|
||||||
"SERVICE-57C172B677BA8C39¦SERVICE»SERVICE-57C172B677BA8C39»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555199826
|
|
||||||
},
|
|
||||||
"SERVICE-6A08B2EED8F61661¦SERVICE»SERVICE-6A08B2EED8F61661»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555141716
|
|
||||||
},
|
|
||||||
"SERVICE-6A08B2EED8F61661¦SERVICE»SERVICE-6A08B2EED8F61661»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555236240
|
|
||||||
},
|
|
||||||
"SERVICE-8145AD86C5A5C537¦SERVICE»SERVICE-8145AD86C5A5C537»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601554531139
|
|
||||||
},
|
|
||||||
"SERVICE-8145AD86C5A5C537¦SERVICE»SERVICE-8145AD86C5A5C537»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1601554533381
|
|
||||||
},
|
|
||||||
"SERVICE-837285CFA9BD34C8¦SERVICE»SERVICE-837285CFA9BD34C8»truebuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1601555166743
|
|
||||||
},
|
|
||||||
"SERVICE-837285CFA9BD34C8¦SERVICE»SERVICE-837285CFA9BD34C8»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555233176
|
|
||||||
},
|
|
||||||
"SERVICE-84CD7283BDE1CED1¦SERVICE»SERVICE-84CD7283BDE1CED1»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555155734
|
|
||||||
},
|
|
||||||
"SERVICE-84CD7283BDE1CED1¦SERVICE»SERVICE-84CD7283BDE1CED1»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555239846
|
|
||||||
},
|
|
||||||
"SERVICE-9ADCF00A69DFF768¦SERVICE»SERVICE-9ADCF00A69DFF768»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555149804
|
|
||||||
},
|
|
||||||
"SERVICE-9ADCF00A69DFF768¦SERVICE»SERVICE-9ADCF00A69DFF768»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555229286
|
|
||||||
},
|
|
||||||
"SERVICE-A89597E8938340D2¦SERVICE»SERVICE-A89597E8938340D2»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555151431
|
|
||||||
},
|
|
||||||
"SERVICE-A89597E8938340D2¦SERVICE»SERVICE-A89597E8938340D2»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555190227
|
|
||||||
},
|
|
||||||
"SERVICE-ABC64204F529CE2B¦SERVICE»SERVICE-ABC64204F529CE2B»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555158936
|
|
||||||
},
|
|
||||||
"SERVICE-ABC64204F529CE2B¦SERVICE»SERVICE-ABC64204F529CE2B»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555130392
|
|
||||||
},
|
|
||||||
"SERVICE-C0164A4D6F60C291¦SERVICE»SERVICE-C0164A4D6F60C291»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555154281
|
|
||||||
},
|
|
||||||
"SERVICE-C0164A4D6F60C291¦SERVICE»SERVICE-C0164A4D6F60C291»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555227307
|
|
||||||
},
|
|
||||||
"SERVICE-E836F2B337098D06¦SERVICE»SERVICE-E836F2B337098D06»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555147649
|
|
||||||
},
|
|
||||||
"SERVICE-E836F2B337098D06¦SERVICE»SERVICE-E836F2B337098D06»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555191792
|
|
||||||
},
|
|
||||||
"SERVICE-ED25BF8DA0E3DE8F¦SERVICE»SERVICE-ED25BF8DA0E3DE8F»truebuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1601555168370
|
|
||||||
},
|
|
||||||
"SERVICE-ED25BF8DA0E3DE8F¦SERVICE»SERVICE-ED25BF8DA0E3DE8F»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555136396
|
|
||||||
},
|
|
||||||
"SERVICE-ED25BF8DA0E3DE8F¦SERVICE»SERVICE-ED25BF8DA0E3DE8F»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555238100
|
|
||||||
},
|
|
||||||
"SERVICE-EE2A98B5614F2F4C¦SERVICE»SERVICE-EE2A98B5614F2F4C»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555160686
|
|
||||||
},
|
|
||||||
"SERVICE-EE2A98B5614F2F4C¦SERVICE»SERVICE-EE2A98B5614F2F4C»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555198382
|
|
||||||
},
|
|
||||||
"SERVICE-EEC8F5CE714AAECA¦SERVICE»SERVICE-EEC8F5CE714AAECA»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555157375
|
|
||||||
},
|
|
||||||
"SERVICE-EEC8F5CE714AAECA¦SERVICE»SERVICE-EEC8F5CE714AAECA»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555195150
|
|
||||||
},
|
|
||||||
"SERVICE-F0BB60265D1C65FA¦SERVICE»SERVICE-F0BB60265D1C65FA»truebuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ffd0ab",
|
|
||||||
"lastModified": 1601555143811
|
|
||||||
},
|
|
||||||
"SERVICE-F0BB60265D1C65FA¦SERVICE»SERVICE-F0BB60265D1C65FA»truebuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#00a1b2",
|
|
||||||
"lastModified": 1601555231381
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.errors.total.count|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1595275955999
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.requestCount.total|NONE|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1595275720776
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.response.time|PERCENTILE|TOTAL|95|LINE|SERVICE": {
|
|
||||||
"customColor": "#b4e5f9",
|
|
||||||
"lastModified": 1595275686773
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "PERCENTILE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.response.time",
|
|
||||||
"percentile": 95,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "LINE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "NONE",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.requestCount.total",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Response time (95 percentile), Throughput and Number of Errors",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:E2E",
|
|
||||||
"Component:BASE"
|
|
||||||
],
|
|
||||||
"SERVICE_TYPE": [
|
|
||||||
"2"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 304,
|
|
||||||
"left": 1216,
|
|
||||||
"top": 380,
|
|
||||||
"width": 722
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"filterConfig": {
|
|
||||||
"chartConfig": {
|
|
||||||
"legendShown": true,
|
|
||||||
"resultMetadata": {
|
|
||||||
"SERVICE-18F31B0E1E82C191¦SERVICE»SERVICE-18F31B0E1E82C191»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555335552
|
|
||||||
},
|
|
||||||
"SERVICE-292EF4979DF3D114¦SERVICE»SERVICE-292EF4979DF3D114»truebuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1601555369198
|
|
||||||
},
|
|
||||||
"SERVICE-292EF4979DF3D114¦SERVICE»SERVICE-292EF4979DF3D114»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555344698
|
|
||||||
},
|
|
||||||
"SERVICE-2F7573EB489969C6¦SERVICE»SERVICE-2F7573EB489969C6»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555337070
|
|
||||||
},
|
|
||||||
"SERVICE-57C172B677BA8C39¦SERVICE»SERVICE-57C172B677BA8C39»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555332976
|
|
||||||
},
|
|
||||||
"SERVICE-6A08B2EED8F61661¦SERVICE»SERVICE-6A08B2EED8F61661»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555342444
|
|
||||||
},
|
|
||||||
"SERVICE-8145AD86C5A5C537¦SERVICE»SERVICE-8145AD86C5A5C537»truebuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#2ab6f4",
|
|
||||||
"lastModified": 1601554747627
|
|
||||||
},
|
|
||||||
"SERVICE-837285CFA9BD34C8¦SERVICE»SERVICE-837285CFA9BD34C8»truebuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1601555357516
|
|
||||||
},
|
|
||||||
"SERVICE-84CD7283BDE1CED1¦SERVICE»SERVICE-84CD7283BDE1CED1»truebuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1601555364715
|
|
||||||
},
|
|
||||||
"SERVICE-84CD7283BDE1CED1¦SERVICE»SERVICE-84CD7283BDE1CED1»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555334258
|
|
||||||
},
|
|
||||||
"SERVICE-9ADCF00A69DFF768¦SERVICE»SERVICE-9ADCF00A69DFF768»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555352637
|
|
||||||
},
|
|
||||||
"SERVICE-A89597E8938340D2¦SERVICE»SERVICE-A89597E8938340D2»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555329475
|
|
||||||
},
|
|
||||||
"SERVICE-ABC64204F529CE2B¦SERVICE»SERVICE-ABC64204F529CE2B»truebuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1601555370825
|
|
||||||
},
|
|
||||||
"SERVICE-ABC64204F529CE2B¦SERVICE»SERVICE-ABC64204F529CE2B»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555355041
|
|
||||||
},
|
|
||||||
"SERVICE-C0164A4D6F60C291¦SERVICE»SERVICE-C0164A4D6F60C291»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555346562
|
|
||||||
},
|
|
||||||
"SERVICE-ED25BF8DA0E3DE8F¦SERVICE»SERVICE-ED25BF8DA0E3DE8F»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555348211
|
|
||||||
},
|
|
||||||
"SERVICE-EE2A98B5614F2F4C¦SERVICE»SERVICE-EE2A98B5614F2F4C»truebuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1601555359410
|
|
||||||
},
|
|
||||||
"SERVICE-EE2A98B5614F2F4C¦SERVICE»SERVICE-EE2A98B5614F2F4C»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555328055
|
|
||||||
},
|
|
||||||
"SERVICE-EEC8F5CE714AAECA¦SERVICE»SERVICE-EEC8F5CE714AAECA»truebuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1601555367357
|
|
||||||
},
|
|
||||||
"SERVICE-EEC8F5CE714AAECA¦SERVICE»SERVICE-EEC8F5CE714AAECA»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555340156
|
|
||||||
},
|
|
||||||
"SERVICE-F0BB60265D1C65FA¦SERVICE»SERVICE-F0BB60265D1C65FA»truebuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#008cdb",
|
|
||||||
"lastModified": 1601555362753
|
|
||||||
},
|
|
||||||
"SERVICE-F0BB60265D1C65FA¦SERVICE»SERVICE-F0BB60265D1C65FA»truebuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1601555331417
|
|
||||||
},
|
|
||||||
"nullbuiltin:service.errors.fivexx.rate|AVG|TOTAL|BAR|SERVICE": {
|
|
||||||
"customColor": "#ef651f",
|
|
||||||
"lastModified": 1595276148986
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"series": [
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.fourxx.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": false,
|
|
||||||
"type": "BAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"aggregation": "AVG",
|
|
||||||
"aggregationRate": "TOTAL",
|
|
||||||
"dimensions": [
|
|
||||||
{
|
|
||||||
"entityDimension": true,
|
|
||||||
"id": "0",
|
|
||||||
"name": "dt.entity.service",
|
|
||||||
"values": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityType": "SERVICE",
|
|
||||||
"metric": "builtin:service.errors.fivexx.rate",
|
|
||||||
"percentile": null,
|
|
||||||
"sortAscending": false,
|
|
||||||
"sortColumn": true,
|
|
||||||
"type": "BAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "TIMESERIES"
|
|
||||||
},
|
|
||||||
"customName": "Failure rate (HTTP 4xx/5xx errors)",
|
|
||||||
"defaultName": "Custom chart",
|
|
||||||
"filtersPerEntityType": {
|
|
||||||
"SERVICE": {
|
|
||||||
"AUTO_TAGS": [
|
|
||||||
"Environment:E2E",
|
|
||||||
"Component:BASE"
|
|
||||||
],
|
|
||||||
"SERVICE_TYPE": [
|
|
||||||
"2"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "MIXED"
|
|
||||||
},
|
|
||||||
"name": "Custom chart",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "CUSTOM_CHARTING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 38,
|
|
||||||
"left": 0,
|
|
||||||
"top": 342,
|
|
||||||
"width": 304
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"name": "Controllers",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": null,
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "HEADER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bounds": {
|
|
||||||
"height": 152,
|
|
||||||
"left": 1254,
|
|
||||||
"top": 722,
|
|
||||||
"width": 152
|
|
||||||
},
|
|
||||||
"configured": true,
|
|
||||||
"name": "Problems",
|
|
||||||
"tileFilter": {
|
|
||||||
"managementZone": {
|
|
||||||
"id": "4530644663209438695",
|
|
||||||
"name": "CD_BMW-Assistant-for-Service-Events-(BASE)"
|
|
||||||
},
|
|
||||||
"timeframe": null
|
|
||||||
},
|
|
||||||
"tileType": "OPEN_PROBLEMS"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
config:
|
|
||||||
- BASEEMEAPRODOverviewdashboard: BASEEMEAPRODOverviewdashboard.json
|
|
||||||
- CDBASEE2E: CDBASEE2E.json
|
|
||||||
- BASEEMEAPRODDatabase: BASEEMEAPRODDatabase.json
|
|
||||||
|
|
||||||
BASEEMEAPRODDatabase:
|
|
||||||
- name: '[BASE][EMEA][PROD] Database'
|
|
||||||
BASEEMEAPRODOverviewdashboard:
|
|
||||||
- name: '[BASE][EMEA][PROD] Overview dashboard'
|
|
||||||
CDBASEE2E:
|
|
||||||
- name: CD_BASE E2E
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
CDBuffet:
|
|
||||||
- name: CD_Billing_Buffet/management-zone/CDBuffet.name
|
|
||||||
- mzName: CD_Billing_Buffet/management-zone/CDBuffet.name
|
|
||||||
- mzId: CD_Billing_Buffet/management-zone/CDBuffet.id
|
|
||||||
config:
|
|
||||||
- CDBuffet: Buffet.json
|
|
||||||
|
|
@ -0,0 +1,63 @@
|
||||||
|
{
|
||||||
|
"displayName": "{{.name}}",
|
||||||
|
"eventTypeFilters": [],
|
||||||
|
"managementZoneId": 1580439820202177300,
|
||||||
|
"metadata": {
|
||||||
|
"clusterVersion": "1.209.98.20210122-102634",
|
||||||
|
"configurationVersions": [],
|
||||||
|
"currentConfigurationVersions": [
|
||||||
|
"0"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"mzId": "1580439820202177380",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"delayInMinutes": 0,
|
||||||
|
"severityLevel": "AVAILABILITY",
|
||||||
|
"tagFilter": {
|
||||||
|
"includeMode": "NONE",
|
||||||
|
"tagFilters": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"delayInMinutes": 0,
|
||||||
|
"severityLevel": "ERROR",
|
||||||
|
"tagFilter": {
|
||||||
|
"includeMode": "NONE",
|
||||||
|
"tagFilters": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"delayInMinutes": 30,
|
||||||
|
"severityLevel": "PERFORMANCE",
|
||||||
|
"tagFilter": {
|
||||||
|
"includeMode": "NONE",
|
||||||
|
"tagFilters": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"delayInMinutes": 30,
|
||||||
|
"severityLevel": "RESOURCE_CONTENTION",
|
||||||
|
"tagFilter": {
|
||||||
|
"includeMode": "NONE",
|
||||||
|
"tagFilters": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"delayInMinutes": 0,
|
||||||
|
"severityLevel": "CUSTOM_ALERT",
|
||||||
|
"tagFilter": {
|
||||||
|
"includeMode": "NONE",
|
||||||
|
"tagFilters": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"delayInMinutes": 0,
|
||||||
|
"severityLevel": "MONITORING_UNAVAILABLE",
|
||||||
|
"tagFilter": {
|
||||||
|
"includeMode": "NONE",
|
||||||
|
"tagFilters": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
config:
|
||||||
|
- CDCCG: CDCCG.json
|
||||||
|
|
||||||
|
CDCCG:
|
||||||
|
- name: CD_CCG
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue