Compare commits
25 Commits
2104
...
CD_speech-
| Author | SHA1 | Date |
|---|---|---|
|
|
646d68fb04 | |
|
|
c1041a5eff | |
|
|
8e0784bbe6 | |
|
|
38e5c18e30 | |
|
|
55821438bc | |
|
|
922ccfc544 | |
|
|
f9331a4ec5 | |
|
|
7d271b8265 | |
|
|
e40346e806 | |
|
|
78db8ee430 | |
|
|
87ed336334 | |
|
|
3c1820cb06 | |
|
|
a99be4b64d | |
|
|
58be4b2379 | |
|
|
253a508085 | |
|
|
7fc5d62d77 | |
|
|
e98e0e3c52 | |
|
|
6e0318a330 | |
|
|
8e10b9eb1d | |
|
|
6805744cb3 | |
|
|
8158a0da6c | |
|
|
8e0fa40ffe | |
|
|
0f20b3101f | |
|
|
9087296a88 | |
|
|
b203e6836e |
|
|
@ -0,0 +1,37 @@
|
|||
config:
|
||||
- CDnewComponentTag: default.json
|
||||
|
||||
|
||||
#Prod alerting profiles for EMEA/NA/CN
|
||||
CDnewComponentTag.EMEA-Prod:
|
||||
- name: CD_CoCo-Health-Monitor PROD
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.NA-Prod:
|
||||
- name: CD_CoCo-Health-Monitor PROD
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.CN-Prod:
|
||||
- name: CD_CoCo-Health-Monitor PROD
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
|
||||
#INT alerting profiles for EMEA/NA/CN
|
||||
CDnewComponentTag.EMEA-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor INT
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.NA-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor INT
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.CN-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor INT
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
|
|
@ -0,0 +1,78 @@
|
|||
{
|
||||
"displayName": "{{.name}}",
|
||||
"eventTypeFilters": [],
|
||||
"managementZoneId": "{{.mzId}}",
|
||||
"mzId": "{{.mzId}}",
|
||||
"rules": [
|
||||
{
|
||||
"delayInMinutes": 0,
|
||||
"severityLevel": "AVAILABILITY",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 10,
|
||||
"severityLevel": "ERROR",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 30,
|
||||
"severityLevel": "PERFORMANCE",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 30,
|
||||
"severityLevel": "RESOURCE_CONTENTION",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 10,
|
||||
"severityLevel": "CUSTOM_ALERT",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure custom metrics?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Calculated+Metrics) page to configure your custom metrics.
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure process groups?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Process+Group+Naming) page to configure your process groups.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
config:
|
||||
- CDnewComponentTag: template.json
|
||||
|
||||
CDnewComponentTag:
|
||||
- name: MyProcessNamingRule
|
||||
- nameFormat: "{ProcessGroup:KubernetesNamespace/regex-example}"
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"displayName": "{{.name}}",
|
||||
"enabled": true,
|
||||
"metadata": {
|
||||
"clusterVersion": "1.214.107.20210407-223952",
|
||||
"configurationVersions": [
|
||||
0
|
||||
]
|
||||
},
|
||||
"nameFormat": "{{.nameFormat}}",
|
||||
"rules": [
|
||||
{
|
||||
"comparisonInfo": {
|
||||
"negate": false,
|
||||
"operator": "EQUALS",
|
||||
"type": "TAG",
|
||||
"value": {
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Component",
|
||||
"value": "{{.tag}}"
|
||||
}
|
||||
},
|
||||
"key": {
|
||||
"attribute": "PROCESS_GROUP_TAGS"
|
||||
}
|
||||
}
|
||||
],
|
||||
"type": "PROCESS_GROUP"
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure service naming
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Service+Naming) page to configure your service naming.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
config:
|
||||
- CDnewComponentTag: template.json
|
||||
|
||||
CDnewComponentTag:
|
||||
- name: MyProcessNamingRule
|
||||
- nameFormat: "{ProcessGroup:KubernetesNamespace/regex-example}"
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"displayName": "{{.name}}",
|
||||
"enabled": true,
|
||||
"metadata": {
|
||||
"clusterVersion": "1.214.107.20210407-223952",
|
||||
"configurationVersions": [
|
||||
0
|
||||
]
|
||||
},
|
||||
"nameFormat": "{{.nameFormat}}",
|
||||
"rules": [
|
||||
{
|
||||
"comparisonInfo": {
|
||||
"negate": false,
|
||||
"operator": "EQUALS",
|
||||
"type": "TAG",
|
||||
"value": {
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Component",
|
||||
"value": "{{.tag}}"
|
||||
}
|
||||
},
|
||||
"key": {
|
||||
"attribute": "SERVICE_TAGS"
|
||||
}
|
||||
}
|
||||
],
|
||||
"type": "SERVICE"
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure custom services?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Custom+Services) page to configure your custom services.
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
config:
|
||||
- customService1: template-1-1.json
|
||||
|
||||
customService1:
|
||||
- name: myJOYNRService
|
||||
- className: com.bmw.cc.conn.this.is.just.an.exampleClasss
|
||||
- methodName: exampleJoynrMethod
|
||||
- methodArgs: java.lang.Byte[],java.lang.String
|
||||
- returnType: void
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": ["{{.methodArgs}}"],
|
||||
"methodName": "{{.methodName}}",
|
||||
"returnType": "{{.returnType}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure dashboards?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Dashboards) page to configure your dashboards.
|
||||
|
|
@ -0,0 +1,109 @@
|
|||
config:
|
||||
- CDnewComponentTag-PROD: default.json
|
||||
- CDnewComponentTag-E2E: default.json
|
||||
- CDnewComponentTag-INT: default.json
|
||||
- CDnewComponentTag-TEST: default.json
|
||||
|
||||
#PROD dashboards for EMEA/NA/CN Prod
|
||||
CDnewComponentTag-PROD:
|
||||
- name: CD_CoCo-Health-Monitor PROD
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-PROD.EMEA-Prod:
|
||||
- name: CD_CoCo-Health-Monitor PROD
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-PROD.NA-Prod:
|
||||
- name: CD_CoCo-Health-Monitor PROD
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-PROD.CN-Prod:
|
||||
- name: CD_CoCo-Health-Monitor PROD
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
|
||||
#E2E dashboards for EMEA/NA/CN Prod
|
||||
CDnewComponentTag-E2E:
|
||||
- name: CD_CoCo-Health-Monitor E2E
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-E2E.EMEA-Prod:
|
||||
- name: CD_CoCo-Health-Monitor E2E
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-E2E.NA-Prod:
|
||||
- name: CD_CoCo-Health-Monitor E2E
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-E2E.CN-Prod:
|
||||
- name: CD_CoCo-Health-Monitor E2E
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "false"
|
||||
|
||||
#INT dashboards for EMEA/NA/CN PreProd
|
||||
CDnewComponentTag-INT:
|
||||
- name: CD_CoCo-Health-Monitor INT
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-INT.EMEA-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor INT
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-INT.NA-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor INT
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-INT.CN-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor INT
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
|
||||
#TEST dashboards for EMEA/NA/CN PreProd
|
||||
CDnewComponentTag-TEST:
|
||||
- name: CD_CoCo-Health-Monitor TEST
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-TEST.EMEA-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor TEST
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-TEST.NA-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor TEST
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-TEST.CN-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor TEST
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "false"
|
||||
|
|
@ -0,0 +1,334 @@
|
|||
{
|
||||
"metadata": {
|
||||
"configurationVersions": [
|
||||
3
|
||||
],
|
||||
"clusterVersion": "1.214.107.20210407-223952"
|
||||
},
|
||||
"dashboardMetadata": {
|
||||
"name": "{{.name}}",
|
||||
"shared": true,
|
||||
"owner": "katharina.kiechle@bmw.de",
|
||||
"dashboardFilter": {
|
||||
"timeframe": "-24h to now"
|
||||
},
|
||||
"tags": [
|
||||
"{{.mzName}}"
|
||||
],
|
||||
"preset": true
|
||||
},
|
||||
"tiles": [
|
||||
{
|
||||
"name": "Custom chart",
|
||||
"tileType": "CUSTOM_CHARTING",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 228,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 304
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"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": 1617956393463,
|
||||
"customColor": "#ff0000"
|
||||
},
|
||||
"nullbuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
||||
"lastModified": 1617956441725,
|
||||
"customColor": "#fff29a"
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtersPerEntityType": {
|
||||
"SERVICE": {
|
||||
"AUTO_TAGS": [
|
||||
"Environment:{{.env}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Problems",
|
||||
"tileType": "OPEN_PROBLEMS",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 38,
|
||||
"left": 950,
|
||||
"width": 152,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Overall Health",
|
||||
"tileType": "HEADER",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 0,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 38
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markdown",
|
||||
"tileType": "MARKDOWN",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 532,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 38
|
||||
},
|
||||
"tileFilter": {},
|
||||
"markdown": "---\n"
|
||||
},
|
||||
{
|
||||
"name": "Custom chart",
|
||||
"tileType": "CUSTOM_CHARTING",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 570,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 304
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"filterConfig": {
|
||||
"type": "MIXED",
|
||||
"customName": "Response time, Request Count 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": "Markdown",
|
||||
"tileType": "MARKDOWN",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 190,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 38
|
||||
},
|
||||
"tileFilter": {},
|
||||
"markdown": "---\n"
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"tileType": "DATABASES_OVERVIEW",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 38,
|
||||
"left": 646,
|
||||
"width": 190,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"filterConfig": {
|
||||
"type": "DATABASE",
|
||||
"customName": "Databases",
|
||||
"defaultName": "Databases",
|
||||
"chartConfig": {
|
||||
"legendShown": true,
|
||||
"type": "TIMESERIES",
|
||||
"series": [],
|
||||
"resultMetadata": {}
|
||||
},
|
||||
"filtersPerEntityType": {
|
||||
"DATABASE": {
|
||||
"AUTO_TAGS": [
|
||||
"Environment:{{.env}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"chartVisible": true
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"tileType": "SERVICES",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 38,
|
||||
"left": 342,
|
||||
"width": 190,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"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": 38,
|
||||
"left": 38,
|
||||
"width": 190,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"filterConfig": {
|
||||
"type": "HOST",
|
||||
"customName": "Hosts",
|
||||
"defaultName": "Hosts",
|
||||
"chartConfig": {
|
||||
"legendShown": true,
|
||||
"type": "TIMESERIES",
|
||||
"series": [],
|
||||
"resultMetadata": {}
|
||||
},
|
||||
"filtersPerEntityType": {
|
||||
"HOST": {
|
||||
"AUTO_TAGS": [
|
||||
"Environment:{{.env}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"chartVisible": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure management zones?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Management+Zones) page to configure your management zones.
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"dimensionalRules": [],
|
||||
"name": "{{.name}}",
|
||||
"entitySelectorBasedRules": [
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(Service),tag({{.compassIDs}})"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(SERVICE),databaseName.exists(),toRelationship.calls(type(SERVICE),tag({{.compassIDs}}))"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(PROCESS_GROUP_INSTANCE),tag({{.compassIDs}})"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(HOST),tag({{.compassIDs}})"
|
||||
}
|
||||
],
|
||||
"rules": []
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
config:
|
||||
- CDnewComponentTag: default.json
|
||||
|
||||
CDnewComponentTag:
|
||||
- name: CD_CoCo-Health-Monitor
|
||||
- compassIDs: \"compass-id:coco-hm\"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure notification systems?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Problem+Notification+Integrations) page to configure your notification systems.
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"active": true,
|
||||
"alertingProfile": "{{.alertingProfile}}",
|
||||
"bccReceivers": [],
|
||||
"body": "{ProblemDetailsHTML}",
|
||||
"ccReceivers": [],
|
||||
"name": "{{.name}}",
|
||||
"receivers": [
|
||||
"{{.receivers}}"
|
||||
],
|
||||
"subject": "{State} Problem {ProblemID}: {ImpactedEntity}",
|
||||
"type": "EMAIL"
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"acceptAnyCertificate": false,
|
||||
"active": true,
|
||||
"alertingProfile": "{{.alertingProfile}}",
|
||||
"headers": [
|
||||
{
|
||||
"name": "Authorization",
|
||||
"value": "{{.Env.SecretAuthHeader}}"
|
||||
},
|
||||
{
|
||||
"name": "x-apikey",
|
||||
"value": "{{.Env.SecretXAPIKey}}"
|
||||
}
|
||||
],
|
||||
"name": "{{.name}}",
|
||||
"notifyEventMergesEnabled": false,
|
||||
"payload": "[\n{\n \"attributes\": {\n \"CLASS\": \"BusinessTransaction\",\n \"source\": \"MgmtZone: {{.mzName}}\",\n \"severity\": \"MINOR\",\n \"origin\": \"{{.appdid}}\",\n \"sub_origin\": \"Dynatrace SaaS - {ImpactedEntity}\",\n \"adapter_host\": \"{{ .DTEnvironment }}\",\n \"msg\": \"{ProblemDetailsText}\",\n \"contract_id\": \"{{.contractid}}\",\n \"ars_esc\": \"Yes\",\n \"ars_delay_time\": \"0\",\n \"hostname\": \"test\",\n \"sub_source\": \"Environment: CoCo_EMEA_Prod\",\n \"server_loc\": \"\",\n \"event_id\": \"AI001\",\n \"dd_plus\": \"{ProblemSeverity}\",\n \"dd1\": \"{ProblemURL}\",\n \"dd2\": \"{PID}\"\n }\n}\n]",
|
||||
"type": "WEBHOOK",
|
||||
"url": "{{.webhook}}"
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"acceptAnyCertificate": false,
|
||||
"active": true,
|
||||
"alertingProfile": "{{.alertingProfile}}",
|
||||
"headers": [],
|
||||
"name": "{{.name}}",
|
||||
"notifyEventMergesEnabled": false,
|
||||
"payload": "{\n\"title\":\"{ProblemTitle}\",\n\"text\":\"{ProblemDetailsHTML}\",\n\"themeColor\":\"EA4300\"\n}",
|
||||
"type": "WEBHOOK",
|
||||
"url": "{{.webhook}}"
|
||||
}
|
||||
|
|
@ -0,0 +1,102 @@
|
|||
config:
|
||||
- CDnewComponentTag: msTeams.json
|
||||
- CDnewComponentTagITSM: itsm.json
|
||||
|
||||
# Notification System for EMEA/NA/CN Prod msTeams
|
||||
CDnewComponentTag.EMEA-Prod:
|
||||
- name: CD_CoCo-Health-Monitor PROD
|
||||
- alertingProfile: CD_CoCo-Health-Monitor/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag.NA-Prod:
|
||||
- name: CD_CoCo-Health-Monitor PROD
|
||||
- alertingProfile: CD_CoCo-Health-Monitor/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag.CN-Prod:
|
||||
- name: CD_CoCo-Health-Monitor PROD
|
||||
- alertingProfile: CD_CoCo-Health-Monitor/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
|
||||
# Notification System for EMEA/NA/CN PreProd msTeams
|
||||
CDnewComponentTag.EMEA-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor INT
|
||||
- alertingProfile: CD_CoCo-Health-Monitor/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag.NA-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor INT
|
||||
- alertingProfile: CD_CoCo-Health-Monitor/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag.CN-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor INT
|
||||
- alertingProfile: CD_CoCo-Health-Monitor/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
|
||||
|
||||
# Notification System for EMEA/NA/CN Prod ITSM
|
||||
CDnewComponentTagITSM.EMEA-Prod:
|
||||
- name: CD_CoCo-Health-Monitor ITSM PROD
|
||||
- alertingProfile: CD_CoCo-Health-Monitor/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
CDnewComponentTagITSM.NA-Prod:
|
||||
- name: CD_CoCo-Health-Monitor ITSM PROD
|
||||
- alertingProfile: CD_CoCo-Health-Monitor/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
|
||||
CDnewComponentTagITSM.CN-Prod:
|
||||
- name: CD_CoCo-Health-Monitor ITSM PROD
|
||||
- alertingProfile: CD_CoCo-Health-Monitor/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
CDnewComponentTagITSM.EMEA-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor ITSM INT
|
||||
- alertingProfile: CD_CoCo-Health-Monitor/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
CDnewComponentTagITSM.NA-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor ITSM INT
|
||||
- alertingProfile: CD_CoCo-Health-Monitor/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
|
||||
CDnewComponentTagITSM.CN-PreProd:
|
||||
- name: CD_CoCo-Health-Monitor ITSM INT
|
||||
- alertingProfile: CD_CoCo-Health-Monitor/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure synthetics?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Synthetic+Monitors) page to configure your synthetics.
|
||||
|
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"anomalyDetection": {
|
||||
"loadingTimeThresholds": {
|
||||
"enabled": false,
|
||||
"thresholds": [
|
||||
{
|
||||
"type": "TOTAL",
|
||||
"valueMs": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"outageHandling": {
|
||||
"globalOutage": true,
|
||||
"localOutage": false,
|
||||
"localOutagePolicy": {
|
||||
"affectedLocations": 1,
|
||||
"consecutiveRuns": 3
|
||||
}
|
||||
}
|
||||
},
|
||||
"automaticallyAssignedApps": [],
|
||||
"enabled": true,
|
||||
"frequencyMin": 1,
|
||||
"locations": [
|
||||
"{{.location}}"
|
||||
],
|
||||
"managementZones": [
|
||||
{
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
],
|
||||
"manuallyAssignedApps": [],
|
||||
"name": "{{.name}}",
|
||||
"requests": [
|
||||
{
|
||||
"entityId": "HTTP_CHECK_STEP-0BA53EC80CD7EE5A",
|
||||
"name": "{{.name}}",
|
||||
"sequenceNumber": 1
|
||||
}
|
||||
],
|
||||
"script": {
|
||||
"requests": [
|
||||
{
|
||||
"configuration": {
|
||||
"acceptAnyCertificate": true,
|
||||
"followRedirects": true,
|
||||
"requestHeaders": [
|
||||
{
|
||||
"name": "accept",
|
||||
"value": "application/json"
|
||||
},
|
||||
{
|
||||
"name": "Content-Type",
|
||||
"value": "application/json"
|
||||
},
|
||||
{
|
||||
"name": "api_key",
|
||||
"value": "355DE89C-7B72-4EA3-BDD8-157C79EB2C23"
|
||||
}
|
||||
]
|
||||
},
|
||||
"description": "{{.name}}",
|
||||
"method": "GET",
|
||||
"url": "{{.endpoint}}",
|
||||
"validation": {
|
||||
"rules": [
|
||||
{
|
||||
"passIfFound": true,
|
||||
"type": "httpStatusesList",
|
||||
"value": "200"
|
||||
}
|
||||
],
|
||||
"rulesChaining": "or"
|
||||
}
|
||||
}
|
||||
],
|
||||
"version": "1.0"
|
||||
},
|
||||
"tags": [],
|
||||
"type": "HTTP"
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
config:
|
||||
- newComponentTag: default.json
|
||||
|
||||
newComponentTag:
|
||||
- name: CD_CoCo-Health-Monitor - <synthetic-name>
|
||||
- mzName: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_CoCo-Health-Monitor/management-zone/CDnewComponentTag.id
|
||||
- endpoint: <url>
|
||||
- location: <location>
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
config:
|
||||
- CDnewComponentTag: default.json
|
||||
|
||||
|
||||
#Prod alerting profiles for EMEA/NA/CN
|
||||
CDnewComponentTag.EMEA-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder PROD
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.NA-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder PROD
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.CN-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder PROD
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
|
||||
#INT alerting profiles for EMEA/NA/CN
|
||||
CDnewComponentTag.EMEA-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder INT
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.NA-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder INT
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.CN-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder INT
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
|
|
@ -0,0 +1,78 @@
|
|||
{
|
||||
"displayName": "{{.name}}",
|
||||
"eventTypeFilters": [],
|
||||
"managementZoneId": "{{.mzId}}",
|
||||
"mzId": "{{.mzId}}",
|
||||
"rules": [
|
||||
{
|
||||
"delayInMinutes": 0,
|
||||
"severityLevel": "AVAILABILITY",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 10,
|
||||
"severityLevel": "ERROR",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 30,
|
||||
"severityLevel": "PERFORMANCE",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 30,
|
||||
"severityLevel": "RESOURCE_CONTENTION",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 10,
|
||||
"severityLevel": "CUSTOM_ALERT",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure custom metrics?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Calculated+Metrics) page to configure your custom metrics.
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure process groups?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Process+Group+Naming) page to configure your process groups.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
config:
|
||||
- CDnewComponentTag: template.json
|
||||
|
||||
CDnewComponentTag:
|
||||
- name: MyProcessNamingRule
|
||||
- nameFormat: "{ProcessGroup:KubernetesNamespace/regex-example}"
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"displayName": "{{.name}}",
|
||||
"enabled": true,
|
||||
"metadata": {
|
||||
"clusterVersion": "1.214.107.20210407-223952",
|
||||
"configurationVersions": [
|
||||
0
|
||||
]
|
||||
},
|
||||
"nameFormat": "{{.nameFormat}}",
|
||||
"rules": [
|
||||
{
|
||||
"comparisonInfo": {
|
||||
"negate": false,
|
||||
"operator": "EQUALS",
|
||||
"type": "TAG",
|
||||
"value": {
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Component",
|
||||
"value": "{{.tag}}"
|
||||
}
|
||||
},
|
||||
"key": {
|
||||
"attribute": "PROCESS_GROUP_TAGS"
|
||||
}
|
||||
}
|
||||
],
|
||||
"type": "PROCESS_GROUP"
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure service naming
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Service+Naming) page to configure your service naming.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
config:
|
||||
- CDnewComponentTag: template.json
|
||||
|
||||
CDnewComponentTag:
|
||||
- name: MyProcessNamingRule
|
||||
- nameFormat: "{ProcessGroup:KubernetesNamespace/regex-example}"
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"displayName": "{{.name}}",
|
||||
"enabled": true,
|
||||
"metadata": {
|
||||
"clusterVersion": "1.214.107.20210407-223952",
|
||||
"configurationVersions": [
|
||||
0
|
||||
]
|
||||
},
|
||||
"nameFormat": "{{.nameFormat}}",
|
||||
"rules": [
|
||||
{
|
||||
"comparisonInfo": {
|
||||
"negate": false,
|
||||
"operator": "EQUALS",
|
||||
"type": "TAG",
|
||||
"value": {
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Component",
|
||||
"value": "{{.tag}}"
|
||||
}
|
||||
},
|
||||
"key": {
|
||||
"attribute": "SERVICE_TAGS"
|
||||
}
|
||||
}
|
||||
],
|
||||
"type": "SERVICE"
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure custom services?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Custom+Services) page to configure your custom services.
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
config:
|
||||
- customService1: template-1-1.json
|
||||
|
||||
customService1:
|
||||
- name: myJOYNRService
|
||||
- className: com.bmw.cc.conn.this.is.just.an.exampleClasss
|
||||
- methodName: exampleJoynrMethod
|
||||
- methodArgs: java.lang.Byte[],java.lang.String
|
||||
- returnType: void
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": ["{{.methodArgs}}"],
|
||||
"methodName": "{{.methodName}}",
|
||||
"returnType": "{{.returnType}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure dashboards?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Dashboards) page to configure your dashboards.
|
||||
|
|
@ -0,0 +1,109 @@
|
|||
config:
|
||||
- CDnewComponentTag-PROD: default.json
|
||||
- CDnewComponentTag-E2E: default.json
|
||||
- CDnewComponentTag-INT: default.json
|
||||
- CDnewComponentTag-TEST: default.json
|
||||
|
||||
#PROD dashboards for EMEA/NA/CN Prod
|
||||
CDnewComponentTag-PROD:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder PROD
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-PROD.EMEA-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder PROD
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-PROD.NA-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder PROD
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-PROD.CN-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder PROD
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
|
||||
#E2E dashboards for EMEA/NA/CN Prod
|
||||
CDnewComponentTag-E2E:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder E2E
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-E2E.EMEA-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder E2E
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-E2E.NA-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder E2E
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-E2E.CN-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder E2E
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "false"
|
||||
|
||||
#INT dashboards for EMEA/NA/CN PreProd
|
||||
CDnewComponentTag-INT:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder INT
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-INT.EMEA-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder INT
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-INT.NA-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder INT
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-INT.CN-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder INT
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
|
||||
#TEST dashboards for EMEA/NA/CN PreProd
|
||||
CDnewComponentTag-TEST:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder TEST
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-TEST.EMEA-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder TEST
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-TEST.NA-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder TEST
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-TEST.CN-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder TEST
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "false"
|
||||
|
|
@ -0,0 +1,334 @@
|
|||
{
|
||||
"metadata": {
|
||||
"configurationVersions": [
|
||||
3
|
||||
],
|
||||
"clusterVersion": "1.214.107.20210407-223952"
|
||||
},
|
||||
"dashboardMetadata": {
|
||||
"name": "{{.name}}",
|
||||
"shared": true,
|
||||
"owner": "Ignacio.Goldman@partner.bmwgroup.com",
|
||||
"dashboardFilter": {
|
||||
"timeframe": "-24h to now"
|
||||
},
|
||||
"tags": [
|
||||
"{{.mzName}}"
|
||||
],
|
||||
"preset": true
|
||||
},
|
||||
"tiles": [
|
||||
{
|
||||
"name": "Custom chart",
|
||||
"tileType": "CUSTOM_CHARTING",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 228,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 304
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"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": 1617956393463,
|
||||
"customColor": "#ff0000"
|
||||
},
|
||||
"nullbuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
||||
"lastModified": 1617956441725,
|
||||
"customColor": "#fff29a"
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtersPerEntityType": {
|
||||
"SERVICE": {
|
||||
"AUTO_TAGS": [
|
||||
"Environment:{{.env}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Problems",
|
||||
"tileType": "OPEN_PROBLEMS",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 38,
|
||||
"left": 950,
|
||||
"width": 152,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Overall Health",
|
||||
"tileType": "HEADER",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 0,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 38
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markdown",
|
||||
"tileType": "MARKDOWN",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 532,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 38
|
||||
},
|
||||
"tileFilter": {},
|
||||
"markdown": "---\n"
|
||||
},
|
||||
{
|
||||
"name": "Custom chart",
|
||||
"tileType": "CUSTOM_CHARTING",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 570,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 304
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"filterConfig": {
|
||||
"type": "MIXED",
|
||||
"customName": "Response time, Request Count 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": "Markdown",
|
||||
"tileType": "MARKDOWN",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 190,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 38
|
||||
},
|
||||
"tileFilter": {},
|
||||
"markdown": "---\n"
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"tileType": "DATABASES_OVERVIEW",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 38,
|
||||
"left": 646,
|
||||
"width": 190,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"filterConfig": {
|
||||
"type": "DATABASE",
|
||||
"customName": "Databases",
|
||||
"defaultName": "Databases",
|
||||
"chartConfig": {
|
||||
"legendShown": true,
|
||||
"type": "TIMESERIES",
|
||||
"series": [],
|
||||
"resultMetadata": {}
|
||||
},
|
||||
"filtersPerEntityType": {
|
||||
"DATABASE": {
|
||||
"AUTO_TAGS": [
|
||||
"Environment:{{.env}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"chartVisible": true
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"tileType": "SERVICES",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 38,
|
||||
"left": 342,
|
||||
"width": 190,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"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": 38,
|
||||
"left": 38,
|
||||
"width": 190,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"filterConfig": {
|
||||
"type": "HOST",
|
||||
"customName": "Hosts",
|
||||
"defaultName": "Hosts",
|
||||
"chartConfig": {
|
||||
"legendShown": true,
|
||||
"type": "TIMESERIES",
|
||||
"series": [],
|
||||
"resultMetadata": {}
|
||||
},
|
||||
"filtersPerEntityType": {
|
||||
"HOST": {
|
||||
"AUTO_TAGS": [
|
||||
"Environment:{{.env}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"chartVisible": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure management zones?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Management+Zones) page to configure your management zones.
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"dimensionalRules": [],
|
||||
"name": "{{.name}}",
|
||||
"entitySelectorBasedRules": [
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(Service),tag({{.compassIDs}})"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(SERVICE),databaseName.exists(),toRelationship.calls(type(SERVICE),tag({{.compassIDs}}))"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(PROCESS_GROUP_INSTANCE),tag({{.compassIDs}})"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(HOST),tag({{.compassIDs}})"
|
||||
}
|
||||
],
|
||||
"rules": []
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
config:
|
||||
- CDnewComponentTag: default.json
|
||||
|
||||
CDnewComponentTag:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder
|
||||
- compassIDs: \"compass-id:iisc-ir\"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure notification systems?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Problem+Notification+Integrations) page to configure your notification systems.
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"active": true,
|
||||
"alertingProfile": "{{.alertingProfile}}",
|
||||
"bccReceivers": [],
|
||||
"body": "{ProblemDetailsHTML}",
|
||||
"ccReceivers": [],
|
||||
"name": "{{.name}}",
|
||||
"receivers": [
|
||||
"{{.receivers}}"
|
||||
],
|
||||
"subject": "{State} Problem {ProblemID}: {ImpactedEntity}",
|
||||
"type": "EMAIL"
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"acceptAnyCertificate": false,
|
||||
"active": true,
|
||||
"alertingProfile": "{{.alertingProfile}}",
|
||||
"headers": [
|
||||
{
|
||||
"name": "Authorization",
|
||||
"value": "{{.Env.SecretAuthHeader}}"
|
||||
},
|
||||
{
|
||||
"name": "x-apikey",
|
||||
"value": "{{.Env.SecretXAPIKey}}"
|
||||
}
|
||||
],
|
||||
"name": "{{.name}}",
|
||||
"notifyEventMergesEnabled": false,
|
||||
"payload": "[\n{\n \"attributes\": {\n \"CLASS\": \"BusinessTransaction\",\n \"source\": \"MgmtZone: {{.mzName}}\",\n \"severity\": \"MINOR\",\n \"origin\": \"{{.appdid}}\",\n \"sub_origin\": \"Dynatrace SaaS - {ImpactedEntity}\",\n \"adapter_host\": \"{{ .DTEnvironment }}\",\n \"msg\": \"{ProblemDetailsText}\",\n \"contract_id\": \"{{.contractid}}\",\n \"ars_esc\": \"Yes\",\n \"ars_delay_time\": \"0\",\n \"hostname\": \"test\",\n \"sub_source\": \"Environment: CoCo_EMEA_Prod\",\n \"server_loc\": \"\",\n \"event_id\": \"AI001\",\n \"dd_plus\": \"{ProblemSeverity}\",\n \"dd1\": \"{ProblemURL}\",\n \"dd2\": \"{PID}\"\n }\n}\n]",
|
||||
"type": "WEBHOOK",
|
||||
"url": "{{.webhook}}"
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"acceptAnyCertificate": false,
|
||||
"active": true,
|
||||
"alertingProfile": "{{.alertingProfile}}",
|
||||
"headers": [],
|
||||
"name": "{{.name}}",
|
||||
"notifyEventMergesEnabled": false,
|
||||
"payload": "{\n\"title\":\"{ProblemTitle}\",\n\"text\":\"{ProblemDetailsHTML}\",\n\"themeColor\":\"EA4300\"\n}",
|
||||
"type": "WEBHOOK",
|
||||
"url": "{{.webhook}}"
|
||||
}
|
||||
|
|
@ -0,0 +1,102 @@
|
|||
config:
|
||||
- CDnewComponentTag: msTeams.json
|
||||
- CDnewComponentTagITSM: itsm.json
|
||||
|
||||
# Notification System for EMEA/NA/CN Prod msTeams
|
||||
CDnewComponentTag.EMEA-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder PROD
|
||||
- alertingProfile: CD_IISC-IR-Intelligent-Reminder/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag.NA-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder PROD
|
||||
- alertingProfile: CD_IISC-IR-Intelligent-Reminder/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag.CN-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder PROD
|
||||
- alertingProfile: CD_IISC-IR-Intelligent-Reminder/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
|
||||
# Notification System for EMEA/NA/CN PreProd msTeams
|
||||
CDnewComponentTag.EMEA-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder INT
|
||||
- alertingProfile: CD_IISC-IR-Intelligent-Reminder/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag.NA-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder INT
|
||||
- alertingProfile: CD_IISC-IR-Intelligent-Reminder/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag.CN-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder INT
|
||||
- alertingProfile: CD_IISC-IR-Intelligent-Reminder/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
|
||||
|
||||
# Notification System for EMEA/NA/CN Prod ITSM
|
||||
CDnewComponentTagITSM.EMEA-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder ITSM PROD
|
||||
- alertingProfile: CD_IISC-IR-Intelligent-Reminder/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
CDnewComponentTagITSM.NA-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder ITSM PROD
|
||||
- alertingProfile: CD_IISC-IR-Intelligent-Reminder/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
|
||||
CDnewComponentTagITSM.CN-Prod:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder ITSM PROD
|
||||
- alertingProfile: CD_IISC-IR-Intelligent-Reminder/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
CDnewComponentTagITSM.EMEA-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder ITSM INT
|
||||
- alertingProfile: CD_IISC-IR-Intelligent-Reminder/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
CDnewComponentTagITSM.NA-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder ITSM INT
|
||||
- alertingProfile: CD_IISC-IR-Intelligent-Reminder/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
|
||||
CDnewComponentTagITSM.CN-PreProd:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder ITSM INT
|
||||
- alertingProfile: CD_IISC-IR-Intelligent-Reminder/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure synthetics?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Synthetic+Monitors) page to configure your synthetics.
|
||||
|
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"anomalyDetection": {
|
||||
"loadingTimeThresholds": {
|
||||
"enabled": false,
|
||||
"thresholds": [
|
||||
{
|
||||
"type": "TOTAL",
|
||||
"valueMs": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"outageHandling": {
|
||||
"globalOutage": true,
|
||||
"localOutage": false,
|
||||
"localOutagePolicy": {
|
||||
"affectedLocations": 1,
|
||||
"consecutiveRuns": 3
|
||||
}
|
||||
}
|
||||
},
|
||||
"automaticallyAssignedApps": [],
|
||||
"enabled": true,
|
||||
"frequencyMin": 1,
|
||||
"locations": [
|
||||
"{{.location}}"
|
||||
],
|
||||
"managementZones": [
|
||||
{
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
],
|
||||
"manuallyAssignedApps": [],
|
||||
"name": "{{.name}}",
|
||||
"requests": [
|
||||
{
|
||||
"entityId": "HTTP_CHECK_STEP-0BA53EC80CD7EE5A",
|
||||
"name": "{{.name}}",
|
||||
"sequenceNumber": 1
|
||||
}
|
||||
],
|
||||
"script": {
|
||||
"requests": [
|
||||
{
|
||||
"configuration": {
|
||||
"acceptAnyCertificate": true,
|
||||
"followRedirects": true,
|
||||
"requestHeaders": [
|
||||
{
|
||||
"name": "accept",
|
||||
"value": "application/json"
|
||||
},
|
||||
{
|
||||
"name": "Content-Type",
|
||||
"value": "application/json"
|
||||
},
|
||||
{
|
||||
"name": "api_key",
|
||||
"value": "355DE89C-7B72-4EA3-BDD8-157C79EB2C23"
|
||||
}
|
||||
]
|
||||
},
|
||||
"description": "{{.name}}",
|
||||
"method": "GET",
|
||||
"url": "{{.endpoint}}",
|
||||
"validation": {
|
||||
"rules": [
|
||||
{
|
||||
"passIfFound": true,
|
||||
"type": "httpStatusesList",
|
||||
"value": "200"
|
||||
}
|
||||
],
|
||||
"rulesChaining": "or"
|
||||
}
|
||||
}
|
||||
],
|
||||
"version": "1.0"
|
||||
},
|
||||
"tags": [],
|
||||
"type": "HTTP"
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
config:
|
||||
- newComponentTag: default.json
|
||||
|
||||
newComponentTag:
|
||||
- name: CD_IISC-IR-Intelligent-Reminder - <synthetic-name>
|
||||
- mzName: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-IR-Intelligent-Reminder/management-zone/CDnewComponentTag.id
|
||||
- endpoint: <url>
|
||||
- location: <location>
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
config:
|
||||
- CDnewComponentTag: default.json
|
||||
|
||||
|
||||
#Prod alerting profiles for EMEA/NA/CN
|
||||
CDnewComponentTag.EMEA-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation PROD
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.NA-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation PROD
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.CN-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation PROD
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
|
||||
#INT alerting profiles for EMEA/NA/CN
|
||||
CDnewComponentTag.EMEA-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation INT
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.NA-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation INT
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.CN-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation INT
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
|
|
@ -0,0 +1,78 @@
|
|||
{
|
||||
"displayName": "{{.name}}",
|
||||
"eventTypeFilters": [],
|
||||
"managementZoneId": "{{.mzId}}",
|
||||
"mzId": "{{.mzId}}",
|
||||
"rules": [
|
||||
{
|
||||
"delayInMinutes": 0,
|
||||
"severityLevel": "AVAILABILITY",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 10,
|
||||
"severityLevel": "ERROR",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 30,
|
||||
"severityLevel": "PERFORMANCE",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 30,
|
||||
"severityLevel": "RESOURCE_CONTENTION",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 10,
|
||||
"severityLevel": "CUSTOM_ALERT",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure custom metrics?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Calculated+Metrics) page to configure your custom metrics.
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure process groups?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Process+Group+Naming) page to configure your process groups.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
config:
|
||||
- CDnewComponentTag: template.json
|
||||
|
||||
CDnewComponentTag:
|
||||
- name: MyProcessNamingRule
|
||||
- nameFormat: "{ProcessGroup:KubernetesNamespace/regex-example}"
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"displayName": "{{.name}}",
|
||||
"enabled": true,
|
||||
"metadata": {
|
||||
"clusterVersion": "1.214.107.20210407-223952",
|
||||
"configurationVersions": [
|
||||
0
|
||||
]
|
||||
},
|
||||
"nameFormat": "{{.nameFormat}}",
|
||||
"rules": [
|
||||
{
|
||||
"comparisonInfo": {
|
||||
"negate": false,
|
||||
"operator": "EQUALS",
|
||||
"type": "TAG",
|
||||
"value": {
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Component",
|
||||
"value": "{{.tag}}"
|
||||
}
|
||||
},
|
||||
"key": {
|
||||
"attribute": "PROCESS_GROUP_TAGS"
|
||||
}
|
||||
}
|
||||
],
|
||||
"type": "PROCESS_GROUP"
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure service naming
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Service+Naming) page to configure your service naming.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
config:
|
||||
- CDnewComponentTag: template.json
|
||||
|
||||
CDnewComponentTag:
|
||||
- name: MyProcessNamingRule
|
||||
- nameFormat: "{ProcessGroup:KubernetesNamespace/regex-example}"
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"displayName": "{{.name}}",
|
||||
"enabled": true,
|
||||
"metadata": {
|
||||
"clusterVersion": "1.214.107.20210407-223952",
|
||||
"configurationVersions": [
|
||||
0
|
||||
]
|
||||
},
|
||||
"nameFormat": "{{.nameFormat}}",
|
||||
"rules": [
|
||||
{
|
||||
"comparisonInfo": {
|
||||
"negate": false,
|
||||
"operator": "EQUALS",
|
||||
"type": "TAG",
|
||||
"value": {
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Component",
|
||||
"value": "{{.tag}}"
|
||||
}
|
||||
},
|
||||
"key": {
|
||||
"attribute": "SERVICE_TAGS"
|
||||
}
|
||||
}
|
||||
],
|
||||
"type": "SERVICE"
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure custom services?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Custom+Services) page to configure your custom services.
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
config:
|
||||
- customService1: template-1-1.json
|
||||
|
||||
customService1:
|
||||
- name: myJOYNRService
|
||||
- className: com.bmw.cc.conn.this.is.just.an.exampleClasss
|
||||
- methodName: exampleJoynrMethod
|
||||
- methodArgs: java.lang.Byte[],java.lang.String
|
||||
- returnType: void
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": ["{{.methodArgs}}"],
|
||||
"methodName": "{{.methodName}}",
|
||||
"returnType": "{{.returnType}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure dashboards?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Dashboards) page to configure your dashboards.
|
||||
|
|
@ -0,0 +1,109 @@
|
|||
config:
|
||||
- CDnewComponentTag-PROD: default.json
|
||||
- CDnewComponentTag-E2E: default.json
|
||||
- CDnewComponentTag-INT: default.json
|
||||
- CDnewComponentTag-TEST: default.json
|
||||
|
||||
#PROD dashboards for EMEA/NA/CN Prod
|
||||
CDnewComponentTag-PROD:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation PROD
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-PROD.EMEA-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation PROD
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-PROD.NA-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation PROD
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-PROD.CN-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation PROD
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
|
||||
#E2E dashboards for EMEA/NA/CN Prod
|
||||
CDnewComponentTag-E2E:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation E2E
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-E2E.EMEA-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation E2E
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-E2E.NA-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation E2E
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-E2E.CN-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation E2E
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "false"
|
||||
|
||||
#INT dashboards for EMEA/NA/CN PreProd
|
||||
CDnewComponentTag-INT:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation INT
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-INT.EMEA-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation INT
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-INT.NA-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation INT
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-INT.CN-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation INT
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
|
||||
#TEST dashboards for EMEA/NA/CN PreProd
|
||||
CDnewComponentTag-TEST:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation TEST
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-TEST.EMEA-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation TEST
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-TEST.NA-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation TEST
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-TEST.CN-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation TEST
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "false"
|
||||
|
|
@ -0,0 +1,334 @@
|
|||
{
|
||||
"metadata": {
|
||||
"configurationVersions": [
|
||||
3
|
||||
],
|
||||
"clusterVersion": "1.214.107.20210407-223952"
|
||||
},
|
||||
"dashboardMetadata": {
|
||||
"name": "{{.name}}",
|
||||
"shared": true,
|
||||
"owner": "Ignacio.Goldman@partner.bmwgroup.com",
|
||||
"dashboardFilter": {
|
||||
"timeframe": "-24h to now"
|
||||
},
|
||||
"tags": [
|
||||
"{{.mzName}}"
|
||||
],
|
||||
"preset": true
|
||||
},
|
||||
"tiles": [
|
||||
{
|
||||
"name": "Custom chart",
|
||||
"tileType": "CUSTOM_CHARTING",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 228,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 304
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"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": 1617956393463,
|
||||
"customColor": "#ff0000"
|
||||
},
|
||||
"nullbuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
||||
"lastModified": 1617956441725,
|
||||
"customColor": "#fff29a"
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtersPerEntityType": {
|
||||
"SERVICE": {
|
||||
"AUTO_TAGS": [
|
||||
"Environment:{{.env}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Problems",
|
||||
"tileType": "OPEN_PROBLEMS",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 38,
|
||||
"left": 950,
|
||||
"width": 152,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Overall Health",
|
||||
"tileType": "HEADER",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 0,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 38
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markdown",
|
||||
"tileType": "MARKDOWN",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 532,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 38
|
||||
},
|
||||
"tileFilter": {},
|
||||
"markdown": "---\n"
|
||||
},
|
||||
{
|
||||
"name": "Custom chart",
|
||||
"tileType": "CUSTOM_CHARTING",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 570,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 304
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"filterConfig": {
|
||||
"type": "MIXED",
|
||||
"customName": "Response time, Request Count 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": "Markdown",
|
||||
"tileType": "MARKDOWN",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 190,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 38
|
||||
},
|
||||
"tileFilter": {},
|
||||
"markdown": "---\n"
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"tileType": "DATABASES_OVERVIEW",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 38,
|
||||
"left": 646,
|
||||
"width": 190,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"filterConfig": {
|
||||
"type": "DATABASE",
|
||||
"customName": "Databases",
|
||||
"defaultName": "Databases",
|
||||
"chartConfig": {
|
||||
"legendShown": true,
|
||||
"type": "TIMESERIES",
|
||||
"series": [],
|
||||
"resultMetadata": {}
|
||||
},
|
||||
"filtersPerEntityType": {
|
||||
"DATABASE": {
|
||||
"AUTO_TAGS": [
|
||||
"Environment:{{.env}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"chartVisible": true
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"tileType": "SERVICES",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 38,
|
||||
"left": 342,
|
||||
"width": 190,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"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": 38,
|
||||
"left": 38,
|
||||
"width": 190,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"filterConfig": {
|
||||
"type": "HOST",
|
||||
"customName": "Hosts",
|
||||
"defaultName": "Hosts",
|
||||
"chartConfig": {
|
||||
"legendShown": true,
|
||||
"type": "TIMESERIES",
|
||||
"series": [],
|
||||
"resultMetadata": {}
|
||||
},
|
||||
"filtersPerEntityType": {
|
||||
"HOST": {
|
||||
"AUTO_TAGS": [
|
||||
"Environment:{{.env}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"chartVisible": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure management zones?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Management+Zones) page to configure your management zones.
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"dimensionalRules": [],
|
||||
"name": "{{.name}}",
|
||||
"entitySelectorBasedRules": [
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(Service),tag({{.compassIDs}})"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(SERVICE),databaseName.exists(),toRelationship.calls(type(SERVICE),tag({{.compassIDs}}))"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(PROCESS_GROUP_INSTANCE),tag({{.compassIDs}})"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(HOST),tag({{.compassIDs}})"
|
||||
}
|
||||
],
|
||||
"rules": []
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
config:
|
||||
- CDnewComponentTag: default.json
|
||||
|
||||
CDnewComponentTag:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation
|
||||
- compassIDs: \"compass-id:iisc-rr\"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure notification systems?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Problem+Notification+Integrations) page to configure your notification systems.
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"active": true,
|
||||
"alertingProfile": "{{.alertingProfile}}",
|
||||
"bccReceivers": [],
|
||||
"body": "{ProblemDetailsHTML}",
|
||||
"ccReceivers": [],
|
||||
"name": "{{.name}}",
|
||||
"receivers": [
|
||||
"{{.receivers}}"
|
||||
],
|
||||
"subject": "{State} Problem {ProblemID}: {ImpactedEntity}",
|
||||
"type": "EMAIL"
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"acceptAnyCertificate": false,
|
||||
"active": true,
|
||||
"alertingProfile": "{{.alertingProfile}}",
|
||||
"headers": [
|
||||
{
|
||||
"name": "Authorization",
|
||||
"value": "{{.Env.SecretAuthHeader}}"
|
||||
},
|
||||
{
|
||||
"name": "x-apikey",
|
||||
"value": "{{.Env.SecretXAPIKey}}"
|
||||
}
|
||||
],
|
||||
"name": "{{.name}}",
|
||||
"notifyEventMergesEnabled": false,
|
||||
"payload": "[\n{\n \"attributes\": {\n \"CLASS\": \"BusinessTransaction\",\n \"source\": \"MgmtZone: {{.mzName}}\",\n \"severity\": \"MINOR\",\n \"origin\": \"{{.appdid}}\",\n \"sub_origin\": \"Dynatrace SaaS - {ImpactedEntity}\",\n \"adapter_host\": \"{{ .DTEnvironment }}\",\n \"msg\": \"{ProblemDetailsText}\",\n \"contract_id\": \"{{.contractid}}\",\n \"ars_esc\": \"Yes\",\n \"ars_delay_time\": \"0\",\n \"hostname\": \"test\",\n \"sub_source\": \"Environment: CoCo_EMEA_Prod\",\n \"server_loc\": \"\",\n \"event_id\": \"AI001\",\n \"dd_plus\": \"{ProblemSeverity}\",\n \"dd1\": \"{ProblemURL}\",\n \"dd2\": \"{PID}\"\n }\n}\n]",
|
||||
"type": "WEBHOOK",
|
||||
"url": "{{.webhook}}"
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"acceptAnyCertificate": false,
|
||||
"active": true,
|
||||
"alertingProfile": "{{.alertingProfile}}",
|
||||
"headers": [],
|
||||
"name": "{{.name}}",
|
||||
"notifyEventMergesEnabled": false,
|
||||
"payload": "{\n\"title\":\"{ProblemTitle}\",\n\"text\":\"{ProblemDetailsHTML}\",\n\"themeColor\":\"EA4300\"\n}",
|
||||
"type": "WEBHOOK",
|
||||
"url": "{{.webhook}}"
|
||||
}
|
||||
|
|
@ -0,0 +1,102 @@
|
|||
config:
|
||||
- CDnewComponentTag: msTeams.json
|
||||
- CDnewComponentTagITSM: itsm.json
|
||||
|
||||
# Notification System for EMEA/NA/CN Prod msTeams
|
||||
CDnewComponentTag.EMEA-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation PROD
|
||||
- alertingProfile: CD_IISC-RR-Restaurant-Reservation/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag.NA-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation PROD
|
||||
- alertingProfile: CD_IISC-RR-Restaurant-Reservation/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag.CN-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation PROD
|
||||
- alertingProfile: CD_IISC-RR-Restaurant-Reservation/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
|
||||
# Notification System for EMEA/NA/CN PreProd msTeams
|
||||
CDnewComponentTag.EMEA-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation INT
|
||||
- alertingProfile: CD_IISC-RR-Restaurant-Reservation/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag.NA-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation INT
|
||||
- alertingProfile: CD_IISC-RR-Restaurant-Reservation/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag.CN-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation INT
|
||||
- alertingProfile: CD_IISC-RR-Restaurant-Reservation/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://empty
|
||||
- skipDeployment: "true"
|
||||
|
||||
|
||||
# Notification System for EMEA/NA/CN Prod ITSM
|
||||
CDnewComponentTagITSM.EMEA-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation ITSM PROD
|
||||
- alertingProfile: CD_IISC-RR-Restaurant-Reservation/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
CDnewComponentTagITSM.NA-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation ITSM PROD
|
||||
- alertingProfile: CD_IISC-RR-Restaurant-Reservation/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
|
||||
CDnewComponentTagITSM.CN-Prod:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation ITSM PROD
|
||||
- alertingProfile: CD_IISC-RR-Restaurant-Reservation/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
CDnewComponentTagITSM.EMEA-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation ITSM INT
|
||||
- alertingProfile: CD_IISC-RR-Restaurant-Reservation/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
CDnewComponentTagITSM.NA-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation ITSM INT
|
||||
- alertingProfile: CD_IISC-RR-Restaurant-Reservation/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
|
||||
CDnewComponentTagITSM.CN-PreProd:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation ITSM INT
|
||||
- alertingProfile: CD_IISC-RR-Restaurant-Reservation/alerting-profile/CDnewComponentTag.id
|
||||
- webhook: https://apim-beta-prod.bmwgroup.com/evtmgmt/eventproxy/v1
|
||||
- contractid: "10APP11906401"
|
||||
- appdid: "TEST123"
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- DTEnvironment: https://xxu26128.live.dynatrace.com
|
||||
- skipDeployment: "true"
|
||||
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure synthetics?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Synthetic+Monitors) page to configure your synthetics.
|
||||
|
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"anomalyDetection": {
|
||||
"loadingTimeThresholds": {
|
||||
"enabled": false,
|
||||
"thresholds": [
|
||||
{
|
||||
"type": "TOTAL",
|
||||
"valueMs": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"outageHandling": {
|
||||
"globalOutage": true,
|
||||
"localOutage": false,
|
||||
"localOutagePolicy": {
|
||||
"affectedLocations": 1,
|
||||
"consecutiveRuns": 3
|
||||
}
|
||||
}
|
||||
},
|
||||
"automaticallyAssignedApps": [],
|
||||
"enabled": true,
|
||||
"frequencyMin": 1,
|
||||
"locations": [
|
||||
"{{.location}}"
|
||||
],
|
||||
"managementZones": [
|
||||
{
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
],
|
||||
"manuallyAssignedApps": [],
|
||||
"name": "{{.name}}",
|
||||
"requests": [
|
||||
{
|
||||
"entityId": "HTTP_CHECK_STEP-0BA53EC80CD7EE5A",
|
||||
"name": "{{.name}}",
|
||||
"sequenceNumber": 1
|
||||
}
|
||||
],
|
||||
"script": {
|
||||
"requests": [
|
||||
{
|
||||
"configuration": {
|
||||
"acceptAnyCertificate": true,
|
||||
"followRedirects": true,
|
||||
"requestHeaders": [
|
||||
{
|
||||
"name": "accept",
|
||||
"value": "application/json"
|
||||
},
|
||||
{
|
||||
"name": "Content-Type",
|
||||
"value": "application/json"
|
||||
},
|
||||
{
|
||||
"name": "api_key",
|
||||
"value": "355DE89C-7B72-4EA3-BDD8-157C79EB2C23"
|
||||
}
|
||||
]
|
||||
},
|
||||
"description": "{{.name}}",
|
||||
"method": "GET",
|
||||
"url": "{{.endpoint}}",
|
||||
"validation": {
|
||||
"rules": [
|
||||
{
|
||||
"passIfFound": true,
|
||||
"type": "httpStatusesList",
|
||||
"value": "200"
|
||||
}
|
||||
],
|
||||
"rulesChaining": "or"
|
||||
}
|
||||
}
|
||||
],
|
||||
"version": "1.0"
|
||||
},
|
||||
"tags": [],
|
||||
"type": "HTTP"
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
config:
|
||||
- newComponentTag: default.json
|
||||
|
||||
newComponentTag:
|
||||
- name: CD_IISC-RR-Restaurant-Reservation - <synthetic-name>
|
||||
- mzName: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_IISC-RR-Restaurant-Reservation/management-zone/CDnewComponentTag.id
|
||||
- endpoint: <url>
|
||||
- location: <location>
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -17,18 +17,21 @@ CDnewComponentTag-PROD.EMEA-Prod:
|
|||
- mzName: CD_VDLM/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_VDLM/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- KAI_SLO_id: 8c4a0631-7483-3a09-88d8-732e3f1a3dfd
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-PROD.NA-Prod:
|
||||
- name: CD_VDLM PROD
|
||||
- mzName: CD_VDLM/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_VDLM/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- KAI_SLO_id: 34aef7fa-be33-3640-b33a-8046a1c1951d
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-PROD.CN-Prod:
|
||||
- name: CD_VDLM PROD
|
||||
- mzName: CD_VDLM/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_VDLM/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- KAI_SLO_id: 0bfa79a5-a19e-34fd-9dce-5d474b2b9997
|
||||
- skipDeployment: "false"
|
||||
|
||||
#E2E dashboards for EMEA/NA/CN Prod
|
||||
|
|
@ -43,18 +46,21 @@ CDnewComponentTag-E2E.EMEA-Prod:
|
|||
- mzName: CD_VDLM/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_VDLM/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- KAI_SLO_id: 8c4a0631-7483-3a09-88d8-732e3f1a3dfd
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-E2E.NA-Prod:
|
||||
- name: CD_VDLM E2E
|
||||
- mzName: CD_VDLM/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_VDLM/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- KAI_SLO_id: 34aef7fa-be33-3640-b33a-8046a1c1951d
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-E2E.CN-Prod:
|
||||
- name: CD_VDLM E2E
|
||||
- mzName: CD_VDLM/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_VDLM/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- KAI_SLO_id: 0bfa79a5-a19e-34fd-9dce-5d474b2b9997
|
||||
- skipDeployment: "false"
|
||||
|
||||
#INT dashboards for EMEA/NA/CN PreProd
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
"tags": [
|
||||
"{{.mzName}}"
|
||||
],
|
||||
"preset": true,
|
||||
"popularity": 1,
|
||||
"hasConsistentColors": false
|
||||
},
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"entitySelectorBasedRules": [
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(Service),tag({{.compassIDs}}),not(entityName.contains(\"HealthResource\")),not(entityName.contains(\"PingResource\")),not(entityName.contains(\"PrometheusResource\"))"
|
||||
"entitySelector": "type(SERVICE),tag({{.compassIDs}}),not(entityName.contains(\"HealthResource\")),not(entityName.contains(\"PingResource\")),not(entityName.contains(\"StatusResource\")),not(entityName.contains(\"PrometheusResource\"))"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
"dashboardMetadata": {
|
||||
"name": "{{.name}}",
|
||||
"shared": true,
|
||||
"owner": "Ignacio.Goldman@partner.bmwgroup.com",
|
||||
"owner": "katharina.kiechle@bmw.de",
|
||||
"dashboardFilter": {
|
||||
"timeframe": "-24h to now"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -0,0 +1,37 @@
|
|||
config:
|
||||
- CDnewComponentTag: default.json
|
||||
|
||||
|
||||
#Prod alerting profiles for EMEA/NA/CN
|
||||
CDnewComponentTag.EMEA-Prod:
|
||||
- name: CD_managementZone PROD
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.NA-Prod:
|
||||
- name: CD_managementZone PROD
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.CN-Prod:
|
||||
- name: CD_managementZone PROD
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
|
||||
#INT alerting profiles for EMEA/NA/CN
|
||||
CDnewComponentTag.EMEA-PreProd:
|
||||
- name: CD_managementZone INT
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.NA-PreProd:
|
||||
- name: CD_managementZone INT
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag.CN-PreProd:
|
||||
- name: CD_managementZone INT
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
|
|
@ -0,0 +1,78 @@
|
|||
{
|
||||
"displayName": "{{.name}}",
|
||||
"eventTypeFilters": [],
|
||||
"managementZoneId": "{{.mzId}}",
|
||||
"mzId": "{{.mzId}}",
|
||||
"rules": [
|
||||
{
|
||||
"delayInMinutes": 0,
|
||||
"severityLevel": "AVAILABILITY",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 10,
|
||||
"severityLevel": "ERROR",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 30,
|
||||
"severityLevel": "PERFORMANCE",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 30,
|
||||
"severityLevel": "RESOURCE_CONTENTION",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"delayInMinutes": 10,
|
||||
"severityLevel": "CUSTOM_ALERT",
|
||||
"tagFilter": {
|
||||
"includeMode": "INCLUDE_ALL",
|
||||
"tagFilters": [
|
||||
{
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Environment",
|
||||
"value": "{{.env}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure custom metrics?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Calculated+Metrics) page to configure your custom metrics.
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure process groups?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Process+Group+Naming) page to configure your process groups.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
config:
|
||||
- CDnewComponentTag: template.json
|
||||
|
||||
CDnewComponentTag:
|
||||
- name: MyProcessNamingRule
|
||||
- nameFormat: "{ProcessGroup:KubernetesNamespace/regex-example}"
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"displayName": "{{.name}}",
|
||||
"enabled": true,
|
||||
"metadata": {
|
||||
"clusterVersion": "1.214.107.20210407-223952",
|
||||
"configurationVersions": [
|
||||
0
|
||||
]
|
||||
},
|
||||
"nameFormat": "{{.nameFormat}}",
|
||||
"rules": [
|
||||
{
|
||||
"comparisonInfo": {
|
||||
"negate": false,
|
||||
"operator": "EQUALS",
|
||||
"type": "TAG",
|
||||
"value": {
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Component",
|
||||
"value": "{{.tag}}"
|
||||
}
|
||||
},
|
||||
"key": {
|
||||
"attribute": "PROCESS_GROUP_TAGS"
|
||||
}
|
||||
}
|
||||
],
|
||||
"type": "PROCESS_GROUP"
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure service naming
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Service+Naming) page to configure your service naming.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
config:
|
||||
- CDnewComponentTag: template.json
|
||||
|
||||
CDnewComponentTag:
|
||||
- name: MyProcessNamingRule
|
||||
- nameFormat: "{ProcessGroup:KubernetesNamespace/regex-example}"
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"displayName": "{{.name}}",
|
||||
"enabled": true,
|
||||
"metadata": {
|
||||
"clusterVersion": "1.214.107.20210407-223952",
|
||||
"configurationVersions": [
|
||||
0
|
||||
]
|
||||
},
|
||||
"nameFormat": "{{.nameFormat}}",
|
||||
"rules": [
|
||||
{
|
||||
"comparisonInfo": {
|
||||
"negate": false,
|
||||
"operator": "EQUALS",
|
||||
"type": "TAG",
|
||||
"value": {
|
||||
"context": "CONTEXTLESS",
|
||||
"key": "Component",
|
||||
"value": "{{.tag}}"
|
||||
}
|
||||
},
|
||||
"key": {
|
||||
"attribute": "SERVICE_TAGS"
|
||||
}
|
||||
}
|
||||
],
|
||||
"type": "SERVICE"
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure custom services?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Custom+Services) page to configure your custom services.
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
config:
|
||||
- customService1: template-1-1.json
|
||||
|
||||
customService1:
|
||||
- name: myJOYNRService
|
||||
- className: com.bmw.cc.conn.this.is.just.an.exampleClasss
|
||||
- methodName: exampleJoynrMethod
|
||||
- methodArgs: java.lang.Byte[],java.lang.String
|
||||
- returnType: void
|
||||
- skipDeployment: "true"
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"enabled": true,
|
||||
"name": "{{.name}}",
|
||||
"processGroups": [],
|
||||
"queueEntryPoint": false,
|
||||
"queueEntryPointType": null,
|
||||
"rules": [
|
||||
{
|
||||
"annotations": [],
|
||||
"className": "{{.className}}",
|
||||
"enabled": true,
|
||||
"fileName": "",
|
||||
"matcher": "EQUALS",
|
||||
"methodRules": [
|
||||
{
|
||||
"argumentTypes": ["{{.methodArgs}}"],
|
||||
"methodName": "{{.methodName}}",
|
||||
"returnType": "{{.returnType}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure dashboards?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Dashboards) page to configure your dashboards.
|
||||
|
|
@ -0,0 +1,109 @@
|
|||
config:
|
||||
- CDnewComponentTag-PROD: default.json
|
||||
- CDnewComponentTag-E2E: default.json
|
||||
- CDnewComponentTag-INT: default.json
|
||||
- CDnewComponentTag-TEST: default.json
|
||||
|
||||
#PROD dashboards for EMEA/NA/CN Prod
|
||||
CDnewComponentTag-PROD:
|
||||
- name: CD_managementZone PROD
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-PROD.EMEA-Prod:
|
||||
- name: CD_managementZone PROD
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-PROD.NA-Prod:
|
||||
- name: CD_managementZone PROD
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-PROD.CN-Prod:
|
||||
- name: CD_managementZone PROD
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: PROD
|
||||
- skipDeployment: "false"
|
||||
|
||||
#E2E dashboards for EMEA/NA/CN Prod
|
||||
CDnewComponentTag-E2E:
|
||||
- name: CD_managementZone E2E
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-E2E.EMEA-Prod:
|
||||
- name: CD_managementZone E2E
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-E2E.NA-Prod:
|
||||
- name: CD_managementZone E2E
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-E2E.CN-Prod:
|
||||
- name: CD_managementZone E2E
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: E2E
|
||||
- skipDeployment: "false"
|
||||
|
||||
#INT dashboards for EMEA/NA/CN PreProd
|
||||
CDnewComponentTag-INT:
|
||||
- name: CD_managementZone INT
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-INT.EMEA-PreProd:
|
||||
- name: CD_managementZone INT
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-INT.NA-PreProd:
|
||||
- name: CD_managementZone INT
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-INT.CN-PreProd:
|
||||
- name: CD_managementZone INT
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: INT
|
||||
- skipDeployment: "false"
|
||||
|
||||
#TEST dashboards for EMEA/NA/CN PreProd
|
||||
CDnewComponentTag-TEST:
|
||||
- name: CD_managementZone TEST
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "true"
|
||||
CDnewComponentTag-TEST.EMEA-PreProd:
|
||||
- name: CD_managementZone TEST
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-TEST.NA-PreProd:
|
||||
- name: CD_managementZone TEST
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "false"
|
||||
CDnewComponentTag-TEST.CN-PreProd:
|
||||
- name: CD_managementZone TEST
|
||||
- mzName: CD_managementZone/management-zone/CDnewComponentTag.name
|
||||
- mzId: CD_managementZone/management-zone/CDnewComponentTag.id
|
||||
- env: TEST
|
||||
- skipDeployment: "false"
|
||||
|
|
@ -0,0 +1,334 @@
|
|||
{
|
||||
"metadata": {
|
||||
"configurationVersions": [
|
||||
3
|
||||
],
|
||||
"clusterVersion": "1.214.107.20210407-223952"
|
||||
},
|
||||
"dashboardMetadata": {
|
||||
"name": "{{.name}}",
|
||||
"shared": true,
|
||||
"owner": "Ignacio.Goldman@partner.bmwgroup.com",
|
||||
"dashboardFilter": {
|
||||
"timeframe": "-24h to now"
|
||||
},
|
||||
"tags": [
|
||||
"{{.mzName}}"
|
||||
],
|
||||
"preset": true
|
||||
},
|
||||
"tiles": [
|
||||
{
|
||||
"name": "Custom chart",
|
||||
"tileType": "CUSTOM_CHARTING",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 228,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 304
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"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": 1617956393463,
|
||||
"customColor": "#ff0000"
|
||||
},
|
||||
"nullbuiltin:service.errors.fourxx.rate|AVG|TOTAL|BAR|SERVICE": {
|
||||
"lastModified": 1617956441725,
|
||||
"customColor": "#fff29a"
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtersPerEntityType": {
|
||||
"SERVICE": {
|
||||
"AUTO_TAGS": [
|
||||
"Environment:{{.env}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Problems",
|
||||
"tileType": "OPEN_PROBLEMS",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 38,
|
||||
"left": 950,
|
||||
"width": 152,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Overall Health",
|
||||
"tileType": "HEADER",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 0,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 38
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markdown",
|
||||
"tileType": "MARKDOWN",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 532,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 38
|
||||
},
|
||||
"tileFilter": {},
|
||||
"markdown": "---\n"
|
||||
},
|
||||
{
|
||||
"name": "Custom chart",
|
||||
"tileType": "CUSTOM_CHARTING",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 570,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 304
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"filterConfig": {
|
||||
"type": "MIXED",
|
||||
"customName": "Response time, Request Count 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": "Markdown",
|
||||
"tileType": "MARKDOWN",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 190,
|
||||
"left": 38,
|
||||
"width": 1064,
|
||||
"height": 38
|
||||
},
|
||||
"tileFilter": {},
|
||||
"markdown": "---\n"
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"tileType": "DATABASES_OVERVIEW",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 38,
|
||||
"left": 646,
|
||||
"width": 190,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"filterConfig": {
|
||||
"type": "DATABASE",
|
||||
"customName": "Databases",
|
||||
"defaultName": "Databases",
|
||||
"chartConfig": {
|
||||
"legendShown": true,
|
||||
"type": "TIMESERIES",
|
||||
"series": [],
|
||||
"resultMetadata": {}
|
||||
},
|
||||
"filtersPerEntityType": {
|
||||
"DATABASE": {
|
||||
"AUTO_TAGS": [
|
||||
"Environment:{{.env}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"chartVisible": true
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"tileType": "SERVICES",
|
||||
"configured": true,
|
||||
"bounds": {
|
||||
"top": 38,
|
||||
"left": 342,
|
||||
"width": 190,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"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": 38,
|
||||
"left": 38,
|
||||
"width": 190,
|
||||
"height": 152
|
||||
},
|
||||
"tileFilter": {
|
||||
"managementZone": {
|
||||
"id": "{{.mzId}}",
|
||||
"name": "{{.mzName}}"
|
||||
}
|
||||
},
|
||||
"filterConfig": {
|
||||
"type": "HOST",
|
||||
"customName": "Hosts",
|
||||
"defaultName": "Hosts",
|
||||
"chartConfig": {
|
||||
"legendShown": true,
|
||||
"type": "TIMESERIES",
|
||||
"series": [],
|
||||
"resultMetadata": {}
|
||||
},
|
||||
"filtersPerEntityType": {
|
||||
"HOST": {
|
||||
"AUTO_TAGS": [
|
||||
"Environment:{{.env}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"chartVisible": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
### How to configure management zones?
|
||||
|
||||
Please refer to [this](https://atc.bmwgroup.net/confluence/display/OPMAAS/Documentation+%7C+Management+Zones) page to configure your management zones.
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"dimensionalRules": [],
|
||||
"name": "{{.name}}",
|
||||
"entitySelectorBasedRules": [
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(Service),tag({{.compassIDs}})"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(SERVICE),databaseName.exists(),toRelationship.calls(type(SERVICE),tag({{.compassIDs}}))"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(PROCESS_GROUP_INSTANCE),tag({{.compassIDs}})"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"entitySelector": "type(HOST),tag({{.compassIDs}})"
|
||||
}
|
||||
],
|
||||
"rules": []
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
config:
|
||||
- CDnewComponentTag: default.json
|
||||
|
||||
CDnewComponentTag:
|
||||
- name: CD_managementZone
|
||||
- compassIDs: newCompassIds
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue