Question: Ability to view storage space per index?
See original GitHub issueHi, is there a prometheus metric to view the total storage consumed by index name?
For example
logstash-2020-07-06: 50gb
logstash-2020-07-05: 20gb
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Storage Spaces: Frequently Asked Questions (FAQ) - TechNet
This topic discusses common questions about Storage Spaces on Windows Server 2012 R2, Windows Server 2012, Windows 8.1, and Windows 8. For ......
Read more >Analyze index disk usage API | Elasticsearch Guide [master]
Analyzes the disk usage of each field of an index or data stream. This API might not support indices created in previous Elasticsearch...
Read more >ElasticSearch find disk space usage - Stack Overflow
To view the overall disk usage/available space on ES cluster you can use the following command: curl ...
Read more >Oracle: how to find out storage space used by a table?
Click on the Segments tab (and wait...) You will see the size of the table data and the indexes used.
Read more >How to check the storage on your iPhone and iPad
Depending on the app, you might be able to delete some of its documents and data. If your device is almost full and...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Awesome, I managed to get it working. Changing it to
"--indices-stats-metrics", "fielddata,store"
fixed the issue. Thanks a bunch for the help.Ahh, I think it’s because of your
"--indices-stats-metrics", "fielddata"
option. That’ll limit the indices stats metrics to only those from thefielddata
section. That’s why the logs show queries to/_stats/fielddata
, not just/_stats
. Sorry, not sure why I didn’t spot that earlier!You should be able to get the
store
metrics by changing it to"--indices-stats-metrics", "fielddata,store"
(I presume you want to keep--indices-stats-metrics
limited to reduce metric load Prometheus?).