Pull request #195: [TR] fix management-zone
Merge in OPAPM/cd_e2e_monitoring_config from CD_VDLM_ts-asc to master * commit '93cc059a24837aa764f1b909d8faf1984752aea5': added experimental $Proxy$_$$_Weld$EnterpriseProxy$ fixed method name additional custom services + conditional-naming-service [TR] fix management-zoneCD_vs-cmdb
commit
7d3b8ff3c8
|
|
@ -2,6 +2,7 @@ config:
|
||||||
- CDnewComponentTag: template.json
|
- CDnewComponentTag: template.json
|
||||||
|
|
||||||
CDnewComponentTag:
|
CDnewComponentTag:
|
||||||
- name: MyProcessNamingRule
|
- name: MyProcessNamingRule
|
||||||
- nameFormat: "{ProcessGroup:KubernetesNamespace/regex-example}"
|
- nameFormat: "{ProcessGroup:Kubernetes:app-name} - {Service:DetectedName} - {ProcessGroup:KubernetesNamespace}"
|
||||||
- skipDeployment: "true"
|
- skipDeployment: "false"
|
||||||
|
- tag: "vdlm"
|
||||||
|
|
@ -1,9 +1,30 @@
|
||||||
config:
|
config:
|
||||||
- customService1: template-1-1.json
|
- customService1: template-1-2.json
|
||||||
|
- customService2: template-2-1.json
|
||||||
|
- customService3: template-1-1.json
|
||||||
|
|
||||||
customService1:
|
customService1:
|
||||||
- name: vdlm-ts-asc-ifs-001-SQSAscIn
|
- name: VDLM_ts-asc - (Timer) deletion/timeout
|
||||||
- className: com.bmw.cc.asc.bm.boundary.TeleXBF
|
- className: com.bmw.cc.asc.bm.boundary.TimerBF
|
||||||
- methodName: handleTeleXMessage
|
- methodName1: executeDeletionJob
|
||||||
- returnType: void
|
- returnType1: void
|
||||||
- skipDeployment: "false"
|
- methodName2: executeTimeoutJob
|
||||||
|
- returnType2: void
|
||||||
|
- skipDeployment: "false"
|
||||||
|
|
||||||
|
customService2:
|
||||||
|
- name: VDLM_ts-asc - ifs-001 (SQS) AscIn/AscOut - IN/OUT
|
||||||
|
- className1: com.bmw.cc.asc.bm.boundary.TeleXBF
|
||||||
|
- methodName1: handleTeleXMessage
|
||||||
|
- returnType1: void
|
||||||
|
- className2: com.bmw.cc.asc.integration.sqs.boundary.TeleXSqsESI$Proxy$_$$_Weld$EnterpriseProxy$
|
||||||
|
- methodName2: send
|
||||||
|
- returnType2: void
|
||||||
|
- skipDeployment: "false"
|
||||||
|
|
||||||
|
customService3:
|
||||||
|
- name: VDLM_ts-asc - (MQS) CallTopic - OUT
|
||||||
|
- className: com.bmw.cc.asc.integration.jms.boundry.CallTopicJmsESI$Proxy$_$$_Weld$EnterpriseProxy$
|
||||||
|
- methodName: send
|
||||||
|
- returnType: void
|
||||||
|
- skipDeployment: "false"
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"enabled": true,
|
||||||
|
"name": "{{.name}}",
|
||||||
|
"processGroups": [],
|
||||||
|
"queueEntryPoint": false,
|
||||||
|
"queueEntryPointType": null,
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"annotations": [],
|
||||||
|
"className": "{{.className}}",
|
||||||
|
"enabled": true,
|
||||||
|
"fileName": "",
|
||||||
|
"matcher": "EQUALS",
|
||||||
|
"methodRules": [
|
||||||
|
{
|
||||||
|
"argumentTypes": [],
|
||||||
|
"methodName": "{{.methodName1}}",
|
||||||
|
"returnType": "{{.returnType1}}"
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"annotations": [],
|
||||||
|
"className": "{{.className}}",
|
||||||
|
"enabled": true,
|
||||||
|
"fileName": "",
|
||||||
|
"matcher": "EQUALS",
|
||||||
|
"methodRules": [
|
||||||
|
{
|
||||||
|
"argumentTypes": [],
|
||||||
|
"methodName": "{{.methodName2}}",
|
||||||
|
"returnType": "{{.returnType2}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"enabled": true,
|
||||||
|
"name": "{{.name}}",
|
||||||
|
"processGroups": [],
|
||||||
|
"queueEntryPoint": false,
|
||||||
|
"queueEntryPointType": null,
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"annotations": [],
|
||||||
|
"className": "{{.className1}}",
|
||||||
|
"enabled": true,
|
||||||
|
"fileName": "",
|
||||||
|
"matcher": "EQUALS",
|
||||||
|
"methodRules": [
|
||||||
|
{
|
||||||
|
"argumentTypes": [],
|
||||||
|
"methodName": "{{.methodName1}}",
|
||||||
|
"returnType": "{{.returnType1}}"
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"annotations": [],
|
||||||
|
"className": "{{.className2}}",
|
||||||
|
"enabled": true,
|
||||||
|
"fileName": "",
|
||||||
|
"matcher": "EQUALS",
|
||||||
|
"methodRules": [
|
||||||
|
{
|
||||||
|
"argumentTypes": [],
|
||||||
|
"methodName": "{{.methodName2}}",
|
||||||
|
"returnType": "{{.returnType2}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -3,4 +3,4 @@ config:
|
||||||
|
|
||||||
CDnewComponentTag:
|
CDnewComponentTag:
|
||||||
- name: CD_VDLM_ts-asc
|
- name: CD_VDLM_ts-asc
|
||||||
- compassIDs: \"ts-asc\"
|
- compassIDs: ts-asc
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue