We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7363dba commit c31ee32Copy full SHA for c31ee32
server/src/main/java/org/opensearch/indices/IndicesRequestCache.java
@@ -149,8 +149,9 @@ public final class IndicesRequestCache implements RemovalListener<ICacheKey<Indi
149
// pkg-private for testing
150
final IndicesRequestCacheCleanupManager cacheCleanupManager;
151
152
- public static final String SHARD_ID_DIMENSION_NAME = "shardId";
153
- public static final String INDEX_DIMENSION_NAME = "index";
+ // These values determine the valid names for levels in the cache stats API
+ public static final String SHARD_ID_DIMENSION_NAME = "shards";
154
+ public static final String INDEX_DIMENSION_NAME = "indices";
155
156
IndicesRequestCache(
157
Settings settings,
0 commit comments