28413fd626
* Change from glog to spdlog * Remove HA tests * Remove logrotate log configuration * Define custom main for unit gtests
14 lines
360 B
Plaintext
14 lines
360 B
Plaintext
# logrotate configuration for Memgraph Enterprise
|
|
# see "man logrotate" for details
|
|
|
|
/var/lib/memgraph/durability/audit/audit.log {
|
|
# rotate log files daily
|
|
daily
|
|
# keep one year worth of audit logs
|
|
rotate 365
|
|
# send SIGUSR2 to notify memgraph to recreate logfile
|
|
postrotate
|
|
/usr/bin/killall -s SIGUSR2 memgraph
|
|
endscript
|
|
}
|