Logentries Appender

Logentries library for dropwizard.

License

License

GroupId

GroupId

com.github.mtakaki
ArtifactId

ArtifactId

logentries-appender
Last Version

Last Version

0.0.3
Release Date

Release Date

Type

Type

jar
Description

Description

Logentries Appender
Logentries library for dropwizard.
Project URL

Project URL

https://github.com/mtakaki/dropwizard-logentries-appender
Source Code Management

Source Code Management

https://github.com/mtakaki/dropwizard-logentries-appender

Download logentries-appender

How to add to project

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

Dependencies

compile (3)

Group / Artifact Type Version
io.dropwizard : dropwizard-logging Optional jar 0.9.2
org.slf4j : slf4j-api jar 1.7.5
com.logentries : logentries-appender jar RELEASE

provided (1)

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

test (2)

Group / Artifact Type Version
junit : junit jar 4.12
org.mockito : mockito-all jar 1.10.19

Project Modules

There are no modules declared in this project.

Status

Build Status Coverage Status Codacy Badge Download Javadoc

Dropwizard Logentries Log Appender

This project provides integration of logentries log appender to dropwizard framework, so it can be referenced in dropwizard's configuration YML.

Project lombok was used to auto-generate the getter and setters, so you will need to have lombok plugin installed in your eclipse/intellij if you want to import the source code.

This library currently supports dropwizard version 0.9.2.

Maven Configuration

This library is available at central maven, so you only need to add this to your dependencies:

<dependencies>
  <dependency>
    <groupId>com.github.mtakaki</groupId>
    <artifactId>logentries-appender</artifactId>
    <version>0.0.3</version>
  </dependency>
</dependencies>

Dropwizard Configuration

Without data hub:

logging:
  level: INFO
  appenders:
    - type: logentries
      threshold: WARN
      token: your_token_here

If data hub is used:

logging:
  level: INFO
  appenders:
    - type: logentries
      threshold: WARN
      token: your_token_here
      useDataHub: true
      dataHubAddress: your_datahub_address
      dataHubPort: datahub_port

Versions

Version
0.0.3