This library included a Logback appender for Kinesis, its gradually stopped getting maintained over the years and we've now developed better solutions for shipping logs.
For internal users we recommend switching to devx-logs which allows shipping logs to Central ELK without adding any dependencies to your project.
For external users it may be worth switching to log4j-aws-appenders which has much the same functionality as this library but is better maintained.
This is an implementation of the AWS - Labs log4j appender for LOGBack.
Supports both Kinesis and Kinesis Firehose streams.
<configuration>
<appender name="KINESIS" class="com.gu.logback.appender.kinesis.KinesisAppender">
<bufferSize>1000</bufferSize>
<threadCount>20</threadCount>
<endpoint>kinesis.us-east-1.amazonaws.com</endpoint><!-- Specify endpoint OR region -->
<region>us-east-1</region>
<roleToAssumeArn>foo</roleToAssumeArn><!-- Optional: ARN of role for cross account access -->
<maxRetries>3</maxRetries>
<shutdownTimeout>30</shutdownTimeout>
<streamName>testStream</streamName>
<encoding>UTF-8</encoding>
<layout class="ch.qos.logback.classic.PatternLayout">
<pattern>%m</pattern>
</layout>
</appender>
<appender name="stdout" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%5p [%t] (%F:%L) - %m%n</pattern>
</encoder>
</appender>
<logger name="KinesisLogger" additivity="false" level="INFO">
<appender-ref ref="KINESIS"/>
</logger>
<root level="INFO">
<appender-ref ref="stdout"/>
</root>
</configuration>
Use com.gu.logback.appender.kinesis.KinesisAppender
for Kinesis or com.gu.logback.appender.kinesis.FirehoseAppender
for Kinesis Firehose.
This appender is performant but will block if the Kinesis stream throughput is exceeded. In order to guard against this you might want to consider:
AsyncAppender
, which can be configured to automatically drop overflowing messages on blockingIn order to test this you can simply use mvn install
(to deploy to your local machine).
Some notes for Guardian employees shipping updates to this.
First of all confirm that your pom.xml
has a SNAPSHOT
version in it (e.g. https://github.com/guardian/kinesis-logback-appender/blob/08de9295a41ef99f72fb0d75d7717d61b7c5f4f2/pom.xml#L22).
In order to release this to maven you'll need to have a settings file at ~/.m2/settings.xml
containing your sonatype credentials (you can probably find these in .sbt/0.13/sonatype.sbt
if you've shipped Scala libraries):
<settings>
<servers>
<server>
<id>ossrh</id>
<username>username</username>
<password>password</password>
</server>
</servers>
</settings>
You'll also need the mvn command installed. You can do brew install mvn
at the command line.
Once you've got that you can use mvn clean deploy
to deploy your snapshot to sonatype. This will only release to the snapshot repo (you can add resolvers += "Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
to test resolution of this).
Finally when ready run mvn release:clean release:prepare
and follow the prompts. Once this has completed you need to do one more step to actually release it on maven central: mvn release:perform
.