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.
Papertrail Logging
Papertrail is a cloud-based log management service that provides aggregated logging tools, flexible system groups, team-wide access, long-term archives, charts and analytics exports, monitoring webhooks and more.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
...
<Appenders>
<Syslog name="Papertrail"
host="<host>.papertrailapp.com"
port="XXXXX"
protocol="TCP" appName="MyApp" mdcId="mdc"
facility="LOCAL0" enterpriseNumber="18060" newLine="true"
format="RFC5424" ignoreExceptions="false" exceptionPattern="%throwable{full}">
</Syslog>
</Appenders>
...
<Loggers>
<Root level="INFO">
<AppenderRef ref="Papertrail" />
</Root>
</Loggers>