Liking cljdoc? Tell your friends :D

ci-cd Clojars Project

timbre.appenders.cloudwatch

Duct module that provides a Cloudwatch Timbre log appender. The library does batching and rate limiting considering Cloudwatch PutLogEvents API service quota limitations.

Installation

Clojars Project

Usage

To use this module just include the dev.gethop.timbre.appenders/cloudwatch key to your modules configuration in the config.edn. The module requires the following mandatory keys:

  • log-group-name: The Cloudwatch's log group name.
  • batch-config: The batch configuration requires the following mandatory keys:
    • size: The maximum number of log-events to be sent in one batch.
    • timeout: The amount of time in ms that the batch-log-queue should wait before sending the batch if the maximum batch size has not been reached. The timeout resets every time there is a new log-event entry in the batch-log-queue.

The module also accepts the following optional keys:

  • appender-config: Configuration for the Timbre's appender:
    • min-level: Minimum logging level. It defaults to :info.
  • client-config: Extra configuration for the aws-api client used to interact with the Cloudwatch API:

Example

{:dev.gethop.timbre.appenders.module/cloudwatch
 {:log-group-name "/aws/eb/hop-test"
  :batch-config {:size 1000 :timeout 300}}}

License

Copyright (c) 2022 Magnet S. Coop

This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/

Can you improve this documentation? These fine people already did:
Bingen Galartza Iparragirre & lucassousaf
Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close