-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update config-api image (#874)
* fix: update dependencies Overview: - update jans-config-api-server - update URLs of downloadable plugins - add facter script * feat: update logging configuration * feat: add logging configuration for admin-ui plugin
- Loading branch information
Showing
6 changed files
with
280 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
docker-jans-config-api/plugins/admin-ui/log4j2-adminui.xml.tmpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<Configuration packages="io.jans.log"> | ||
<Appenders> | ||
<Console name="Console" target="SYSTEM_OUT"> | ||
<PatternLayout pattern="%d{dd-MM HH:mm:ss.SSS} %-5p %C{4} %F:%L- %m%n" /> | ||
</Console> | ||
|
||
<RollingFile name="ADMINUI-AUDIT" fileName="${sys:log.base}/logs/adminuiAudit.log" filePattern="${sys:log.base}/logs/adminuiAudit-%d{yyyy-MM-dd}-%i.log"> | ||
<PatternLayout pattern="%d{dd-MM HH:mm:ss.SSS} %-5p [%t] [%C{6}] (%F:%L) - %m%n" /> | ||
|
||
<Policies> | ||
<TimeBasedTriggeringPolicy interval="1" modulate="true" /> | ||
<SizeBasedTriggeringPolicy size="250 MB" /> | ||
</Policies> | ||
|
||
<DefaultRolloverStrategy max="15" /> | ||
</RollingFile> | ||
<RollingFile name="ADMINUI-LOG" fileName="${sys:log.base}/logs/adminui.log" filePattern="${sys:log.base}/logs/adminui-%d{yyyy-MM-dd}-%i.log"> | ||
<PatternLayout pattern="%d{dd-MM HH:mm:ss.SSS} %-5p [%t] [%C{6}] (%F:%L) - %m%n" /> | ||
|
||
<Policies> | ||
<TimeBasedTriggeringPolicy interval="1" modulate="true" /> | ||
<SizeBasedTriggeringPolicy size="250 MB" /> | ||
</Policies> | ||
|
||
<DefaultRolloverStrategy max="15" /> | ||
</RollingFile> | ||
|
||
</Appenders> | ||
|
||
<Loggers> | ||
<Logger name="io.jans.ca.plugin.adminui.rest.logging" level="$admin_ui_audit_log_level" additivity="false"> | ||
<!-- <AppenderRef ref="ADMINUI-AUDIT" /> --> | ||
<AppenderRef ref="$admin_ui_audit_log_target" /> | ||
</Logger> | ||
<Logger name="io.jans.ca.plugin.adminui" level="$admin_ui_log_level" additivity="false"> | ||
<!-- <AppenderRef ref="ADMINUI-LOG" /> --> | ||
<AppenderRef ref="$admin_ui_log_target" /> | ||
</Logger> | ||
</Loggers> | ||
|
||
</Configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.