Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

All alarms example - storage configuration #26

Open
ricmano opened this issue Sep 16, 2022 · 1 comment
Open

All alarms example - storage configuration #26

ricmano opened this issue Sep 16, 2022 · 1 comment

Comments

@ricmano
Copy link

ricmano commented Sep 16, 2022

I was checking the project especially the free storage alarms and when checking all-alarms/main.tf I think line should be updated

free_storage_space_threshold = var.elasticsearch_disk_size * var.elasticsearch_instance_count * 1024 * 0.20

to something like this

free storage per node

free_storage_space_threshold = var.elasticsearch_disk_size * 1024 * 0.25

free storage on cluster

free_storage_space_total_threshold = var.elasticsearch_disk_size * var.elasticsearch_instance_count * 1024 * 0.25

I've also replaced 0.20 with 0.25, in aws documentation we have "we recommend setting it to 25% of the storage space for each node.", this will trigger the alert before having any real problem

Does this make sense? Can I create a pull request with these changes?

@dubiety
Copy link
Owner

dubiety commented Sep 30, 2022

@ricmano I think AWS updated the recommendation. PR is welcome!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants