Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Dropwizard extension that supports logstash format with various appenders

License

Notifications You must be signed in to change notification settings

alphagov/dropwizard-logstash

Repository files navigation

dropwizard-logstash

GOV.UK Verify has closed

This repository is out of date and has been archived

Dropwizard extension that supports logstash format with various appenders: logstash-file, logstash-syslog, logstash-console

Using the library

  • Build and install to your local repository: ./gradlew publishToMavenLocal
  • Add the dependency to your project: uk.gov.ida:dropwizard-logstash:1.0.5-SNAPSHOT
  • Add the bundle to your app: bootstrap.addBundle(new LogstashBundle())
  • Configure the logger in the application config file by using logstash-file, logstash-syslog, or logstash-console:
server:
    requestLog:
        type: classic
        appenders:
            - type: logstash-file
              currentLogFilename: app.log
              archivedLogFilenamePattern: app.log.%d.gz
              archivedFileCount: x

logging:
    appenders:
        - type: logstash-file
          currentLogFilename: app.log
          archivedLogFilenamePattern: app.log.%d.gz
          archivedFileCount: x    
  • There is also a logback-access native console appender, access-logstash-console:
server:
    requestLog:
        appenders:
            - type: access-logstash-console

Running the test suite

./pre-commit.sh

Recreating the Jenkins build environment with docker

To reproduce exactly what the Jenkins build server does, with docker, use the commands below to build the package and run the tests inside it. This is useful for re-creating and debugging build failures.

docker run -it -v "$(pwd)":/app -w /app --rm govukverify/java8:latest clean build test

Connect to the container to poke around with

docker run govukverify/java8:latest /bin/bash.

Licence

MIT License

Versioning policy

dropwizard-logstash-[dropwizard version]-[build number]

About

Dropwizard extension that supports logstash format with various appenders

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published