用于性能指标存储的开源技术
我正在寻找一个开源解决方案来存储和监控一些应用程序性能。
更准确地说,我在开发的软件中使用了多个 Java 组件,并且我想收集每个组件的性能统计数据,以便找出我需要关注哪些内容来保持快速处理。
这个想法是向存储库发送一条消息来存储一些时间戳(每次 Java 组件启动或结束时),并使用 Web 界面来浏览时间戳,并在它们之上进行一些分析。
这些需求看起来非常基本,但不幸的是我没有在网上找到任何东西,可能是因为我不知道此类工具的正确术语。
有人可以推荐我这样的工具吗?
提前致谢 !
阿德里安
I am looking for an open source solution to store and monitor some application performances.
To be more precise, I use several Java components in the software I develop and I would like to gather performance statistics for each of these components in order to figure out on what I need to focus to keep fast processing.
The idea would be to send a message to a repository to store some timestamps (everytime a Java component starts or ends) and having a web interface to browse the timestamps, and do some analytics on top of them.
These needs seem really basic but unfortunately I haven't found anything on the web, probably because I don't know the right terminology for this kind of tools.
Could someone recommend me such a tool?
Thanks in advance !
Adrien
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您所描述的是存储时间序列数据的 RRDtool 。要从 Java 访问它,有 java-rrd。
我还觉得您正在寻找整个解决方案而不仅仅是数据后端。如果是这样,请查看以下开源集群监控系统:cacti、神经节和石墨。它们都有网络界面。 Cacti和ganglia有类似RRD的后端,而Graphite有自己的whisper数据库等。
What you described is RRDtool that stores time-series data. To access it from Java, there is java-rrd.
I also get the impression that you are looking for whole solution instead of just data back-end. If so, check out following open source cluster monitoring system: cacti, ganglia and graphite. They all have web interface. Cacti and ganglia have RRD-like back-end, while graphite has its own whisper database, etc.