We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
目前时序数据库如 Prometheus、TSDB 等是业界成熟的用于存储时间序列数据(写多读少、高并发写入、无事务要求、海量数据)的专业化数据库。对于 xprofiler 的指标数据,也是符合这个特征的数据,可以使用时序数据库存储来优化存储、查询性能。
The text was updated successfully, but these errors were encountered:
有没有时序数据库的 API 样例,目前所有监控日志的存储都定义在:https://github.com/X-Profiler/xtransit-manager/blob/master/app/service/mysql.js
理论上需要抽象一下存储逻辑原语,适配不同的下游数据库,之前想在这一层更改为 ORM,不过不知道已有的 ORM 是否支持时序数据库。
Sorry, something went wrong.
API 样例可以参考 Prometheus 的 https://prometheus.io/docs/prometheus/latest/querying/basics/ ,像 SLS MetricStore 提供的也是 Prometheus 的查询前端。其他的时序数据库比如 TSDB 提供的概念也是类似的,就是支持的查询操作会有些许差异。
No branches or pull requests
目前时序数据库如 Prometheus、TSDB 等是业界成熟的用于存储时间序列数据(写多读少、高并发写入、无事务要求、海量数据)的专业化数据库。对于 xprofiler 的指标数据,也是符合这个特征的数据,可以使用时序数据库存储来优化存储、查询性能。
The text was updated successfully, but these errors were encountered: