Pull request #209: [TR] seam custom services SQS+Kinesis

Merge in OPAPM/cd_e2e_monitoring_config from CD_VDLM_seam to master

* commit '5c25168c00e62fd81b02f092d09b3d693c345bf4':
  fixed classname
  [TR] seam custom services SQS+Kinesis
CD_IISC-TMPP-MF-Manifest
Bernd Brandl (DE-722) 2022-05-11 09:10:19 +02:00 committed by Arnel Arnautovic (ext.)
commit aa400e75da
6 changed files with 186 additions and 5 deletions

View File

@ -1,9 +1,43 @@
config: config:
- customService1: template-1-1.json - customService1: template-1-1a.json
- customService2: template-1-1b.json
- customService3: template-1-1c.json
- customService4: template-1-1d.json
- customService5: template-1-2e.json
customService1: customService1:
- name: myJOYNRService - name: "VDLM_seam - ifs-004 (SQS) ServiceDemand - IN"
- className: com.bmw.cc.conn.this.is.just.an.exampleClasss - className: com.bmw.cc.seam.api.servicedemandevent.v1.boundary.ServiceDemandEventMDB
- methodName: exampleJoynrMethod - methodName: listen
- returnType: void - returnType: void
- skipDeployment: "true" - skipDeployment: "false"
customService2:
- name: "VDLM_seam - ifs-005 (SQS) ServiceAppointment - IN"
- className: com.bmw.cc.seam.api.appointment.v1.boundary.AppointmentListenerMDB
- methodName: listen
- returnType: void
- skipDeployment: "false"
customService3:
- name: "VDLM_seam - ifs-003 (SQS) ServiceNotificationFeedback - IN"
- className: com.bmw.cc.seam.api.notificationfeedback.v1.boundary.ServiceNotificationFeedbackListenerMDB
- methodName: listen
- returnType: void
- skipDeployment: "false"
customService4:
- name: "VDLM_seam - ifs (SQS) ServiceNotification - OUT"
- className: com.bmw.cc.seam.integration.notificationservice.boundary.ServiceNotificationESI
- methodName: send
- returnType: void
- skipDeployment: "false"
customService5:
- name: "VDLM_seam - cdh: ifs-001 (Kinesis) Reporting - OUT"
- className: com.bmw.cc.seam.integration.datalake.boundary.DataLakeESI
- methodName1: sendAsync
- returnType1: void
- methodName2: sendSync
- returnType2: void
- skipDeployment: "false"

View File

@ -0,0 +1,27 @@
{
"enabled": true,
"name": "{{.name}}",
"processGroups": [],
"queueEntryPoint": false,
"queueEntryPointType": null,
"rules": [
{
"annotations": [],
"className": "{{.className}}",
"enabled": true,
"fileName": "",
"matcher": "EQUALS",
"methodRules": [
{
"argumentTypes": [
"java.lang.String",
"java.util.Map",
"org.springframework.cloud.aws.messaging.listener.Acknowledgment"
],
"methodName": "{{.methodName}}",
"returnType": "{{.returnType}}"
}
]
}
]
}

View File

@ -0,0 +1,26 @@
{
"enabled": true,
"name": "{{.name}}",
"processGroups": [],
"queueEntryPoint": false,
"queueEntryPointType": null,
"rules": [
{
"annotations": [],
"className": "{{.className}}",
"enabled": true,
"fileName": "",
"matcher": "EQUALS",
"methodRules": [
{
"argumentTypes": [
"java.lang.String",
"java.util.Map"
],
"methodName": "{{.methodName}}",
"returnType": "{{.returnType}}"
}
]
}
]
}

View File

@ -0,0 +1,27 @@
{
"enabled": true,
"name": "{{.name}}",
"processGroups": [],
"queueEntryPoint": false,
"queueEntryPointType": null,
"rules": [
{
"annotations": [],
"className": "{{.className}}",
"enabled": true,
"fileName": "",
"matcher": "EQUALS",
"methodRules": [
{
"argumentTypes": [
"java.lang.String",
"java.util.Map",
"org.springframework.cloud.aws.messaging.listener.Acknowledgment"
],
"methodName": "{{.methodName}}",
"returnType": "{{.returnType}}"
}
]
}
]
}

View File

@ -0,0 +1,26 @@
{
"enabled": true,
"name": "{{.name}}",
"processGroups": [],
"queueEntryPoint": false,
"queueEntryPointType": null,
"rules": [
{
"annotations": [],
"className": "{{.className}}",
"enabled": true,
"fileName": "",
"matcher": "EQUALS",
"methodRules": [
{
"argumentTypes": [
"com.bmw.cc.seam.integration.notificationservice.entity.ServiceNotification",
"java.lang.String"
],
"methodName": "{{.methodName}}",
"returnType": "{{.returnType}}"
}
]
}
]
}

View File

@ -0,0 +1,41 @@
{
"enabled": true,
"name": "{{.name}}",
"processGroups": [],
"queueEntryPoint": false,
"queueEntryPointType": null,
"rules": [
{
"annotations": [],
"className": "{{.className}}",
"enabled": true,
"fileName": "",
"matcher": "EQUALS",
"methodRules": [
{
"argumentTypes": [
"java.lang.String",
"java.lang.String"
],
"methodName": "{{.methodName1}}",
"returnType": "{{.returnType1}}"
}]
},
{
"annotations": [],
"className": "{{.className}}",
"enabled": true,
"fileName": "",
"matcher": "EQUALS",
"methodRules": [
{
"argumentTypes": [
"java.lang.String"
],
"methodName": "{{.methodName2}}",
"returnType": "{{.returnType2}}"
}
]
}
]
}