org.apache.hadoop.metrics2.lib.MutableCounterLong.value()

Here are the examples of the java api org.apache.hadoop.metrics2.lib.MutableCounterLong.value() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

121 Examples 7

19 Source : RetryCacheMetrics.java
with Apache License 2.0
from NJUJYB

public long getCacheUpdated() {
    return cacheUpdated.value();
}

19 Source : RetryCacheMetrics.java
with Apache License 2.0
from NJUJYB

public long getCacheCleared() {
    return cacheCleared.value();
}

19 Source : RetryCacheMetrics.java
with Apache License 2.0
from NJUJYB

public long getCacheHit() {
    return cacheHit.value();
}

19 Source : SharedCacheUploaderMetrics.java
with Apache License 2.0
from naver

public long getAcceptedUploads() {
    return acceptedUploads.value();
}

19 Source : SharedCacheUploaderMetrics.java
with Apache License 2.0
from naver

public long getRejectUploads() {
    return rejectedUploads.value();
}

19 Source : ClientSCMMetrics.java
with Apache License 2.0
from naver

public long getCacheMisses() {
    return cacheMisses.value();
}

19 Source : ClientSCMMetrics.java
with Apache License 2.0
from naver

public long getCacheReleases() {
    return cacheReleases.value();
}

19 Source : ClientSCMMetrics.java
with Apache License 2.0
from naver

public long getCacheHits() {
    return cacheHits.value();
}

19 Source : CleanerMetrics.java
with Apache License 2.0
from naver

public long getTotalFileErrors() {
    return totalFileErrors.value();
}

19 Source : CleanerMetrics.java
with Apache License 2.0
from naver

public long getTotalProcessedFiles() {
    return totalProcessedFiles.value();
}

19 Source : CleanerMetrics.java
with Apache License 2.0
from naver

public long getTotalDeletedFiles() {
    return totalDeletedFiles.value();
}

19 Source : OzoneManagerDoubleBufferMetrics.java
with Apache License 2.0
from apache

public long getTotalNumOfFlushOperations() {
    return totalNumOfFlushOperations.value();
}

19 Source : OzoneManagerDoubleBufferMetrics.java
with Apache License 2.0
from apache

public long getMaxNumberOfTransactionsFlushedInOneIteration() {
    return maxNumberOfTransactionsFlushedInOneIteration.value();
}

19 Source : OzoneManagerDoubleBufferMetrics.java
with Apache License 2.0
from apache

public long getTotalNumOfFlushedTransactions() {
    return totalNumOfFlushedTransactions.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumOpenKeysSubmittedForDeletion() {
    return numOpenKeysSubmittedForDeletion.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumKeyDeletesFails() {
    return numKeyDeleteFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumKeyRenameFails() {
    return numKeyRenameFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumAbortMultipartUploadFails() {
    return numAbortMultipartUploadFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumKeyRenames() {
    return numKeyRenames.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumKeyDeletes() {
    return numKeyDeletes.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumOpenKeyDeleteRequests() {
    return numOpenKeyDeleteRequests.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumInitiateMultipartUploadFails() {
    return numInitiateMultipartUploadFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumListS3Buckets() {
    return numBucketS3Lists.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumVolumeListFails() {
    return numVolumeListFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumTrashRenames() {
    return numTrashRenames.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumRemoveAcl() {
    return numRemoveAcl.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumKeyLookups() {
    return numKeyLookup.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumKeyCommits() {
    return numKeyCommits.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumBucketCreateFails() {
    return numBucketCreateFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumVolumeDeleteFails() {
    return numVolumeDeleteFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumFSOps() {
    return numFSOps.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumBucketUpdates() {
    return numBucketUpdates.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumOpenKeyDeleteRequestFails() {
    return numOpenKeyDeleteRequestFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumAddAcl() {
    return numAddAcl.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumVolumeUpdateFails() {
    return numVolumeUpdateFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumTrashDeletes() {
    return numTrashDeletes.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumVolumeCheckAccessFails() {
    return numVolumeCheckAccessFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumBlockAllocates() {
    return numBlockAllocations.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumVolumeCheckAccesses() {
    return numVolumeCheckAccesses.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumGetServiceLists() {
    return numGetServiceLists.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumTrashKeyLists() {
    return numTrashKeyLists.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumTrashFilesRenames() {
    return numTrashFilesRenames.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumVolumeInfos() {
    return numVolumeInfos.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumKeyLists() {
    return numKeyLists.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumVolumeInfoFails() {
    return numVolumeInfoFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumBucketDeleteFails() {
    return numBucketDeleteFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumBuckets() {
    return numBuckets.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumInitiateMultipartUploads() {
    return numInitiateMultipartUploads.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

@VisibleForTesting
public long getNumVolumeCreateFails() {
    return numVolumeCreateFails.value();
}

19 Source : OMMetrics.java
with Apache License 2.0
from apache

public long getNumKeys() {
    return numKeys.value();
}

See More Examples