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
|
|
@ -3,5 +3,6 @@ config:
|
|||
|
||||
CDnewComponentTag:
|
||||
- name: MyProcessNamingRule
|
||||
- nameFormat: "{ProcessGroup:KubernetesNamespace/regex-example}"
|
||||
- skipDeployment: "true"
|
||||
- nameFormat: "{ProcessGroup:Kubernetes:app-name} - {Service:DetectedName} - {ProcessGroup:KubernetesNamespace}"
|
||||
- skipDeployment: "false"
|
||||
- tag: "vdlm"
|
||||
|
|
@ -1,9 +1,30 @@
|
|||
config:
|
||||
- customService1: template-1-1.json
|
||||
- customService1: template-1-2.json
|
||||
- customService2: template-2-1.json
|
||||
- customService3: template-1-1.json
|
||||
|
||||
customService1:
|
||||
- name: vdlm-ts-asc-ifs-001-SQSAscIn
|
||||
- className: com.bmw.cc.asc.bm.boundary.TeleXBF
|
||||
- methodName: handleTeleXMessage
|
||||
- name: VDLM_ts-asc - (Timer) deletion/timeout
|
||||
- className: com.bmw.cc.asc.bm.boundary.TimerBF
|
||||
- methodName1: executeDeletionJob
|
||||
- returnType1: void
|
||||
- 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:
|
||||
- name: CD_VDLM_ts-asc
|
||||
- compassIDs: \"ts-asc\"
|
||||
- compassIDs: ts-asc
|
||||
|
|
|
|||
Loading…
Reference in New Issue