-
Notifications
You must be signed in to change notification settings - Fork 588
HDDS-13093. Add metrics for the cumulative state of volumes #8609
New issue
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
Merged
errose28
merged 10 commits into
apache:master
from
ptlrs:HDDS-13093-Add-metrics-to-count-volumes-by-health-state-per-datanode
Aug 19, 2025
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
242220f
HDDS-13093. Add metrics for the state of volumes
ptlrs 5505c06
HDDS-13093. Refactor volume health metrics integration in MutableVolu…
ptlrs 35392f3
HDDS-13093. Add unit tests for VolumeHealthMetrics.
ptlrs e7d89be
Merge remote-tracking branch 'upstream/master' into HDDS-13093-Add-me…
ptlrs f14c6d9
HDDS-13093. Refactor VolumeHealthMetrics instantiation with static fa…
ptlrs 3b14341
HDDS-13093. Remove TestVolumeHealthMetrics and integrate metrics asse…
ptlrs af363c1
HDDS-13093. Update metrics assertions in TestVolumeSet and TestPeriod…
ptlrs be81b44
HDDS-13093. Replace repetitive metrics assertions with assertNumVolum…
ptlrs 74325c6
HDDS-13093. Unregister metrics if volume initialization fails
ptlrs 4d4029b
HDDS-13093. Ensure volume health metrics are unregistered if initiali…
ptlrs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
109 changes: 109 additions & 0 deletions
109
...ce/src/main/java/org/apache/hadoop/ozone/container/common/volume/VolumeHealthMetrics.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,109 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one or more | ||
| * contributor license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright ownership. | ||
| * The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| * (the "License"); you may not use this file except in compliance with | ||
| * the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package org.apache.hadoop.ozone.container.common.volume; | ||
|
|
||
| import java.util.concurrent.atomic.AtomicInteger; | ||
| import org.apache.hadoop.metrics2.MetricsCollector; | ||
| import org.apache.hadoop.metrics2.MetricsInfo; | ||
| import org.apache.hadoop.metrics2.MetricsRecordBuilder; | ||
| import org.apache.hadoop.metrics2.MetricsSource; | ||
| import org.apache.hadoop.metrics2.MetricsSystem; | ||
| import org.apache.hadoop.metrics2.annotation.Metrics; | ||
| import org.apache.hadoop.metrics2.lib.DefaultMetricsSystem; | ||
| import org.apache.hadoop.metrics2.lib.Interns; | ||
| import org.apache.hadoop.metrics2.lib.MetricsRegistry; | ||
| import org.apache.hadoop.ozone.OzoneConsts; | ||
|
|
||
| /** | ||
| * This class is used to track Volume Health metrics for all volumes on a datanode. | ||
| */ | ||
| @Metrics(about = "Ozone Volume Health Metrics", | ||
| context = OzoneConsts.OZONE) | ||
| public final class VolumeHealthMetrics implements MetricsSource { | ||
|
|
||
| private static final String SOURCE_BASENAME = | ||
| VolumeHealthMetrics.class.getSimpleName(); | ||
|
|
||
| private static final MetricsInfo TOTAL_VOLUMES = | ||
| Interns.info("TotalVolumes", "Total number of volumes"); | ||
| private static final MetricsInfo HEALTHY_VOLUMES = | ||
| Interns.info("NumHealthyVolumes", "Number of healthy volumes"); | ||
| private static final MetricsInfo FAILED_VOLUMES = | ||
| Interns.info("NumFailedVolumes", "Number of failed volumes"); | ||
|
|
||
| private final MetricsRegistry registry; | ||
| private final String metricsSourceName; | ||
| private final AtomicInteger healthyVolumes; | ||
| private final AtomicInteger failedVolumes; | ||
|
|
||
| /** | ||
| * Constructor for VolumeHealthMetrics. | ||
| * | ||
| * @param volumeType Type of volumes (DATA_VOLUME, META_VOLUME, DB_VOLUME) | ||
| */ | ||
| private VolumeHealthMetrics(StorageVolume.VolumeType volumeType) { | ||
| this.healthyVolumes = new AtomicInteger(0); | ||
| this.failedVolumes = new AtomicInteger(0); | ||
| metricsSourceName = SOURCE_BASENAME + '-' + volumeType.name(); | ||
| registry = new MetricsRegistry(metricsSourceName); | ||
| } | ||
|
|
||
| /** | ||
| * Creates and registers a new VolumeHealthMetrics instance. | ||
| * | ||
| * @param volumeType Type of volumes (DATA_VOLUME, META_VOLUME, DB_VOLUME) | ||
| * @return The registered VolumeHealthMetrics instance | ||
| */ | ||
| public static VolumeHealthMetrics create(StorageVolume.VolumeType volumeType) { | ||
| MetricsSystem ms = DefaultMetricsSystem.instance(); | ||
| VolumeHealthMetrics metrics = new VolumeHealthMetrics(volumeType); | ||
| return ms.register(metrics.metricsSourceName, "Volume Health Statistics", metrics); | ||
| } | ||
|
|
||
| public void unregister() { | ||
| MetricsSystem ms = DefaultMetricsSystem.instance(); | ||
| ms.unregisterSource(metricsSourceName); | ||
| } | ||
|
|
||
| public void incrementHealthyVolumes() { | ||
| healthyVolumes.incrementAndGet(); | ||
| } | ||
|
|
||
| public void incrementFailedVolumes() { | ||
| failedVolumes.incrementAndGet(); | ||
| } | ||
|
|
||
| public void decrementHealthyVolumes() { | ||
| healthyVolumes.decrementAndGet(); | ||
| } | ||
|
|
||
| public void decrementFailedVolumes() { | ||
| failedVolumes.decrementAndGet(); | ||
| } | ||
|
|
||
| @Override | ||
| public void getMetrics(MetricsCollector collector, boolean all) { | ||
| MetricsRecordBuilder builder = collector.addRecord(metricsSourceName); | ||
| registry.snapshot(builder, all); | ||
|
|
||
| builder | ||
| .addGauge(TOTAL_VOLUMES, healthyVolumes.get() + failedVolumes.get()) | ||
| .addGauge(HEALTHY_VOLUMES, healthyVolumes.get()) | ||
| .addGauge(FAILED_VOLUMES, failedVolumes.get()); | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.