Class BlobStoreStats
- java.lang.Object
-
- javax.management.StandardMBean
-
- org.apache.jackrabbit.oak.commons.jmx.AnnotatedStandardMBean
-
- org.apache.jackrabbit.oak.plugins.blob.BlobStoreStats
-
- All Implemented Interfaces:
DynamicMBean,MBeanRegistration,ExtendedBlobStatsCollector,BlobStatsCollector,BlobStoreStatsMBean
public class BlobStoreStats extends AnnotatedStandardMBean implements BlobStoreStatsMBean, ExtendedBlobStatsCollector
-
-
Field Summary
-
Fields inherited from interface org.apache.jackrabbit.oak.spi.blob.stats.BlobStoreStatsMBean
TYPE
-
Fields inherited from interface org.apache.jackrabbit.oak.plugins.blob.ExtendedBlobStatsCollector
NOOP
-
-
Constructor Summary
Constructors Constructor Description BlobStoreStats(@NotNull StatisticsProvider sp)
-
Method Summary
-
Methods inherited from class org.apache.jackrabbit.oak.commons.jmx.AnnotatedStandardMBean
getDescription, getDescription, getDescription, getDescription, getImpact, getParameterName
-
Methods inherited from class javax.management.StandardMBean
cacheMBeanInfo, getAttribute, getAttributes, getCachedMBeanInfo, getClassName, getConstructors, getDescription, getDescription, getDescription, getImplementation, getImplementationClass, getMBeanInfo, getMBeanInterface, getParameterName, invoke, postDeregister, postRegister, preDeregister, preRegister, setAttribute, setAttributes, setImplementation
-
-
-
-
Constructor Detail
-
BlobStoreStats
public BlobStoreStats(@NotNull @NotNull StatisticsProvider sp)
-
-
Method Detail
-
uploaded
public void uploaded(long timeTaken, TimeUnit unit, long size)Description copied from interface:BlobStatsCollectorCalled when a binary content is written to BlobStore- Specified by:
uploadedin interfaceBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time takensize- size of binary content being written
-
uploadCompleted
public void uploadCompleted(String blobId)
Description copied from interface:BlobStatsCollectorInvoked when upload for a binary file get completed. In case of chunked BlobStore this invoked when all the chunks have been uploaded- Specified by:
uploadCompletedin interfaceBlobStatsCollector- Parameters:
blobId- id of the blob which got uploaded. Even in case of chunked blobStores its the id of main blob
-
uploadFailed
public void uploadFailed()
Description copied from interface:BlobStatsCollectorInvoked when an upload of a binary fails.- Specified by:
uploadFailedin interfaceBlobStatsCollector
-
downloaded
public void downloaded(String blobId, long timeTaken, TimeUnit unit, long size)
Description copied from interface:BlobStatsCollectorCalled when a binary content is read from BlobStore- Specified by:
downloadedin interfaceBlobStatsCollector- Parameters:
blobId- id of blob whose content are being read. For BlobStore which break up file in chunks it would be chunkIdtimeTaken- time taken to perform the operationunit- unit of time takensize- size of binary content being read
-
downloadCompleted
public void downloadCompleted(String blobId)
Description copied from interface:BlobStatsCollectorInvoked when download for a binary file get completed. In case of chunked BlobStore this invoked when all the chunks have been downloaded- Specified by:
downloadCompletedin interfaceBlobStatsCollector- Parameters:
blobId- id of the blob which got downloaded. Even in case of chunked blobStores its the id of main blob
-
downloadFailed
public void downloadFailed(String blobId)
Description copied from interface:BlobStatsCollectorCalled when an attempt to download a binary file fails.- Specified by:
downloadFailedin interfaceBlobStatsCollector- Parameters:
blobId- id of the blob for which the download failed
-
deleted
public void deleted(String blobId, long timeTaken, TimeUnit unit)
Description copied from interface:BlobStatsCollectorCalled when a binary is deleted from the BlobStore- Specified by:
deletedin interfaceBlobStatsCollector- Parameters:
blobId- id of blob being deletedtimeTaken- time taken to perform the deleteunit- unit of time taken
-
deleteCompleted
public void deleteCompleted(String blobId)
Description copied from interface:BlobStatsCollectorCalled when deletion of a binary is completed.- Specified by:
deleteCompletedin interfaceBlobStatsCollector- Parameters:
blobId- id of the blob which was deleted
-
deleteFailed
public void deleteFailed()
Description copied from interface:BlobStatsCollectorCalled when deletion of a binary fails.- Specified by:
deleteFailedin interfaceBlobStatsCollector
-
deletedAllOlderThan
public void deletedAllOlderThan(long timeTaken, TimeUnit unit, long min)Description copied from interface:BlobStatsCollectorCalled when deleting binaries older than a specified date, viaDataStore.deleteAllOlderThan(long).- Specified by:
deletedAllOlderThanin interfaceBlobStatsCollector- Parameters:
timeTaken- time taken to perform the deletionunit- unit of time takenmin- time used for determining what to delete - older than this time gets deleted
-
deleteAllOlderThanCompleted
public void deleteAllOlderThanCompleted(int deleteCount)
Description copied from interface:BlobStatsCollectorCalled whenDataStore.deleteAllOlderThan(long)is completed.- Specified by:
deleteAllOlderThanCompletedin interfaceBlobStatsCollector- Parameters:
deleteCount- count of records deleted
-
deleteAllOlderThanFailed
public void deleteAllOlderThanFailed(long min)
Description copied from interface:BlobStatsCollectorCalled whenDataStore.deleteAllOlderThan(long)fails.- Specified by:
deleteAllOlderThanFailedin interfaceBlobStatsCollector- Parameters:
min- time used for determining what to delete
-
recordAdded
public void recordAdded(long timeTaken, TimeUnit unit, long size)Description copied from interface:BlobStatsCollectorCalled when a binary is added viaDataStore.addRecord(InputStream).- Specified by:
recordAddedin interfaceBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time takensize- size of binary content being read
-
addRecordCompleted
public void addRecordCompleted(String blobId)
Description copied from interface:BlobStatsCollectorCalled when a call toDataStore.addRecord(InputStream)is completed.- Specified by:
addRecordCompletedin interfaceBlobStatsCollector- Parameters:
blobId- id of the record which was added
-
addRecordFailed
public void addRecordFailed()
Description copied from interface:BlobStatsCollectorCalled when a call toDataStore.addRecord(InputStream)fails.- Specified by:
addRecordFailedin interfaceBlobStatsCollector
-
getRecordCalled
public void getRecordCalled(long timeTaken, TimeUnit unit, long size)Description copied from interface:BlobStatsCollectorCalled when aDataRecordis retrieved viaDataStore.getRecord(DataIdentifier).- Specified by:
getRecordCalledin interfaceBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time takensize- size of the binary
-
getRecordCompleted
public void getRecordCompleted(String blobId)
Description copied from interface:BlobStatsCollectorCalled when a call toDataStore.getRecord(DataIdentifier)is completed.- Specified by:
getRecordCompletedin interfaceBlobStatsCollector- Parameters:
blobId- id of the record retrieved
-
getRecordFailed
public void getRecordFailed(String blobId)
Description copied from interface:BlobStatsCollectorCalled when a call toDataStore.getRecord(DataIdentifier)fails.- Specified by:
getRecordFailedin interfaceBlobStatsCollector- Parameters:
blobId- id of the record
-
getRecordIfStoredCalled
public void getRecordIfStoredCalled(long timeTaken, TimeUnit unit, long size)Description copied from interface:BlobStatsCollectorCalled when aDataRecordis retrieved viaDataStore.getRecordIfStored(DataIdentifier).- Specified by:
getRecordIfStoredCalledin interfaceBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time takensize- size of the binary
-
getRecordIfStoredCompleted
public void getRecordIfStoredCompleted(String blobId)
Description copied from interface:BlobStatsCollectorCalled when a call toDataStore.getRecordIfStored(DataIdentifier)is completed.- Specified by:
getRecordIfStoredCompletedin interfaceBlobStatsCollector- Parameters:
blobId- id of the record retrieved
-
getRecordIfStoredFailed
public void getRecordIfStoredFailed(String blobId)
Description copied from interface:BlobStatsCollectorCalled when a call toDataStore.getRecordIfStored(DataIdentifier)fails.- Specified by:
getRecordIfStoredFailedin interfaceBlobStatsCollector- Parameters:
blobId- id of the record
-
getRecordFromReferenceCalled
public void getRecordFromReferenceCalled(long timeTaken, TimeUnit unit, long size)Description copied from interface:BlobStatsCollectorCalled when aDataRecordis retrieved viaDataStore.getRecordFromReference(String).- Specified by:
getRecordFromReferenceCalledin interfaceBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time takensize- size of the binary
-
getRecordFromReferenceCompleted
public void getRecordFromReferenceCompleted(String reference)
Description copied from interface:BlobStatsCollectorCalled when a call toDataStore.getRecordFromReference(String)is completed.- Specified by:
getRecordFromReferenceCompletedin interfaceBlobStatsCollector- Parameters:
reference- reference of the record retrieved
-
getRecordFromReferenceFailed
public void getRecordFromReferenceFailed(String reference)
Description copied from interface:BlobStatsCollectorCalled when a call toDataStore.getRecordFromReference(String)fails.- Specified by:
getRecordFromReferenceFailedin interfaceBlobStatsCollector- Parameters:
reference- reference of the record
-
getRecordForIdCalled
public void getRecordForIdCalled(long timeTaken, TimeUnit unit, long size)Description copied from interface:ExtendedBlobStatsCollectorCalled when aDataRecordis retrieved via a call toSharedDataStore.getRecordForId(DataIdentifier).- Specified by:
getRecordForIdCalledin interfaceExtendedBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time takensize- size of the binary
-
getRecordForIdCompleted
public void getRecordForIdCompleted(String blobId)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.getRecordForId(DataIdentifier)is completed- Specified by:
getRecordForIdCompletedin interfaceExtendedBlobStatsCollector- Parameters:
blobId- id of the record retrieved
-
getRecordForIdFailed
public void getRecordForIdFailed(String blobId)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.getRecordForId(DataIdentifier)fails- Specified by:
getRecordForIdFailedin interfaceExtendedBlobStatsCollector- Parameters:
blobId- id of the record
-
getAllRecordsCalled
public void getAllRecordsCalled(long timeTaken, TimeUnit unit)Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.getAllRecords()is made- Specified by:
getAllRecordsCalledin interfaceExtendedBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time taken
-
getAllRecordsCompleted
public void getAllRecordsCompleted()
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.getAllRecords()is completed- Specified by:
getAllRecordsCompletedin interfaceExtendedBlobStatsCollector
-
getAllIdentifiersCalled
public void getAllIdentifiersCalled(long timeTaken, TimeUnit unit)Description copied from interface:BlobStatsCollectorCalled whenDataStore.getAllIdentifiers()is called.- Specified by:
getAllIdentifiersCalledin interfaceBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time taken
-
getAllIdentifiersCompleted
public void getAllIdentifiersCompleted()
Description copied from interface:BlobStatsCollectorCalled whenDataStore.getAllIdentifiers()is completed.- Specified by:
getAllIdentifiersCompletedin interfaceBlobStatsCollector
-
getAllIdentifiersFailed
public void getAllIdentifiersFailed()
Description copied from interface:BlobStatsCollectorCalled whenDataStore.getAllIdentifiers()fails.- Specified by:
getAllIdentifiersFailedin interfaceBlobStatsCollector
-
metadataRecordAdded
public void metadataRecordAdded(long timeTaken, TimeUnit unit)Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.addMetadataRecord(File, String)is made- Specified by:
metadataRecordAddedin interfaceExtendedBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time taken
-
addMetadataRecordCompleted
public void addMetadataRecordCompleted(String name)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.addMetadataRecord(File, String)is completed- Specified by:
addMetadataRecordCompletedin interfaceExtendedBlobStatsCollector- Parameters:
name- name of the metadata record added
-
addMetadataRecordFailed
public void addMetadataRecordFailed(String name)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.addMetadataRecord(File, String)fails- Specified by:
addMetadataRecordFailedin interfaceExtendedBlobStatsCollector- Parameters:
name- name of the metadata record
-
getMetadataRecordCalled
public void getMetadataRecordCalled(long timeTaken, TimeUnit unit)Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.getMetadataRecord(String)is made- Specified by:
getMetadataRecordCalledin interfaceExtendedBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time taken
-
getMetadataRecordCompleted
public void getMetadataRecordCompleted(String name)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.getMetadataRecord(String)is completed- Specified by:
getMetadataRecordCompletedin interfaceExtendedBlobStatsCollector- Parameters:
name- name of the metadata record retrieved
-
getMetadataRecordFailed
public void getMetadataRecordFailed(String name)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.getMetadataRecord(String)fails- Specified by:
getMetadataRecordFailedin interfaceExtendedBlobStatsCollector- Parameters:
name- name of the metadata record
-
getAllMetadataRecordsCalled
public void getAllMetadataRecordsCalled(long timeTaken, TimeUnit unit)Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.getAllMetadataRecords(String)is made- Specified by:
getAllMetadataRecordsCalledin interfaceExtendedBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time taken
-
getAllMetadataRecordsCompleted
public void getAllMetadataRecordsCompleted(String prefix)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.getAllMetadataRecords(String)is completed- Specified by:
getAllMetadataRecordsCompletedin interfaceExtendedBlobStatsCollector- Parameters:
prefix- prefix of the metadata records retrieved
-
getAllMetadataRecordsFailed
public void getAllMetadataRecordsFailed(String prefix)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.getAllMetadataRecords(String)fails- Specified by:
getAllMetadataRecordsFailedin interfaceExtendedBlobStatsCollector- Parameters:
prefix- prefix of the metadata records
-
metadataRecordExistsCalled
public void metadataRecordExistsCalled(long timeTaken, TimeUnit unit)Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.metadataRecordExists(String)is made- Specified by:
metadataRecordExistsCalledin interfaceExtendedBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time taken
-
metadataRecordExistsCompleted
public void metadataRecordExistsCompleted(String name)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.metadataRecordExists(String)is completed- Specified by:
metadataRecordExistsCompletedin interfaceExtendedBlobStatsCollector- Parameters:
name- name of the metadata record checked
-
metadataRecordExistsFailed
public void metadataRecordExistsFailed(String name)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.metadataRecordExists(String)fails- Specified by:
metadataRecordExistsFailedin interfaceExtendedBlobStatsCollector- Parameters:
name- name of the metadata record
-
metadataRecordDeleted
public void metadataRecordDeleted(long timeTaken, TimeUnit unit)Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.deleteMetadataRecord(String)is made- Specified by:
metadataRecordDeletedin interfaceExtendedBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time taken
-
deleteMetadataRecordCompleted
public void deleteMetadataRecordCompleted(String name)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.deleteMetadataRecord(String)is completed- Specified by:
deleteMetadataRecordCompletedin interfaceExtendedBlobStatsCollector- Parameters:
name- name of the metadata record deleted
-
deleteMetadataRecordFailed
public void deleteMetadataRecordFailed(String name)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.deleteMetadataRecord(String)fails- Specified by:
deleteMetadataRecordFailedin interfaceExtendedBlobStatsCollector- Parameters:
name- name of the metadata record
-
allMetadataRecordsDeleted
public void allMetadataRecordsDeleted(long timeTaken, TimeUnit unit)Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.deleteAllMetadataRecords(String)is made- Specified by:
allMetadataRecordsDeletedin interfaceExtendedBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time taken
-
deleteAllMetadataRecordsCompleted
public void deleteAllMetadataRecordsCompleted(String prefix)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.deleteAllMetadataRecords(String)is made- Specified by:
deleteAllMetadataRecordsCompletedin interfaceExtendedBlobStatsCollector- Parameters:
prefix- prefix of the metadata records deleted
-
deleteAllMetadataRecordsFailed
public void deleteAllMetadataRecordsFailed(String prefix)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toSharedDataStore.deleteAllMetadataRecords(String)is made- Specified by:
deleteAllMetadataRecordsFailedin interfaceExtendedBlobStatsCollector- Parameters:
prefix- prefix of the metadata records
-
initiateBlobUpload
public void initiateBlobUpload(long timeTaken, TimeUnit unit, long maxSize, int maxUris)Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toBlobAccessProvider.initiateBlobUpload(long, int)is made- Specified by:
initiateBlobUploadin interfaceExtendedBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time takenmaxSize- size of binary to be uploadedmaxUris- max number of uris requested
-
initiateBlobUploadCompleted
public void initiateBlobUploadCompleted()
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toBlobAccessProvider.initiateBlobUpload(long, int)is completed- Specified by:
initiateBlobUploadCompletedin interfaceExtendedBlobStatsCollector
-
initiateBlobUploadFailed
public void initiateBlobUploadFailed()
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toBlobAccessProvider.initiateBlobUpload(long, int)fails- Specified by:
initiateBlobUploadFailedin interfaceExtendedBlobStatsCollector
-
completeBlobUpload
public void completeBlobUpload(long timeTaken, TimeUnit unit)Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toBlobAccessProvider.completeBlobUpload(String)is made- Specified by:
completeBlobUploadin interfaceExtendedBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time taken
-
completeBlobUploadCompleted
public void completeBlobUploadCompleted(String id)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toBlobAccessProvider.completeBlobUpload(String)is completed- Specified by:
completeBlobUploadCompletedin interfaceExtendedBlobStatsCollector- Parameters:
id- identifier of uploaded blob
-
completeBlobUploadFailed
public void completeBlobUploadFailed()
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toBlobAccessProvider.completeBlobUpload(String)fails- Specified by:
completeBlobUploadFailedin interfaceExtendedBlobStatsCollector
-
getDownloadURICalled
public void getDownloadURICalled(long timeTaken, TimeUnit unit, String id)Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toBlobAccessProvider.getDownloadURI(Blob, BlobDownloadOptions)is made- Specified by:
getDownloadURICalledin interfaceExtendedBlobStatsCollector- Parameters:
timeTaken- time taken to perform the operationunit- unit of time takenid- identifier of blob to be downloaded
-
getDownloadURICompleted
public void getDownloadURICompleted(String uri)
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toBlobAccessProvider.getDownloadURI(Blob, BlobDownloadOptions)is completed- Specified by:
getDownloadURICompletedin interfaceExtendedBlobStatsCollector- Parameters:
uri- the uri generated for downloading
-
getDownloadURIFailed
public void getDownloadURIFailed()
Description copied from interface:ExtendedBlobStatsCollectorCalled when a call toBlobAccessProvider.getDownloadURI(Blob, BlobDownloadOptions)fails- Specified by:
getDownloadURIFailedin interfaceExtendedBlobStatsCollector
-
getUploadTotalSize
public long getUploadTotalSize()
- Specified by:
getUploadTotalSizein interfaceBlobStoreStatsMBean
-
getUploadCount
public long getUploadCount()
- Specified by:
getUploadCountin interfaceBlobStoreStatsMBean
-
getUploadTotalSeconds
public long getUploadTotalSeconds()
- Specified by:
getUploadTotalSecondsin interfaceBlobStoreStatsMBean
-
getUploadErrorCount
public long getUploadErrorCount()
- Specified by:
getUploadErrorCountin interfaceBlobStoreStatsMBean
-
getDownloadTotalSize
public long getDownloadTotalSize()
- Specified by:
getDownloadTotalSizein interfaceBlobStoreStatsMBean
-
getDownloadCount
public long getDownloadCount()
- Specified by:
getDownloadCountin interfaceBlobStoreStatsMBean
-
getDownloadTotalSeconds
public long getDownloadTotalSeconds()
- Specified by:
getDownloadTotalSecondsin interfaceBlobStoreStatsMBean
-
getDownloadErrorCount
public long getDownloadErrorCount()
- Specified by:
getDownloadErrorCountin interfaceBlobStoreStatsMBean
-
getAddRecordTotalSize
public long getAddRecordTotalSize()
- Specified by:
getAddRecordTotalSizein interfaceBlobStoreStatsMBean
-
getAddRecordCount
public long getAddRecordCount()
- Specified by:
getAddRecordCountin interfaceBlobStoreStatsMBean
-
getDeleteCount
public long getDeleteCount()
- Specified by:
getDeleteCountin interfaceBlobStoreStatsMBean
-
getDeleteErrorCount
public long getDeleteErrorCount()
- Specified by:
getDeleteErrorCountin interfaceBlobStoreStatsMBean
-
getDeleteByDateCount
public long getDeleteByDateCount()
- Specified by:
getDeleteByDateCountin interfaceBlobStoreStatsMBean
-
getDeleteByDateErrorCount
public long getDeleteByDateErrorCount()
- Specified by:
getDeleteByDateErrorCountin interfaceBlobStoreStatsMBean
-
getGetRecordCount
public long getGetRecordCount()
- Specified by:
getGetRecordCountin interfaceBlobStoreStatsMBean
-
getGetRecordErrorCount
public long getGetRecordErrorCount()
- Specified by:
getGetRecordErrorCountin interfaceBlobStoreStatsMBean
-
getGetRecordIfStoredCount
public long getGetRecordIfStoredCount()
- Specified by:
getGetRecordIfStoredCountin interfaceBlobStoreStatsMBean
-
getGetRecordIfStoredErrorCount
public long getGetRecordIfStoredErrorCount()
- Specified by:
getGetRecordIfStoredErrorCountin interfaceBlobStoreStatsMBean
-
getGetRecordFromReferenceCount
public long getGetRecordFromReferenceCount()
- Specified by:
getGetRecordFromReferenceCountin interfaceBlobStoreStatsMBean
-
getGetRecordFromReferenceErrorCount
public long getGetRecordFromReferenceErrorCount()
- Specified by:
getGetRecordFromReferenceErrorCountin interfaceBlobStoreStatsMBean
-
getGetRecordForIdCount
public long getGetRecordForIdCount()
- Specified by:
getGetRecordForIdCountin interfaceBlobStoreStatsMBean
-
getGetRecordForIdErrorCount
public long getGetRecordForIdErrorCount()
- Specified by:
getGetRecordForIdErrorCountin interfaceBlobStoreStatsMBean
-
getGetAllRecordsCount
public long getGetAllRecordsCount()
- Specified by:
getGetAllRecordsCountin interfaceBlobStoreStatsMBean
-
getListIdsCount
public long getListIdsCount()
- Specified by:
getListIdsCountin interfaceBlobStoreStatsMBean
-
getListIdsErrorCount
public long getListIdsErrorCount()
- Specified by:
getListIdsErrorCountin interfaceBlobStoreStatsMBean
-
getAddMetadataRecordCount
public long getAddMetadataRecordCount()
- Specified by:
getAddMetadataRecordCountin interfaceBlobStoreStatsMBean
-
getAddMetadataRecordErrorCount
public long getAddMetadataRecordErrorCount()
- Specified by:
getAddMetadataRecordErrorCountin interfaceBlobStoreStatsMBean
-
getGetMetadataRecordCount
public long getGetMetadataRecordCount()
- Specified by:
getGetMetadataRecordCountin interfaceBlobStoreStatsMBean
-
getGetMetadataRecordErrorCount
public long getGetMetadataRecordErrorCount()
- Specified by:
getGetMetadataRecordErrorCountin interfaceBlobStoreStatsMBean
-
getGetAllMetadataRecordsCount
public long getGetAllMetadataRecordsCount()
- Specified by:
getGetAllMetadataRecordsCountin interfaceBlobStoreStatsMBean
-
getGetAllMetadataRecordsErrorCount
public long getGetAllMetadataRecordsErrorCount()
- Specified by:
getGetAllMetadataRecordsErrorCountin interfaceBlobStoreStatsMBean
-
getMetadataRecordExistsCount
public long getMetadataRecordExistsCount()
- Specified by:
getMetadataRecordExistsCountin interfaceBlobStoreStatsMBean
-
getMetadataRecordExistsErrorCount
public long getMetadataRecordExistsErrorCount()
- Specified by:
getMetadataRecordExistsErrorCountin interfaceBlobStoreStatsMBean
-
getDeleteMetadataRecordCount
public long getDeleteMetadataRecordCount()
- Specified by:
getDeleteMetadataRecordCountin interfaceBlobStoreStatsMBean
-
getDeleteMetadataRecordErrorCount
public long getDeleteMetadataRecordErrorCount()
- Specified by:
getDeleteMetadataRecordErrorCountin interfaceBlobStoreStatsMBean
-
getDeleteAllMetadataRecordsCount
public long getDeleteAllMetadataRecordsCount()
- Specified by:
getDeleteAllMetadataRecordsCountin interfaceBlobStoreStatsMBean
-
getDeleteAllMetadataRecordsErrorCount
public long getDeleteAllMetadataRecordsErrorCount()
- Specified by:
getDeleteAllMetadataRecordsErrorCountin interfaceBlobStoreStatsMBean
-
getInitBlobUploadCount
public long getInitBlobUploadCount()
- Specified by:
getInitBlobUploadCountin interfaceBlobStoreStatsMBean
-
getInitBlobUploadErrorCount
public long getInitBlobUploadErrorCount()
- Specified by:
getInitBlobUploadErrorCountin interfaceBlobStoreStatsMBean
-
getCompleteBlobUploadCount
public long getCompleteBlobUploadCount()
- Specified by:
getCompleteBlobUploadCountin interfaceBlobStoreStatsMBean
-
getCompleteBlobUploadErrorCount
public long getCompleteBlobUploadErrorCount()
- Specified by:
getCompleteBlobUploadErrorCountin interfaceBlobStoreStatsMBean
-
getGetBlobDownloadURICount
public long getGetBlobDownloadURICount()
- Specified by:
getGetBlobDownloadURICountin interfaceBlobStoreStatsMBean
-
getGetBlobDownloadURIErrorCount
public long getGetBlobDownloadURIErrorCount()
- Specified by:
getGetBlobDownloadURIErrorCountin interfaceBlobStoreStatsMBean
-
blobStoreInfoAsString
public String blobStoreInfoAsString()
- Specified by:
blobStoreInfoAsStringin interfaceBlobStoreStatsMBean
-
getUploadSizeHistory
public CompositeData getUploadSizeHistory()
- Specified by:
getUploadSizeHistoryin interfaceBlobStoreStatsMBean
-
getUploadRateHistory
public CompositeData getUploadRateHistory()
- Specified by:
getUploadRateHistoryin interfaceBlobStoreStatsMBean
-
getUploadCountHistory
public CompositeData getUploadCountHistory()
- Specified by:
getUploadCountHistoryin interfaceBlobStoreStatsMBean
-
getUploadErrorCountHistory
public CompositeData getUploadErrorCountHistory()
- Specified by:
getUploadErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getDownloadSizeHistory
public CompositeData getDownloadSizeHistory()
- Specified by:
getDownloadSizeHistoryin interfaceBlobStoreStatsMBean
-
getDownloadRateHistory
public CompositeData getDownloadRateHistory()
- Specified by:
getDownloadRateHistoryin interfaceBlobStoreStatsMBean
-
getDownloadCountHistory
public CompositeData getDownloadCountHistory()
- Specified by:
getDownloadCountHistoryin interfaceBlobStoreStatsMBean
-
getDownloadErrorCountHistory
public CompositeData getDownloadErrorCountHistory()
- Specified by:
getDownloadErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getDeleteCountHistory
public CompositeData getDeleteCountHistory()
- Specified by:
getDeleteCountHistoryin interfaceBlobStoreStatsMBean
-
getDeleteTimeHistory
public CompositeData getDeleteTimeHistory()
- Specified by:
getDeleteTimeHistoryin interfaceBlobStoreStatsMBean
-
getDeleteErrorCountHistory
public CompositeData getDeleteErrorCountHistory()
- Specified by:
getDeleteErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getDeleteByDateCountHistory
public CompositeData getDeleteByDateCountHistory()
- Specified by:
getDeleteByDateCountHistoryin interfaceBlobStoreStatsMBean
-
getDeleteByDateTimeHistory
public CompositeData getDeleteByDateTimeHistory()
- Specified by:
getDeleteByDateTimeHistoryin interfaceBlobStoreStatsMBean
-
getDeleteByDateErrorCountHistory
public CompositeData getDeleteByDateErrorCountHistory()
- Specified by:
getDeleteByDateErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getAddRecordCountHistory
public CompositeData getAddRecordCountHistory()
- Specified by:
getAddRecordCountHistoryin interfaceBlobStoreStatsMBean
-
getAddRecordErrorCountHistory
public CompositeData getAddRecordErrorCountHistory()
- Specified by:
getAddRecordErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getAddRecordSizeHistory
public CompositeData getAddRecordSizeHistory()
- Specified by:
getAddRecordSizeHistoryin interfaceBlobStoreStatsMBean
-
getAddRecordRateHistory
public CompositeData getAddRecordRateHistory()
- Specified by:
getAddRecordRateHistoryin interfaceBlobStoreStatsMBean
-
getAddRecordErrorCount
public long getAddRecordErrorCount()
- Specified by:
getAddRecordErrorCountin interfaceBlobStoreStatsMBean
-
getGetRecordCountHistory
public CompositeData getGetRecordCountHistory()
- Specified by:
getGetRecordCountHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordErrorCountHistory
public CompositeData getGetRecordErrorCountHistory()
- Specified by:
getGetRecordErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordTimeHistory
public CompositeData getGetRecordTimeHistory()
- Specified by:
getGetRecordTimeHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordSizeHistory
public CompositeData getGetRecordSizeHistory()
- Specified by:
getGetRecordSizeHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordRateHistory
public CompositeData getGetRecordRateHistory()
- Specified by:
getGetRecordRateHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordIfStoredCountHistory
public CompositeData getGetRecordIfStoredCountHistory()
- Specified by:
getGetRecordIfStoredCountHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordIfStoredErrorCountHistory
public CompositeData getGetRecordIfStoredErrorCountHistory()
- Specified by:
getGetRecordIfStoredErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordIfStoredTimeHistory
public CompositeData getGetRecordIfStoredTimeHistory()
- Specified by:
getGetRecordIfStoredTimeHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordIfStoredSizeHistory
public CompositeData getGetRecordIfStoredSizeHistory()
- Specified by:
getGetRecordIfStoredSizeHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordIfStoredRateHistory
public CompositeData getGetRecordIfStoredRateHistory()
- Specified by:
getGetRecordIfStoredRateHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordFromReferenceCountHistory
public CompositeData getGetRecordFromReferenceCountHistory()
- Specified by:
getGetRecordFromReferenceCountHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordFromReferenceErrorCountHistory
public CompositeData getGetRecordFromReferenceErrorCountHistory()
- Specified by:
getGetRecordFromReferenceErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordFromReferenceTimeHistory
public CompositeData getGetRecordFromReferenceTimeHistory()
- Specified by:
getGetRecordFromReferenceTimeHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordFromReferenceSizeHistory
public CompositeData getGetRecordFromReferenceSizeHistory()
- Specified by:
getGetRecordFromReferenceSizeHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordFromReferenceRateHistory
public CompositeData getGetRecordFromReferenceRateHistory()
- Specified by:
getGetRecordFromReferenceRateHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordForIdCountHistory
public CompositeData getGetRecordForIdCountHistory()
- Specified by:
getGetRecordForIdCountHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordForIdErrorCountHistory
public CompositeData getGetRecordForIdErrorCountHistory()
- Specified by:
getGetRecordForIdErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordForIdTimeHistory
public CompositeData getGetRecordForIdTimeHistory()
- Specified by:
getGetRecordForIdTimeHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordForIdSizeHistory
public CompositeData getGetRecordForIdSizeHistory()
- Specified by:
getGetRecordForIdSizeHistoryin interfaceBlobStoreStatsMBean
-
getGetRecordForIdRateHistory
public CompositeData getGetRecordForIdRateHistory()
- Specified by:
getGetRecordForIdRateHistoryin interfaceBlobStoreStatsMBean
-
getGetAllRecordsCountHistory
public CompositeData getGetAllRecordsCountHistory()
- Specified by:
getGetAllRecordsCountHistoryin interfaceBlobStoreStatsMBean
-
getGetAllRecordsTimeHistory
public CompositeData getGetAllRecordsTimeHistory()
- Specified by:
getGetAllRecordsTimeHistoryin interfaceBlobStoreStatsMBean
-
getListIdsCountHistory
public CompositeData getListIdsCountHistory()
- Specified by:
getListIdsCountHistoryin interfaceBlobStoreStatsMBean
-
getListIdsTimeHistory
public CompositeData getListIdsTimeHistory()
- Specified by:
getListIdsTimeHistoryin interfaceBlobStoreStatsMBean
-
getListIdsErrorCountHistory
public CompositeData getListIdsErrorCountHistory()
- Specified by:
getListIdsErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getAddMetadataRecordCountHistory
public CompositeData getAddMetadataRecordCountHistory()
- Specified by:
getAddMetadataRecordCountHistoryin interfaceBlobStoreStatsMBean
-
getAddMetadataRecordTimeHistory
public CompositeData getAddMetadataRecordTimeHistory()
- Specified by:
getAddMetadataRecordTimeHistoryin interfaceBlobStoreStatsMBean
-
getAddMetadataRecordErrorCountHistory
public CompositeData getAddMetadataRecordErrorCountHistory()
- Specified by:
getAddMetadataRecordErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getGetMetadataRecordCountHistory
public CompositeData getGetMetadataRecordCountHistory()
- Specified by:
getGetMetadataRecordCountHistoryin interfaceBlobStoreStatsMBean
-
getGetMetadataRecordTimeHistory
public CompositeData getGetMetadataRecordTimeHistory()
- Specified by:
getGetMetadataRecordTimeHistoryin interfaceBlobStoreStatsMBean
-
getGetMetadataRecordErrorCountHistory
public CompositeData getGetMetadataRecordErrorCountHistory()
- Specified by:
getGetMetadataRecordErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getGetAllMetadataRecordsCountHistory
public CompositeData getGetAllMetadataRecordsCountHistory()
- Specified by:
getGetAllMetadataRecordsCountHistoryin interfaceBlobStoreStatsMBean
-
getGetAllMetadataRecordsTimeHistory
public CompositeData getGetAllMetadataRecordsTimeHistory()
- Specified by:
getGetAllMetadataRecordsTimeHistoryin interfaceBlobStoreStatsMBean
-
getGetAllMetadataRecordsErrorCountHistory
public CompositeData getGetAllMetadataRecordsErrorCountHistory()
- Specified by:
getGetAllMetadataRecordsErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getMetadataRecordExistsCountHistory
public CompositeData getMetadataRecordExistsCountHistory()
- Specified by:
getMetadataRecordExistsCountHistoryin interfaceBlobStoreStatsMBean
-
getMetadataRecordExistsTimeHistory
public CompositeData getMetadataRecordExistsTimeHistory()
- Specified by:
getMetadataRecordExistsTimeHistoryin interfaceBlobStoreStatsMBean
-
getMetadataRecordExistsErrorCountHistory
public CompositeData getMetadataRecordExistsErrorCountHistory()
- Specified by:
getMetadataRecordExistsErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getDeleteMetadataRecordCountHistory
public CompositeData getDeleteMetadataRecordCountHistory()
- Specified by:
getDeleteMetadataRecordCountHistoryin interfaceBlobStoreStatsMBean
-
getDeleteMetadataRecordTimeHistory
public CompositeData getDeleteMetadataRecordTimeHistory()
- Specified by:
getDeleteMetadataRecordTimeHistoryin interfaceBlobStoreStatsMBean
-
getDeleteMetadataRecordErrorCountHistory
public CompositeData getDeleteMetadataRecordErrorCountHistory()
- Specified by:
getDeleteMetadataRecordErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getDeleteAllMetadataRecordsCountHistory
public CompositeData getDeleteAllMetadataRecordsCountHistory()
- Specified by:
getDeleteAllMetadataRecordsCountHistoryin interfaceBlobStoreStatsMBean
-
getDeleteAllMetadataRecordsTimeHistory
public CompositeData getDeleteAllMetadataRecordsTimeHistory()
- Specified by:
getDeleteAllMetadataRecordsTimeHistoryin interfaceBlobStoreStatsMBean
-
getDeleteAllMetadataRecordsErrorCountHistory
public CompositeData getDeleteAllMetadataRecordsErrorCountHistory()
- Specified by:
getDeleteAllMetadataRecordsErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getInitBlobUploadCountHistory
public CompositeData getInitBlobUploadCountHistory()
- Specified by:
getInitBlobUploadCountHistoryin interfaceBlobStoreStatsMBean
-
getInitBlobUploadTimeHistory
public CompositeData getInitBlobUploadTimeHistory()
- Specified by:
getInitBlobUploadTimeHistoryin interfaceBlobStoreStatsMBean
-
getInitBlobUploadErrorCountHistory
public CompositeData getInitBlobUploadErrorCountHistory()
- Specified by:
getInitBlobUploadErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getCompleteBlobUploadCountHistory
public CompositeData getCompleteBlobUploadCountHistory()
- Specified by:
getCompleteBlobUploadCountHistoryin interfaceBlobStoreStatsMBean
-
getCompleteBlobUploadTimeHistory
public CompositeData getCompleteBlobUploadTimeHistory()
- Specified by:
getCompleteBlobUploadTimeHistoryin interfaceBlobStoreStatsMBean
-
getCompleteBlobUploadErrorCountHistory
public CompositeData getCompleteBlobUploadErrorCountHistory()
- Specified by:
getCompleteBlobUploadErrorCountHistoryin interfaceBlobStoreStatsMBean
-
getGetBlobDownloadURICountHistory
public CompositeData getGetBlobDownloadURICountHistory()
- Specified by:
getGetBlobDownloadURICountHistoryin interfaceBlobStoreStatsMBean
-
getGetBlobDownloadURITimeHistory
public CompositeData getGetBlobDownloadURITimeHistory()
- Specified by:
getGetBlobDownloadURITimeHistoryin interfaceBlobStoreStatsMBean
-
getGetBlobDownloadURIErrorCountHistory
public CompositeData getGetBlobDownloadURIErrorCountHistory()
- Specified by:
getGetBlobDownloadURIErrorCountHistoryin interfaceBlobStoreStatsMBean
-
-