Pull request #61: vps configuration changes

Merge in OPAPM/cd_e2e_monitoring_config from CD_vps to master

* commit '0ce7abefb484382f4f9debb9ca11443ab3e8dbc0':
  vps configuration changes
CD_MSGSVC
Ermis Wieger (ext.) 2021-09-22 16:46:13 +02:00
commit 6e07176b5a
4 changed files with 73 additions and 0 deletions

View File

@ -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.

View File

@ -0,0 +1,13 @@
config:
- customService1: template-1-3.json
customService1:
- name: VpsJoynrApi
- className: com.bmw.cc.conn.vps.joynr.provider.control.ProvisioningVehicleProvider
- methodName: sendVehicleDataForProvisioningComUnit
- returnType: void
- methodName2: sendVehicleDataForProvisioningHeadUnit
- returnType2: void
- methodName3: sendVehicleProvisioningResult
- returnType3: void
- skipDeployment: "false"

View File

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

View File

@ -0,0 +1,33 @@
{
"enabled": true,
"name": "{{.name}}",
"processGroups": [],
"queueEntryPoint": false,
"queueEntryPointType": null,
"rules": [
{
"annotations": [],
"className": "{{.className}}",
"enabled": true,
"fileName": "",
"matcher": "EQUALS",
"methodRules": [
{
"argumentTypes": [],
"methodName": "{{.methodName}}",
"returnType": "{{.returnType}}"
},
{
"argumentTypes": [],
"methodName": "{{.methodName2}}",
"returnType": "{{.returnType2}}"
},
{
"argumentTypes": [],
"methodName": "{{.methodName3}}",
"returnType": "{{.returnType3}}"
}
]
}
]
}