blob: 9092adae31aec3179b9c7e46b551539a7480c761 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
spring:
profiles:
active: production
server:
port: 8100
configs:
dmaap:
consumer:
re-registration:
dmaapHostName: localhost
dmaapPortNumber: 2222
dmaapTopicName: /events/unauthenticated.PNF_Update
dmaapProtocol: http
dmaapContentType: application/json
consumerId: c12
consumerGroup: OpenDcae-c12
timeoutMs: -1
messageLimit: 1
cpe-authentication:
dmaapHostName: localhost
dmaapPortNumber: 2222
dmaapTopicName: /events/unauthenticated.CPE_Authentication
dmaapProtocol: http
dmaapContentType: application/json
consumerId: c12
consumerGroup: OpenDcae-c12
timeoutMs: -1
messageLimit: 1
producer:
dmaapHostName: localhost
dmaapPortNumber: 2223
dmaapTopicName: /events/unauthenticated.DCAE_CL_OUTPUT
dmaapProtocol: http
dmaapContentType: application/json
aai:
client:
aaiHost: localhost
aaiPort: 8080
aaiProtocol: https
aaiUserName: AAI
aaiUserPassword: AAI
aaiIgnoreSslCertificateErrors: true
aaiHeaders:
X-FromAppId: bbs
X-TransactionId: 9999
Accept: application/json
Real-Time: true
Content-Type: application/json
security:
trustStorePath: change it
trustStorePasswordPath: change it
keyStorePath: change it
keyStorePasswordPath: change it
enableAaiCertAuth: false
enableDmaapCertAuth: false
application:
pipelinesPollingIntervalSec: 30
pipelinesTimeoutSec: 15
policyVersion: 1.0.0.5
clTargetType: VM
clEventStatus: ONSET
clVersion: 1.0.2
clTarget: vserver.vserver-name
clOriginator: DCAE-bbs-event-processor
re-registration:
policyScope: policyScope
clControlName: controlName
cpe-authentication:
policyScope: policyScope
clControlName: controlName
logging:
level:
ROOT: ERROR
org.onap.bbs: INFO
org.onap.dcaegen2: WARN
reactor.ipc.netty.http.client: WARN
org.springframework: ERROR
org.springframework.data: ERROR
org.springframework.web.reactive: WARN
|