Tom,
What version of Security Onion on Elastic are you running?
If you are still running Alpha, you may want to try installing Beta:
http://blog.securityonion.net/2017/11/elastic-stack-beta-release-and-security.html
If you are already running Beta:
What is the output of the following?
cat /etc/curator/action/delete.yml
In regard to your question about archives -- Elastic archives have to be closed and then later re-opened -- I do not believe the ability to do this from within Kibana is currently available. Since we like to have as much information immediately searchable as possible, we are currently only maintaining the indices and deleting as space limitations require. You could certainly utilize the close.yml (to close indices) as you desire, but it is not currently supported/recommended configuration.
We will likely investigate a more robust approach to this in the future.
Thanks,
Wes
Hi Wes,
Upgraded from Alpha -> Beta so that might be the issue.
cat /etc/curator/action/delete.yml
---
# Remember, leave a key empty if there is no value. None will be a string,
# not a Python "NoneType"
#
# Also remember that all examples have 'disable_action' set to True. If you
# want to use this action as a template, be sure to set this to False after
# copying it.
actions:
1:
action: delete_indices
description: >-
Delete indices when $disk_space value (in GB) is exceeded.
options:
ignore_empty_list: True
disable_action: False
filters:
- filtertype: pattern
kind: prefix
value: logstash-
- filtertype: space
source: creation_date
use_age: True
disk_space:
Looks like the disk space variable might just be missing.
I will take a look at using close.yml thanks. For us it's important to have a balance of searchable data and preserving historical data for a set period.
Hi Doug,
I thought I did but I've just reran it and now curator is now functioning.
Thanks,
Tom