queue listener

Configuration

fieldtyperequireddefaultdescription
periodtime.Durationfalse10sThe interval at which listener consumes and processes data.

Metrics

  • LABELS:
    • pipeline: Indicates the name of the pipeline where it is located.
    • type: the type of queue

capacity

  1. # HELP queue capacity
  2. # TYPE loggie_queue_capacity gauge
  3. loggie_queue_capacity{pipeline="xxx", type="channel"} 2048
  • HELP: The capacity of the current queue
  • TYPE: gauge

size

  1. # HELP queue size
  2. # TYPE loggie_queue_size gauge
  3. loggie_queue_size{pipeline="xxx", type="channel"} 2048
  • HELP: The length of the current queue being used
  • TYPE: gauge

fill_percentage

  1. # HELP how full is queue
  2. # TYPE loggie_queue_fill_percentage gauge
  3. loggie_queue_fill_percentage{pipeline="xxx", type="channel"} 50
  • HELP: The percentage used by the current queue
  • TYPE: gauge