Stackify Logback Logger
Logback logger appender for sending log messages and exceptions to Stackify.
- Errors and Logs Overview: http://support.stackify.com/errors-and-logs-overview/
- Sign Up for a Trial: http://www.stackify.com/sign-up/
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:
- Credit Card value masking is disabled (
<maskCreditCard>false</maskCreditCard>
) - IP Address masking is enabled (
<maskIP>true</maskIP>
). - 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.