6.2. 配置数据网格指标


配置 Data Grid,以通过 指标端点 导出量表和直方图。

流程

  • 根据需要 在指标 配置中打开或关闭量表和直方图。

声明

<!-- Computes and collects statistics for the Cache Manager. -->
<cache-container statistics="true">
  <!-- Exports collected statistics as gauge and histogram metrics. -->
  <metrics gauges="true" histograms="true" />
</cache-container>

programmatic

GlobalConfiguration globalConfig = new GlobalConfigurationBuilder()
  //Computes and collects statistics for the Cache Manager.
  .statistics().enable()
  //Exports collected statistics as gauge and histogram metrics.
  .metrics().gauges(true).histograms(true)
  .build();

6.2.1. Data Grid Metrics

网格与 Eclipse MicroProfile Metrics API 兼容,并可生成量表和直方图指标。

  • Data Grid 指标在 供应商 范围内提供。与 JVM 相关的指标在 Data Grid 服务器的基本 范围内提供。
  • 量表提供值,如写操作或 JVM 正常运行时间的平均纳秒数。默认启用量表。如果您启用统计信息,Data Grid 会自动生成量表。
  • histograms 提供有关操作执行时间的详细信息,如读取、写入和删除时间。默认情况下,Data Grid 不会启用直方图,因为它们需要额外的计算。
Red Hat logoGithubRedditYoutubeTwitter

学习

尝试、购买和销售

社区

关于红帽文档

通过我们的产品和服务,以及可以信赖的内容,帮助红帽用户创新并实现他们的目标。

让开源更具包容性

红帽致力于替换我们的代码、文档和 Web 属性中存在问题的语言。欲了解更多详情,请参阅红帽博客.

關於紅帽

我们提供强化的解决方案,使企业能够更轻松地跨平台和环境(从核心数据中心到网络边缘)工作。

© 2024 Red Hat, Inc.