/etc/zentyal/logs.conf is in zentyal-core 2.3.4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | # logs.conf - configuration file for Zentyal logs module.
#
# This file contains the most basic settings, most other stuff is configured
# using the web interface.
#
# Everything after a '#' character is ignored
#
# All whitespace is ignored
#
# Config keys are set this way:
#
# key = value
#
# They may contain comments at the end:
#
# key = value # this is ignored
eboxlogs_dbname = zentyal
eboxlogs_dbuser = zentyal
# Time to wait until the insertion of buffered log entries
# Default: 10 (in seconds)
multi_insert_interval = 10
# Disable consolidation for Cloud reports. Only useful
# to increase performance in servers that are not going
# to be subscribed to Zentyal Cloud or generate reports
# Allowed values = [yes|no]
disable_consolidation = no
# Wether to enable the sliced backup mode
# Allowed values = [yes|no]
eboxlogs_sliced_backup = no
# Directory where slices are going to be stored
# Recommended to set a remote directory
# or the mount point of an external device
# This directory needs to be manually created if not exits
eboxlogs_sliced_backup_archive = /media/backup-slices
# Duration of slices. Format: [number] days|weeks|months|years
# Minimum value = 1 days
eboxlogs_sliced_backup_period = 10 days
# Number of slices archived in each archive operation
eboxlogs_sliced_backup_archive_at_once = 3
# Wether to allow restore with unarchived slices (you will lose data)
# Allowed values = [yes|no]
eboxlogs_force_not_archived_restore = no
# Wether to allow DB sliced restore without schema file
eboxlogs_force_not_schema_sliced_restore = no
|