An addition question: whether there is a way to re...
# getting-started
x
An addition question: whether there is a way to regularly clean meltano logs in production? Thank you!
e
You could always just do
rm -r .meltano/logs/elt/some-old-log-dir
d
i’m running this
sudo find ./* -mtime +7 -type f -exec rm {} \;
command in
.meltano/logs/elt/
to delete all folders older than 7 days
you also need to clean this folder :
.meltano/run/elt/