Skip to content

SinksConsole

Brian L. Troutwine edited this page Oct 3, 2017 · 3 revisions

The console sink is useful for development purposes. It will periodically print aggregations of ingested [Telemetry]( to stdout and raw LogLines delivered to it. It is not wise to leave the console sink enabled to a production deployment.

Configuration

The console sink configuration options are as follows:

  • bin_width :: determines how many seconds wide an aggregation bin is [default: 1]
  • flush_interval :: determines how often to flush, overrides global flush_interval [default: 60]

Example

[sinks]
  [sinks.console]
  bin_width = 10
  flush_interval = 60

This enables the console sink and aggregates all points into bins ten seconds wide, flushing every 60 seconds.