com.gemstone.gemfire.management.DiskMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gemfire-core Show documentation
Show all versions of gemfire-core Show documentation
SnappyData store based off Pivotal GemFireXD
/*
* Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
*
* Licensed 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. See accompanying
* LICENSE file.
*/
package com.gemstone.gemfire.management;
import com.gemstone.gemfire.cache.DiskStore;
/**
* Composite data type used to distribute metrics for a {@link DiskStore}.
*
* @author rishim
* @since 7.0
*/
public class DiskMetrics {
private float diskReadsRate;
private float diskWritesRate;
private int totalBackupInProgress;
private int totalBackupCompleted;
private long totalBytesOnDisk;
private long diskFlushAvgLatency;
/**
* Returns the average number of disk reads per second.
*/
public float getDiskReadsRate() {
return diskReadsRate;
}
/**
* Returns the average number of disk writes per second.
*/
public float getDiskWritesRate() {
return diskWritesRate;
}
/**
* Returns the number of backups currently in progress on this DiskStore.
*/
public int getTotalBackupInProgress() {
return totalBackupInProgress;
}
/**
* Returns the number of backups of this DiskStore that have been completed.
*/
public int getTotalBackupCompleted() {
return totalBackupCompleted;
}
/**
* Returns the total number of bytes of space that have been used.
*/
public long getTotalBytesOnDisk() {
return totalBytesOnDisk;
}
/**
* Returns the flush time average latency.
*/
public long getDiskFlushAvgLatency() {
return diskFlushAvgLatency;
}
/**
* Sets the average number of disk reads per second.
*/
public void setDiskReadsRate(float diskReadsRate) {
this.diskReadsRate = diskReadsRate;
}
/**
* Sets the average number of disk writes per second.
*/
public void setDiskWritesRate(float diskWritesRate) {
this.diskWritesRate = diskWritesRate;
}
/**
* Sets the number of backups currently in progress on this DiskStore.
*/
public void setTotalBackupInProgress(int totalBackupInProgress) {
this.totalBackupInProgress = totalBackupInProgress;
}
/**
* Sets the number of backups of this DiskStore that have been completed.
*/
public void setTotalBackupCompleted(int totalBackupCompleted) {
this.totalBackupCompleted = totalBackupCompleted;
}
/**
* Sets the total number of bytes of space that have been used.
*/
public void setTotalBytesOnDisk(long totalBytesOnDisk) {
this.totalBytesOnDisk = totalBytesOnDisk;
}
/**
* Sets the flush time average latency.
*/
public void setDiskFlushAvgLatency(long diskFlushAvgLatency) {
this.diskFlushAvgLatency = diskFlushAvgLatency;
}
}