Charles
My feedback
-
1 vote
Charles shared this idea ·
-
1 vote
Charles shared this idea ·
-
2 votes
Charles shared this idea ·
-
19 votes
Charles supported this idea ·
-
10 votes
Charles supported this idea ·
Charles shared this idea ·
-
9 votes
Charles supported this idea ·
-
2 votes
Charles shared this idea ·
-
2 votes
Charles shared this idea ·
-
44 votes
Charles supported this idea ·
-
4 votes
Charles supported this idea ·
-
5 votes
Charles shared this idea ·
-
14 votes
Charles supported this idea ·
-
2 votes
Charles supported this idea ·
-
1 vote
Charles shared this idea ·
-
3 votes
An error occurred while saving the comment Charles supported this idea ·
-
1 vote
Charles shared this idea ·
-
1 vote
Charles shared this idea ·
-
3 votes
Charles shared this idea ·
-
1 vote
An error occurred while saving the comment Charles commented
Code block with correct markup:
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log_path}.log</file>
<encoder class="com.xgen.svc.mms.util.HeaderPatternLayoutEncoder$Classic">
<pattern>
%d{"yyyy-MM-dd'T'HH:mm:ss.SSSZ"} [%thread] %XF{groupId, "gid:%s "}%XF{jobId, "jobId:%s "}%-5level %logger [%file.%method:%line] - %msg%n
</pattern>
</encoder>
<!-- Rollover the logs once per day, keep 30 days, compressed -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>${log_path}.%d{yyyyMMdd}.log.gz</fileNamePattern>
<maxHistory>30</maxHistory>
</rollingPolicy>
</appender> -
2 votes
Charles shared this idea ·
fwiw I believe that the `runtimestatsPrinter` information in automation-agent-verbose.log is actually helpful. It appears to be the Agent RSS in bytes.
To find rss of Agent in kb that'll match ps aux output
```
egrep runtimestatsPrinter automation-agent-verbose.log |grep -v Unexpected |awk '{print $NF}' FS='=' |uniq |awk '{print $1/1024}'
```