Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 python 中的 Flask 编写一个 Web 应用程序,它生成 linux/nix 性能(CPU、磁盘使用情况、内存使用情况)。我已经实现了 python 库 psutil。
我的问题是如何获取每个实用程序的值与日期范围。例如:最近 3 小时的 CPU、磁盘使用情况、内存使用情况。
对不起,我是编程初学者。
为了将来的需要,我找到了一种方法。使用 ElasticSearch 和 Psutil。
我将 psutil 值索引到 elasticsearch,然后使用日期范围和日期直方图 aggs。
谢谢!