Merge R3 into master
[it/dep.git] / ric-aux / helm / ves / resources / collector.properties
1 ###############################################################################
2 ##
3 ## Collector Server config
4 ##
5 ##      - Default values are shown as commented settings.
6 ##      - Will injected as configmap to /opt/app/VESCollector/etc/collector.properties
7 ##
8 ###############################################################################
9 ##
10 ## HTTP(S) service
11 ##
12 ##      Normally:
13 ##
14 ##              - 8080 is http service
15 ##              - https is disabled by default
16 ##
17 ##              - At this time, the server always binds to 0.0.0.0
18 ##
19 ##
20 collector.service.port=8080
21
22 ## Authentication is only supported via secure port
23 ## When enabled - require valid keystore defined
24 collector.service.secure.port=8443
25
26 # auth.method flags:
27 #
28 # noAuth - default option - no security (http)
29 # certOnly - auth by certificate (https)
30 # basicAuth - auth by basic auth username and password (https)
31 # certBasicAuth - auth by certificate and basic auth username / password (https)
32 auth.method=noAuth
33
34 ## Combination of userid,hashPassword encoded pwd list to be supported
35 ## userid and pwd comma separated; pipe delimitation between each pair
36 ## Password is generated by crypt-password library using BCrypt algorithm stored in dcaegen2/sdk package
37 ## or https://nexus.onap.org/#nexus-search;quick~crypt-password
38 header.authlist=sample1,$2a$10$0buh.2WeYwN868YMwnNNEuNEAMNYVU9.FSMJGyIKV3dGET/7oGOi6
39
40 ## The keystore must be setup per installation when secure port is configured
41 collector.keystore.file.location=etc/keystore
42 collector.keystore.passwordfile=etc/passwordfile
43
44 collector.cert.subject.matcher=etc/certSubjectMatcher.properties
45
46 ## The truststore must be setup per installation when mutual tls support is configured
47 collector.truststore.file.location=etc/truststore
48 collector.truststore.passwordfile=etc/trustpasswordfile
49
50 ## Processing
51 ##
52 ## If there's a problem that prevents the collector from processing alarms,
53 ## it's normally better to apply back pressure to the caller than to try to
54 ## buffer beyond a reasonable size limit. With a limit, the server won't crash
55 ## due to being out of memory, and the caller will get a 5xx reply saying the
56 ## server is in trouble.
57 collector.inputQueue.maxPending=8096
58
59 ## Schema Validation checkflag
60 ## default no validation checkflag (-1)
61 ## If enabled (1) - schemafile location must be specified
62 collector.schema.checkflag=1
63 collector.schema.file={\"v1\":\"./etc/CommonEventFormat_27.2.json\",\"v2\":\"./etc/CommonEventFormat_27.2.json\",\"v3\":\"./etc/CommonEventFormat_27.2.json\",\"v4\":\"./etc/CommonEventFormat_27.2.json\",\"v5\":\"./etc/CommonEventFormat_28.4.1.json\",\"v7\":\"./etc/CommonEventFormat_30.0.1.json\"}
64
65 ## List all streamid per domain to be supported. The streamid should match to channel name on dmaapfile  
66 collector.dmaap.streamid=fault=ves-fault|syslog=ves-syslog|heartbeat=ves-heartbeat|measurementsForVfScaling=ves-measurement|mobileFlow=ves-mobileflow|other=ves-other|stateChange=ves-statechange|thresholdCrossingAlert=ves-thresholdCrossingAlert|voiceQuality=ves-voicequality|sipSignaling=ves-sipsignaling|notification=ves-notification|pnfRegistration=ves-pnfRegistration|measurement=ves-measurement
67 collector.dmaapfile=./etc/DmaapConfig.json
68
69 ## Event transformation Flag - when set expects configurable transformation
70 ## defined under ./etc/eventTransform.json
71 ## Enabled by default; to disable set to 0
72 event.transform.flag=0
73
74 # Describes at what frequency (measured in minutes) should application try to fetch config from CBS
75 collector.dynamic.config.update.frequency=5
76
77