Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="INFO" monitorInterval="2">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{ABSOLUTE} %5p [%t] %c{1} - %m%n"/>
</Console>
<!-- User can use this to configure
1. the size of a file before rolling over to a new file by setting the size of SizeBaseTriggeringPolicy
2. the number of files before overriding previous files by setting the max of ADRolloverStrategy
-->
<ADRRAFAppender name="File" fileName="agent.log">
<PatternLayout pattern="[%t] %d{DATE} %5p %c - %m%n" />
<SizeBasedTriggeringPolicy size="20 MB" />
<ADRolloverStrategy max="5" />
<RegexFilter regex=".*REST.*" onMatch="DENY" onMismatch="ACCEPT"/>
</ADRRAFAppender>
<!-- To configure the size of the buffer, use system property appdynamics.logger.buffer.size -->
<ADBufferAppender name="Buffer">
<PatternLayout pattern="[%t] %d{DATE} %5p %c - %m%n" />
</ADBufferAppender>
</Appenders>
<Loggers>
<!-- change the level property to set the initial startup log level OR use system property appdynamics.agent.startup.log.level
System property takes precedence over this config file -->
<Root level="info">
<!-- To log files to an "unknown" folder before the agent registers with the Controller, uncomment the line below -->
<!-- <AppenderRef ref="File"/> -->
<!-- To enable logging to Console before the agent registers with the Controller, uncomment the line below -->
<!-- <AppenderRef ref="Console"/> -->
<AppenderRef ref="Buffer"/>
</Root>
</Loggers>
</Configuration>