PatrikBuhr | a363dc5 | 2023-03-03 14:02:50 +0100 | [diff] [blame] | 1 | spring: |
| 2 | profiles: |
| 3 | active: prod |
| 4 | management: |
| 5 | endpoints: |
| 6 | web: |
| 7 | exposure: |
| 8 | include: "loggers,logfile,health,info,metrics" |
| 9 | server: |
| 10 | port: 8433 |
| 11 | ssl: |
| 12 | key-store-type: JKS |
| 13 | key-store-password: policy_agent |
| 14 | key-store: config/keystore.jks |
| 15 | key-password: policy_agent |
| 16 | key-alias: policy_agent |
| 17 | logging: |
| 18 | level: |
| 19 | ROOT: WARN |
| 20 | org.onap: WARN |
| 21 | org.springframework: WARN |
| 22 | org.springframework.data: WARN |
| 23 | org.springframework.web.reactive.function.client.ExchangeFunctions: WARN |
| 24 | org.onap.dcaegen2.collectors.datafile: INFO |
| 25 | |
| 26 | file: |
| 27 | name: /var/log/ONAP/application.log |
| 28 | app: |
PatrikBuhr | f080159 | 2023-03-15 14:46:05 +0100 | [diff] [blame^] | 29 | collected-files-path: "/tmp/oran_datafile/" |
PatrikBuhr | 297f5f9 | 2023-03-13 09:59:59 +0100 | [diff] [blame] | 30 | # Numer of worker threads. Increased number may increase throughput, but will require more executing resources. |
| 31 | number-of-worker-treads: 200 |
| 32 | # KAFKA boostrap servers. |
PatrikBuhr | a363dc5 | 2023-03-03 14:02:50 +0100 | [diff] [blame] | 33 | # several redundant boostrap servers can be specified, separated by a comma ','. |
| 34 | kafka: |
| 35 | bootstrap-servers: localhost:9092 |
| 36 | # output topic |
| 37 | collected-file-topic: collected-file |
| 38 | client-id: datafile-1 |
| 39 | # input topic |
| 40 | file-ready-event-topic: file-ready |
| 41 | sftp: |
| 42 | known-hosts-file-path: |
| 43 | strict-host-key-checking: false |
| 44 | ssl: |
| 45 | key-store-password-file: /opt/app/datafile/config/ftps_keystore.pass |
| 46 | key-store: /opt/app/datafile/config/ftps_keystore.p12 |
| 47 | trust-store-password-file: /opt/app/datafile/config/truststore.pass |
| 48 | trust-store: /opt/app/datafile/config/truststore.jks |
| 49 | s3: |
| 50 | endpointOverride: |
| 51 | accessKeyId: |
| 52 | secretAccessKey: |
| 53 | bucket: |
| 54 | locksBucket: |
| 55 | springdoc: |
| 56 | show-actuator: true |
| 57 | swagger-ui.disable-swagger-default-url: true |