WORKERS AHEAD!
You are viewing the development documentation for the Apereo CAS server. The functionality presented here is not officially released yet. This is a work in progress and will be continually updated as development moves forward. You are most encouraged to test the changes presented.
Loggly Configuration
Loggly is a cloud-based log management service that makes it easy to access and analyze the mission-critical information within your logs. Log data can be automatically routed to Loggly via Rsyslog. The advantage of using Rsyslog is that it can send TCP events without blocking your application, can optionally encrypt the data, and even queue data to add robustness to network failure.
See this guide for more info.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
...
<Appenders>
<Socket name="Loggly" host="localhost" port="514" protocol="UDP">
<PatternLayout>
<pattern>${hostName} java %d{yyyy-MM-dd HH:mm:ss,SSS}{GMT} %p %t
%c %M - %m%n</pattern>
</PatternLayout>
</Socket>
</Appenders>
...
<Loggers>
<Root level="INFO">
<AppenderRef ref="Loggly" />
</Root>
</Loggers>