Hi, I don't think it is possible to get the disk size of indices ingested per day, as that's not a piece of information stored anywhere. As you mentioned, it is possible to track the count of documents rising over time.
If you really need this information, one way I could think of doing this is by creating a script that checks _cat/indices that runs at midnight everyday and creates a new document in a index that could be called indices_stats. Of course, to get the increase in size of the indices per day, you will need to subtract the previous day's size. Then you can use indices_stats to visualize the size of your indices over time.
Hi, sorry - that is what I was getting at. That API endpoint will retrieve the current size on disk, but it is not tracked through time. The history is not persisted anywhere. Visualizations and Timelion works from data stored in your ES indices only.
That's why my suggestion was to create a custom script that indexes data from that endpoint periodically, so that you are able to track the size through an ES index.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.