Skip to content

Commit

Permalink
SOLR-15081: Metrics for core: isLeader, replicaState (#2198)
Browse files Browse the repository at this point in the history
Note that getLastPublished returns an Enum type.  TextWriter.writeVal should probably support Enums, which would simplify this code.
  • Loading branch information
dsmiley committed Jan 19, 2021
1 parent 5328ced commit a233ed2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 22 deletions.
7 changes: 3 additions & 4 deletions solr/CHANGES.txt
Expand Up @@ -201,13 +201,12 @@ New Features

Improvements
---------------------

* SOLR-15079: Block Collapse - Faster collapse code when groups are co-located via Block Join style nested doc indexing.
Used by default when field=_root_, or explicitly requsted for other fields via hint=block. (Joel Bernstein, hossman)
* SOLR-15081: Metrics for a core: add SolrCloud "isLeader" and "replicaState". (David Smiley)

Optimizations
---------------------
(No changes)
* SOLR-15079: Block Collapse - Faster collapse code when groups are co-located via Block Join style nested doc indexing.
Used by default when field=_root_, or explicitly requested for other fields via hint=block. (Joel Bernstein, hossman)

Bug Fixes
---------------------
Expand Down
29 changes: 11 additions & 18 deletions solr/core/src/java/org/apache/solr/core/SolrCore.java
Expand Up @@ -1203,26 +1203,19 @@ public void initializeMetrics(SolrMetricsContext parentContext, String scope) {
parentContext.gauge(() -> isClosed() ? parentContext.nullString() : getIndexDir(), true, "indexDir", Category.CORE.toString());
parentContext.gauge(() -> isClosed() ? parentContext.nullNumber() : getIndexSize(), true, "sizeInBytes", Category.INDEX.toString());
parentContext.gauge(() -> isClosed() ? parentContext.nullString() : NumberUtils.readableSize(getIndexSize()), true, "size", Category.INDEX.toString());
if (coreContainer != null) {
final CloudDescriptor cd = getCoreDescriptor().getCloudDescriptor();
if (cd != null) {
parentContext.gauge(() -> {
if (cd.getCollectionName() != null) {
return cd.getCollectionName();
} else {
return parentContext.nullString();
}
}, true, "collection", Category.CORE.toString());

parentContext.gauge(() -> {
if (cd.getShardId() != null) {
return cd.getShardId();
} else {
return parentContext.nullString();
}
}, true, "shard", Category.CORE.toString());
}
final CloudDescriptor cd = getCoreDescriptor().getCloudDescriptor();
if (cd != null) {
parentContext.gauge(cd::getCollectionName, true, "collection", Category.CORE.toString());
parentContext.gauge(cd::getShardId, true, "shard", Category.CORE.toString());
parentContext.gauge(cd::isLeader, true, "isLeader", Category.CORE.toString());
parentContext.gauge(
() -> String.valueOf(cd.getLastPublished()),
true,
"replicaState",
Category.CORE.toString());
}

// initialize disk total / free metrics
Path dataDirPath = Paths.get(dataDir);
File dataDirFile = dataDirPath.toFile();
Expand Down

0 comments on commit a233ed2

Please sign in to comment.