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
Is your feature request related to a problem? (你需要的功能是否与某个问题有关?)
日志一直在打 ERROR Too many stats seen, overflow detected, max stats count:20000
看着这个变量是写死的 constexpr uint64_t MAX_MULTI_DIMENSION_STATS_COUNT = 20000; if (metric_map_ptr->size() > MAX_MULTI_DIMENSION_STATS_COUNT) { LOG(ERROR) << "Too many stats seen, overflow detected, max stats count:" << MAX_MULTI_DIMENSION_STATS_COUNT; return nullptr; }
constexpr uint64_t MAX_MULTI_DIMENSION_STATS_COUNT = 20000;
if (metric_map_ptr->size() > MAX_MULTI_DIMENSION_STATS_COUNT) { LOG(ERROR) << "Too many stats seen, overflow detected, max stats count:" << MAX_MULTI_DIMENSION_STATS_COUNT; return nullptr; }
Describe the solution you'd like (描述你期望的解决方法)
Describe alternatives you've considered (描述你想到的折衷方案)
Additional context/screenshots (更多上下文/截图)
The text was updated successfully, but these errors were encountered:
20000条metrics一直会更新吗?有没有已经没用的?
Sorry, something went wrong.
确实有一些是没用的 需要手工删除 但是这个值能不能支持扩展一下呢 有些时候指标确实很多
No branches or pull requests
Is your feature request related to a problem? (你需要的功能是否与某个问题有关?)
日志一直在打 ERROR
Too many stats seen, overflow detected, max stats count:20000
看着这个变量是写死的
constexpr uint64_t MAX_MULTI_DIMENSION_STATS_COUNT = 20000;
if (metric_map_ptr->size() > MAX_MULTI_DIMENSION_STATS_COUNT) { LOG(ERROR) << "Too many stats seen, overflow detected, max stats count:" << MAX_MULTI_DIMENSION_STATS_COUNT; return nullptr; }
Describe the solution you'd like (描述你期望的解决方法)
Describe alternatives you've considered (描述你想到的折衷方案)
Additional context/screenshots (更多上下文/截图)
The text was updated successfully, but these errors were encountered: