elastic apm resource 추가

This commit is contained in:
현성필
2024-01-17 18:04:47 +09:00
parent dd4a24aa59
commit 0da036798e
4 changed files with 17 additions and 0 deletions
Binary file not shown.
Binary file not shown.
+17
View File
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="DEBUG">
<Appenders>
<Console name="LogToConsole" target="SYSTEM_OUT">
<EcsLayout serviceName="simulator"/>
</Console>
<File name="LogToFile" fileName="/logs/simulator.log">
<EcsLayout serviceName="simulator"/>
</File>
</Appenders>
<Loggers>
<Root level="debug">
<AppenderRef ref="LogToFile"/>
<AppenderRef ref="LogToConsole"/>
</Root>
</Loggers>
</Configuration>