Keeping longer history in the Chirpstack UI

Hi

how can we configure chirpstack app server to show longer history in the Events/Frames Queue?

Hi there :wave:,
In v4, this can be done in the config file: Configuration - ChirpStack open-source LoRaWAN® Network Server documentation

# Device frame-log max history.
  #
  # This defines the max number of frame-log records that will be persisted in Redis Streams.
  # This stream contains the uplink and downlink frames of all devices.
  # Setting this value to 0 disables this feature.
  device_frame_log_max_history=10

  # Device event-log max history.
  #
  # This defines the max number of event-log records that will be persisted in Redis Streams.
  # This stream contains the events of all devices.
  # Setting this value to 0 disables this feature.
  device_event_log_max_history=10

Keep in mind that if you want to save a lot of history (hours/days/weeks), you’re better off using an integration.

This topic was automatically closed after 90 days. New replies are no longer allowed.