Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/graylog/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: graylog
home: https://www.graylog.org
version: 2.4.0
version: 2.4.1
appVersion: 6.3.3
description: Graylog is the centralized log management solution built to open
standards for capturing, storing, and enabling real-time analysis of terabytes
Expand Down
5 changes: 4 additions & 1 deletion charts/graylog/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,13 @@ data:
inputbuffer_ring_size = {{ .Values.graylog.options.inputBufferRingSize | default 65536 }}
inputbuffer_processors = {{ .Values.graylog.options.inputbufferProcessors | default 2 }}
inputbuffer_wait_strategy = blocking
message_journal_enabled = true
message_journal_enabled = {{ .Values.graylog.journal.enabled }}
# Do not change `message_journal_dir` location
message_journal_dir = /usr/share/graylog/data/journal
message_journal_max_size = {{ .Values.graylog.journal.maxSize }}
message_journal_max_age = {{ .Values.graylog.journal.maxAge }}
message_journal_segment_age = {{ .Values.graylog.journal.segmentAge }}
message_journal_segment_size = {{ .Values.graylog.journal.segmentSize }}
lb_recognition_period_seconds = 3
# Use a replica set instead of a single host
mongodb_uri = {{ template "graylog.mongodb.uri" . }}
Expand Down
18 changes: 18 additions & 0 deletions charts/graylog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,10 @@ graylog:
# elasticsearch_idle_timeout = -1s

journal:
## Enable the disk-based message journal.
##
enabled: true

## Sometime Graylog journal continually grow up or corrupt and cause Graylog unable to start.
## You need to clean up all journal files in order to run the Graylog.
## Change `graylog.journal.deleteBeforeStart` to `true` to delete all journal files before start
Expand All @@ -509,6 +513,20 @@ graylog:
##
maxSize: 5gb

## The maximum time the journal holds messages before they are written to the search backend.
## Works with message_journal_max_size so that message writes are triggered by whichever property is hit first.
##
maxAge: 12h

## Controls the period of time after which Graylog forces the log to roll
## even if the segment file isn’t full to ensure that retention can delete or compact old data.
##
segmentAge: 1h

## Sets the size of the journal segment.
##
segmentSize: 100mb

init:
## Init Container image
##
Expand Down
Loading