Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 972 Bytes

File metadata and controls

36 lines (28 loc) · 972 Bytes

Storage component

This component contains different backends for storing CCEvent and CCLog messages. The this in only a short term storage, so all backends have a notion of retention time to delete older entries.

Configuration

{
    "retention_time": "48h",
    "flush_time": "10s",
    "backend" : {
        "type" : "backend-type"
        // backend specific configuration
    }
}

The events are only kept retention_time long, then they get deleted. Every flush_time, all arrived messages are flushed to the storage backend.

Available storage backends

Each backend uses it's own configuration file entries. Check the backend-specific page for more information.