Skip to content

Commit da0d588

Browse files
committed
added manually created properties
1 parent c4742e1 commit da0d588

2 files changed

Lines changed: 245 additions & 0 deletions

File tree

docs/src/operations/v2.1.0/bpe/configuration.md

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -635,6 +635,125 @@ icon: config
635635
- **Description:** UI theme parameter, adds a color indicator to the ui to distinguish `dev`, `test` and `prod` environments if configured; supported values: `dev`, `test` and `prod`
636636

637637

638+
### DEV_DSF_LOG_CONFIG
639+
- **Property:** dev.dsf.log.config
640+
- **Required:** No
641+
- **Description:** Location of a log4j configuration xml file; if file is readable, overrides configuration specified via *DEV_DSF_LOG_...* parameters
642+
- **Default:** `conf/log4j2.xml`
643+
644+
645+
### DEV_DSF_LOG_CONSOLE_ERR_ENABLED
646+
- **Property:** dev.dsf.log.console.err.enabled
647+
- **Required:** No
648+
- **Description:** Set to `true` to enable console err output of the standard logger
649+
- **Default:** `false`
650+
651+
652+
### DEV_DSF_LOG_CONSOLE_ERR_LEVEL
653+
- **Property:** dev.dsf.log.console.err.level
654+
- **Required:** No
655+
- **Description:** Standard logger console err output level, one of: `TRACE`, `DEBUG`, `INFO`, `WARN`, `ERROR`
656+
- **Default:** `INFO`
657+
658+
659+
### DEV_DSF_LOG_CONSOLE_ERR_STYLE
660+
- **Property:** dev.dsf.log.console.err.style
661+
- **Required:** No
662+
- **Description:** Standard logger console err output style, one of: `JSON_ECS`, `JSON_GCP`, `JSON_GELF`, `JSON_LOGSTASH`, `TEXT_MDC`, `TEXT`, `TEXT_COLOR_MDC`, `TEXT_COLOR`
663+
- **Default:** `TEXT_COLOR`
664+
665+
666+
### DEV_DSF_LOG_CONSOLE_OUT_ENABLED
667+
- **Property:** dev.dsf.log.console.out.enabled
668+
- **Required:** No
669+
- **Description:** Set to `false` to disable console out output of the standard logger
670+
- **Default:** `true`
671+
672+
673+
### DEV_DSF_LOG_CONSOLE_OUT_LEVEL
674+
- **Property:** dev.dsf.log.console.out.level
675+
- **Required:** No
676+
- **Description:** Standard logger console out output level, one of: `TRACE`, `DEBUG`, `INFO`, `WARN`, `ERROR`
677+
- **Default:** `INFO`
678+
679+
680+
### DEV_DSF_LOG_CONSOLE_OUT_STYLE
681+
- **Property:** dev.dsf.log.console.out.style
682+
- **Required:** No
683+
- **Description:** Standard logger console out output style, one of: `JSON_ECS`, `JSON_GCP`, `JSON_GELF`, `JSON_LOGSTASH`, `TEXT_MDC`, `TEXT`, `TEXT_COLOR_MDC`, `TEXT_COLOR`
684+
- **Default:** `TEXT_COLOR`
685+
686+
687+
### DEV_DSF_LOG_DATA_CONSOLE_ERR_ENABLED
688+
- **Property:** dev.dsf.log.data.console.err.enabled
689+
- **Required:** No
690+
- **Description:** Set to `true` to enable console err output of the special data logger; the data logger can be used by process plugins to log sensitive data
691+
- **Default:** `false`
692+
693+
694+
### DEV_DSF_LOG_DATA_CONSOLE_ERR_STYLE
695+
- **Property:** dev.dsf.log.data.console.err.style
696+
- **Required:** No
697+
- **Description:** Special data logger console err style, one of: `JSON_ECS`, `JSON_GCP`, `JSON_GELF`, `JSON_LOGSTASH`, `TEXT_MDC`, `TEXT`
698+
- **Default:** `TEXT`
699+
700+
701+
### DEV_DSF_LOG_DATA_CONSOLE_OUT_ENABLED
702+
- **Property:** dev.dsf.log.data.console.out.enabled
703+
- **Required:** No
704+
- **Description:** Set to `true` to enable console out output of the special data logger; the data logger can be used by process plugins to log sensitive data
705+
- **Default:** `false`
706+
707+
708+
### DEV_DSF_LOG_DATA_CONSOLE_OUT_STYLE
709+
- **Property:** dev.dsf.log.data.console.out.style
710+
- **Required:** No
711+
- **Description:** Special data logger console out style, one of: `JSON_ECS`, `JSON_GCP`, `JSON_GELF`, `JSON_LOGSTASH`, `TEXT_MDC`, `TEXT`
712+
- **Default:** `TEXT`
713+
714+
715+
### DEV_DSF_LOG_DATA_FILE_ENABLED
716+
- **Property:** dev.dsf.log.data.file.enabled
717+
- **Required:** No
718+
- **Description:** Set to `true` to enable log file output of the special data logger; the data logger can be used by process plugins to log sensitive data
719+
- **Default:** `false`
720+
721+
722+
### DEV_DSF_LOG_DATA_FILE_STYLE
723+
- **Property:** dev.dsf.log.data.file.style
724+
- **Required:** No
725+
- **Description:** Special data logger file style, one of: `JSON_ECS`, `JSON_GCP`, `JSON_GELF`, `JSON_LOGSTASH`, `TEXT_MDC`, `TEXT`
726+
- **Default:** `TEXT`
727+
728+
729+
### DEV_DSF_LOG_FILE_ENABLED
730+
- **Property:** dev.dsf.log.file.enabled
731+
- **Required:** No
732+
- **Description:** Set to `false` to disable log file output of the standard logger
733+
- **Default:** `true`
734+
735+
736+
### DEV_DSF_LOG_FILE_LEVEL
737+
- **Property:** dev.dsf.log.file.level
738+
- **Required:** No
739+
- **Description:** Standard logger log file output level, one of: `TRACE`, `DEBUG`, `INFO`, `WARN`, `ERROR`
740+
- **Default:** `DEBUG`
741+
742+
743+
### DEV_DSF_LOG_FILE_STYLE
744+
- **Property:** dev.dsf.log.file.style
745+
- **Required:** No
746+
- **Description:** Standard logger log file output style, one of: `JSON_ECS`, `JSON_GCP`, `JSON_GELF`, `JSON_LOGSTASH`, `TEXT_MDC`, `TEXT`
747+
- **Default:** `TEXT_MDC`
748+
749+
750+
### DEV_DSF_LOG_MIN_LEVEL_LOGGERS
751+
- **Property:** dev.dsf.log.min.level.loggers
752+
- **Required:** No
753+
- **Description:** List of logger names that are enabled to produce log output with the minimal configured log level from `DEV_DSF_LOG_CONSOLE_OUT_LEVEL`, `DEV_DSF_LOG_CONSOLE_ERR_LEVEL` and `DEV_DSF_LOG_FILE_LEVEL`
754+
- **Default:** `dev.dsf, de.medizininformatik_initiative.processes.common`
755+
756+
638757
### DEV_DSF_PROXY_NOPROXY
639758
- **Property:** dev.dsf.proxy.noProxy
640759
- **Required:** No

