LogBox : Enterprise Logging & Messaging
7.x
7.x
  • Introduction
    • Contribution Guide
    • Release History
      • What's New With 7.2.0
      • What's New With 7.1.0
      • What's New With 7.0.0
    • Upgrading to LogBox 7
    • About This Book
      • Author
  • Getting Started
    • Features at a Glance
    • Installation
      • LogBox Refcard
    • Need For Logging
    • How Does LogBox Work?
      • LogBox
      • Appender
      • Logger
        • Logger Category Inheritance
        • Security Levels
        • Dynamic Appenders
      • Layout
  • Configuration
    • Configuring LogBox
      • LogBox DSL
      • Adding Appenders
      • Adding Categories to Specific Logging Levels
      • Adding Categories Granularly
      • Configuring The Root Logger
  • Usage
    • Using LogBox
    • Using a Logger Object
      • When To Log
      • ExtraInfo Serialization
    • Appender Properties
      • CFAppender
      • ConsoleAppender
      • DBAppender
      • EmailAppender
      • FileAppender
      • RollingFileAppender
      • ScopeAppender
      • SocketAppender
      • TraceAppender
    • LogBox in a ColdBox Application
      • Configuration Within ColdBox
      • Benefits of using LogBox in a ColdBox application
      • Where is LogBox stored in a ColdBox app?
      • LogBox from the ColdBox Proxy
      • The LogBox Injection DSL
  • Extending LogBox
    • Creating Custom Appenders
      • Helper Methods
      • Instance Members
      • Dealing With Custom Layouts
      • Registering Appenders at Runtime
    • Creating a Custom Layout
      • Instance Members
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
Export as PDF
  1. Usage
  2. Appender Properties

DBAppender

Property
Type
Required
Default
Description

dsn

string

true

---

The dsn to use for logging

table

string

true

---

The table name to use for logging

columnMap

struct

false

---

A column map for aliasing columns. (Optional)

autocreate

boolean

false

false

if true, then we will create the table. Defaults to false (Optional)

rotate

boolean

false

true

If true, delete records older than rotationDays. Defaults to true (Optional)

rotationDays

integer

false

30

If rotate is true, delete records older than rotationDays. Defaults to 30 (Optional)

The columns needed or created in the table are

  • id : UUID

  • severity : string

  • category : string

  • logdate : timestamp

  • appendername : string

  • message : string

  • extrainfo : string

If you are building a column mapper, the map must have the above keys in it that match to your own table columns.

PreviousConsoleAppenderNextEmailAppender

Last updated 2 years ago

Was this helpful?