Stackify Log Appender for Logback


License

License

Categories

Categories

Logback Application Layer Libs Logging
GroupId

GroupId

com.stackify
ArtifactId

ArtifactId

stackify-log-logback
Last Version

Last Version

4.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

Stackify Log Appender for Logback
Stackify Log Appender for Logback
Project URL

Project URL

https://github.com/stackify/stackify-log-logback
Project Organization

Project Organization

Stackify, LLC
Source Code Management

Source Code Management

https://github.com/stackify/stackify-log-logback

Download stackify-log-logback

How to add to project

<!-- https://jarcasting.com/artifacts/com.stackify/stackify-log-logback/ -->
<dependency>
    <groupId>com.stackify</groupId>
    <artifactId>stackify-log-logback</artifactId>
    <version>4.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.stackify/stackify-log-logback/
implementation 'com.stackify:stackify-log-logback:4.0.1'
// https://jarcasting.com/artifacts/com.stackify/stackify-log-logback/
implementation ("com.stackify:stackify-log-logback:4.0.1")
'com.stackify:stackify-log-logback:jar:4.0.1'
<dependency org="com.stackify" name="stackify-log-logback" rev="4.0.1">
  <artifact name="stackify-log-logback" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.stackify', module='stackify-log-logback', version='4.0.1')
)
libraryDependencies += "com.stackify" % "stackify-log-logback" % "4.0.1"
[com.stackify/stackify-log-logback "4.0.1"]

Dependencies

compile (4)

Group / Artifact Type Version
com.stackify : stackify-api-java jar 4.0.0
com.fasterxml.jackson.core : jackson-databind jar 2.9.10.5
ch.qos.logback : logback-core jar 1.0.13
ch.qos.logback : logback-classic jar 1.0.13

provided (1)

Group / Artifact Type Version
org.projectlombok : lombok jar 1.16.10

test (5)

Group / Artifact Type Version
junit : junit jar 4.11
org.mockito : mockito-core jar 1.9.5
org.powermock : powermock-core jar 1.5.6
org.powermock : powermock-module-junit4 jar 1.5.6
org.powermock : powermock-api-mockito jar 1.5.6

Project Modules

There are no modules declared in this project.

Maven Central Coverage Status

Stackify Logback Logger

Logback logger appender for sending log messages and exceptions to Stackify.

Installation

Add it as a maven dependency:

<dependency>
    <groupId>com.stackify</groupId>
    <artifactId>stackify-log-logback</artifactId>
    <version>4.0.1</version>
    <scope>runtime</scope>
</dependency>

Usage

Example appender configuration:

<appender name="STACKIFY" class="com.stackify.log.logback.StackifyLogAppender">
    <apiKey>YOUR_API_KEY</apiKey>
    <application>YOUR_APPLICATION_NAME</application>
    <environment>YOUR_ENVIRONMENT</environment>
</appender>

Note: If you are logging from a device that has the stackify-agent installed, the environment setting is optional. We will use the environment associated to your device in Stackify.

Be sure to shutdown Logback to flush this appender of any errors and shutdown the background thread:

ch.qos.logback.classic.LoggerContext loggerContext = (ch.qos.logback.classic.LoggerContext) org.slf4j.LoggerFactory.getILoggerFactory();
loggerContext.stop();

Masking

The Stackify appender has built-in data masking for credit cards and social security number values.

Enable Masking:

Add <maskEnabled>true</maskEnabled> inside the <appender> ... </appender> tag.

Customize Masking:

The example below has the following customizations:

  1. Credit Card value masking is disabled (<maskCreditCard>false</maskCreditCard>)
  2. IP Address masking is enabled (<maskIP>true</maskIP>).
  3. Custom masking to remove vowels using a regex (<maskCustom>[aeiou]</maskCustom>)
<appender name="STACKIFY" class="com.stackify.log.logback.StackifyLogAppender">
    <apiKey>YOUR_API_KEY</apiKey>
    <application>YOUR_APPLICATION_NAME</application>
    <environment>YOUR_ENVIRONMENT</environment>
      
    <maskEnabled>true</maskEnabled>
    <maskCreditCard>false</maskCreditCard>
    <maskSSN>true</maskSSN>
    <maskIP>true</maskIP>
    <maskCustom>[aeiou]</maskCustom> 
</appender>

Legacy Support

For legacy support of Java 1.6 and 1.7 use the following maven dependency:

<dependency>
    <groupId>com.stackify</groupId>
    <artifactId>stackify-log-logback</artifactId>
    <version>2.1.2</version>
</dependency>

License

Copyright 2019 Stackify, LLC.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

com.stackify

Stackify

Stackify helps developers manage and troubleshoot application problems with integrated monitoring, metrics, errors & logs.

Versions

Version
4.0.1
4.0.0
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.15
1.0.14
1.0.13
1.0.12
1.0.11
1.0.10
1.0.9
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0