docs/src/operations/v2.1.0/fhir/configuration.md

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,13 @@ icon: config
189189
- **Example:** `hospital.com`
190190

191191

192+
### DEV_DSF_FHIR_SERVER_ORGANIZATION_THUMBPRINT
193+
- **Property:** dev.dsf.fhir.server.organization.thumbprint
194+
- **Required:** No
195+
- **Description:** The SHA-512 thumbprint of the local organization client certificate; will be calculated on startup based on the client certificate specified via *DEV_DSF_FHIR_CLIENT_CERTIFICATE*
196+
- **Recommendation:** Do not specify this variable when using the same client certificate for the FHIR and BPE server; the thumbprint can be calculated via `certtool --fingerprint --hash=sha512 --infile=client_certificate.pem`
197+
198+
192199
### DEV_DSF_FHIR_SERVER_PAGE_COUNT
193200
- **Property:** dev.dsf.fhir.server.page.count
194201
- **Required:** No
@@ -216,6 +223,125 @@ icon: config
216223
- **Description:** UI theme parameter, adds a color indicator to the ui to distinguish `dev`, `test` and `prod` environments if configured; supported values: `dev`, `test` and `prod`
217224

218225

226+
### DEV_DSF_LOG_AUDIT_CONSOLE_ERR_ENABLED
227+
- **Property:** dev.dsf.log.audit.console.err.enabled
228+
- **Required:** No
229+
- **Description:** Set to `true` to enable console err output of the audit logger
230+
- **Default:** `false`
231+
232+
233+
### DEV_DSF_LOG_AUDIT_CONSOLE_ERR_STYLE
234+
- **Property:** dev.dsf.log.audit.console.err.style
235+
- **Required:** No
236+
- **Description:** Audit logger console err style, one of: `JSON_ECS`, `JSON_GCP`, `JSON_GELF`, `JSON_LOGSTASH`, `TEXT_MDC`, `TEXT`
237+
- **Default:** `STYLE_TEXT`
238+
239+
240+
### DEV_DSF_LOG_AUDIT_CONSOLE_OUT_ENABLED
241+
- **Property:** dev.dsf.log.audit.console.out.enabled
242+
- **Required:** No
243+
- **Description:** Set to `true` to enable console out output of the audit logger
244+
- **Default:** `false`
245+
246+
247+
### DEV_DSF_LOG_AUDIT_CONSOLE_OUT_STYLE
248+
- **Property:** dev.dsf.log.audit.console.out.style
249+
- **Required:** No
250+
- **Description:** Audit logger console out style, one of: `JSON_ECS`, `JSON_GCP`, `JSON_GELF`, `JSON_LOGSTASH`, `TEXT_MDC`, `TEXT`
251+
- **Default:** `STYLE_TEXT`
252+
253+
254+
### DEV_DSF_LOG_AUDIT_FILE_ENABLED
255+
- **Property:** dev.dsf.log.audit.file.enabled
256+
- **Required:** No
257+
- **Description:** Set to `false` to disable log file output of the audit logger
258+
- **Default:** `true`
259+
260+
261+
### DEV_DSF_LOG_AUDIT_FILE_STYLE
262+
- **Property:** dev.dsf.log.audit.file.style
263+
- **Required:** No
264+
- **Description:** Audit logger file style, one of: `JSON_ECS`, `JSON_GCP`, `JSON_GELF`, `JSON_LOGSTASH`, `TEXT_MDC`, `TEXT`
265+
- **Default:** `TEXT_MDC`
266+
267+
268+
### DEV_DSF_LOG_CONFIG
269+
- **Property:** dev.dsf.log.config
270+
- **Required:** No
271+
- **Description:** Location of a log4j configuration xml file; if file is readable, overrides configuration specified via *DEV_DSF_LOG_...* parameters
272+
- **Default:** `conf/log4j2.xml`
273+
274+
275+
### DEV_DSF_LOG_CONSOLE_ERR_ENABLED
276+
- **Property:** dev.dsf.log.console.err.enabled
277+
- **Required:** No
278+
- **Description:** Set to `true` to enable console err output of the standard logger
279+
- **Default:** `false`
280+
281+
282+
### DEV_DSF_LOG_CONSOLE_ERR_LEVEL
283+
- **Property:** dev.dsf.log.console.err.level
284+
- **Required:** No
285+
- **Description:** Standard logger console err output level, one of: `TRACE`, `DEBUG`, `INFO`, `WARN`, `ERROR`
286+
- **Default:** `INFO`
287+
288+
289+
### DEV_DSF_LOG_CONSOLE_ERR_STYLE
290+
- **Property:** dev.dsf.log.console.err.style
291+
- **Required:** No
292+
- **Description:** Standard logger console err output style, one of: `JSON_ECS`, `JSON_GCP`, `JSON_GELF`, `JSON_LOGSTASH`, `TEXT_MDC`, `TEXT`, `TEXT_COLOR_MDC`, `TEXT_COLOR`
293+
- **Default:** `TEXT_COLOR`
294+
295+
296+
### DEV_DSF_LOG_CONSOLE_OUT_ENABLED
297+
- **Property:** dev.dsf.log.console.out.enabled
298+
- **Required:** No
299+
- **Description:** Set to `false` to disable console out output of the standard logger
300+
- **Default:** `true`
301+
302+
303+
### DEV_DSF_LOG_CONSOLE_OUT_LEVEL
304+
- **Property:** dev.dsf.log.console.out.level
305+
- **Required:** No
306+
- **Description:** Standard logger console out output level, one of: `TRACE`, `DEBUG`, `INFO`, `WARN`, `ERROR`
307+
- **Default:** `INFO`
308+
309+
310+
### DEV_DSF_LOG_CONSOLE_OUT_STYLE
311+
- **Property:** dev.dsf.log.console.out.style
312+
- **Required:** No
313+
- **Description:** Standard logger console out output style, one of: `JSON_ECS`, `JSON_GCP`, `JSON_GELF`, `JSON_LOGSTASH`, `TEXT_MDC`, `TEXT`, `TEXT_COLOR_MDC`, `TEXT_COLOR`
314+
- **Default:** `TEXT_COLOR`
315+
316+
317+
### DEV_DSF_LOG_FILE_ENABLED
318+
- **Property:** dev.dsf.log.file.enabled
319+
- **Required:** No
320+
- **Description:** Set to `false` to disable log file output of the standard logger
321+
- **Default:** `true`
322+
323+
324+
### DEV_DSF_LOG_FILE_LEVEL
325+
- **Property:** dev.dsf.log.file.level
326+
- **Required:** No
327+
- **Description:** Standard logger log file output level, one of: `TRACE`, `DEBUG`, `INFO`, `WARN`, `ERROR`
328+
- **Default:** `DEBUG`
329+
330+
331+
### DEV_DSF_LOG_FILE_STYLE
332+
- **Property:** dev.dsf.log.file.style
333+
- **Required:** No
334+
- **Description:** Standard logger log file output style, one of: `JSON_ECS`, `JSON_GCP`, `JSON_GELF`, `JSON_LOGSTASH`, `TEXT_MDC`, `TEXT`
335+
- **Default:** `TEXT_MDC`
336+
337+
338+
### DEV_DSF_LOG_MIN_LEVEL_LOGGERS
339+
- **Property:** dev.dsf.log.min.level.loggers
340+
- **Required:** No
341+
- **Description:** List of logger names that are enabled to produce log output with the minimal configured log level from `DEV_DSF_LOG_CONSOLE_OUT_LEVEL`, `DEV_DSF_LOG_CONSOLE_ERR_LEVEL` and `DEV_DSF_LOG_FILE_LEVEL`
342+
- **Default:** `dev.dsf`
343+
344+
219345
### DEV_DSF_PROXY_NOPROXY
220346
- **Property:** dev.dsf.proxy.noProxy
221347
- **Required:** No

0 commit comments

Comments
 (0)