Java Code Examples for com.netflix.servo.annotations.DataSourceType#COUNTER

The following examples show how to use com.netflix.servo.annotations.DataSourceType#COUNTER . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DynoCPMonitor.java    From dyno with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "NumFailover", type = DataSourceType.COUNTER)
@Override
public long getFailoverCount() {
    return super.getFailoverCount();
}
 
Example 2
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "get_exists_time", type = DataSourceType.COUNTER)
public long getGetExistsTime() {
    return nodeIndicesStatsBean.get().getExistsTime;
}
 
Example 3
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "indexing_delete_total", type = DataSourceType.COUNTER)
public long getIndexingDeleteTotal() {
    return nodeIndicesStatsBean.get().indexingDeleteTotal;
}
 
Example 4
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "get_total", type = DataSourceType.COUNTER)
public long getGetTotal() {
    return nodeIndicesStatsBean.get().getTotal;
}
 
Example 5
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "indexing_index_total", type = DataSourceType.COUNTER)
public long getIndexingIndexTotal() {
    return nodeIndicesStatsBean.get().indexingIndexTotal;
}
 
Example 6
Source File: RemoteFileSink.java    From suro with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "uploadedFileSize", type = DataSourceType.COUNTER)
public long getUploadedFileSize() {
    return uploadedFileSize.get();
}
 
Example 7
Source File: ThreadPoolStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "getCompleted", type = DataSourceType.COUNTER)
public long getGetCompleted() {
    return threadPoolBean.get().getCompleted;
}
 
Example 8
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "merges_total", type = DataSourceType.COUNTER)
public long getMergesTotal() {
    return nodeIndicesStatsBean.get().mergesTotal;
}
 
Example 9
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "search_query_time", type = DataSourceType.COUNTER)
public long getSearchQueryTime() {
    return nodeIndicesStatsBean.get().searchQueryTime;
}
 
Example 10
Source File: RemoteFileSink.java    From suro with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "uploadedFileCount", type = DataSourceType.COUNTER)
public int getUploadedFileCount() {
    return uploadedFileCount.get();
}
 
Example 11
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "get_exists_total", type = DataSourceType.COUNTER)
public long getGetExistsTotal() {
    return nodeIndicesStatsBean.get().getExistsTotal;
}
 
Example 12
Source File: DynoCPMonitor.java    From dyno with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "OperationTimeout", type = DataSourceType.COUNTER)
@Override
public long getOperationTimeoutCount() {
    return super.getOperationTimeoutCount();
}
 
Example 13
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "get_time", type = DataSourceType.COUNTER)
public long getGetTime() {
    return nodeIndicesStatsBean.get().getTime;
}
 
Example 14
Source File: DynoCPMonitor.java    From dyno with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "PoolExhausted", type = DataSourceType.COUNTER)
@Override
public long getPoolExhaustedTimeoutCount() {
    return super.getPoolExhaustedTimeoutCount();
}
 
Example 15
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "search_query_total", type = DataSourceType.COUNTER)
public long getSearchQueryTotal() {
    return nodeIndicesStatsBean.get().searchQueryTotal;
}
 
Example 16
Source File: DynoCPMonitor.java    From dyno with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "ConnectionBorrowed", type = DataSourceType.COUNTER)
@Override
public long getConnectionBorrowedCount() {
    return super.getConnectionBorrowedCount();
}
 
Example 17
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "refresh_total_time", type = DataSourceType.COUNTER)
public long getRefreshTotalTime() {
    return nodeIndicesStatsBean.get().refreshTotalTime;
}
 
Example 18
Source File: DynoCPMonitor.java    From dyno with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "ConnectionClosed", type = DataSourceType.COUNTER)
@Override
public long getConnectionClosedCount() {
    return super.getConnectionClosedCount();
}
 
Example 19
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "get_missing_total", type = DataSourceType.COUNTER)
public long getGetMissingTotal() {
    return nodeIndicesStatsBean.get().getMissingTotal;
}
 
Example 20
Source File: DynoCPMonitor.java    From dyno with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "OperationFailure", type = DataSourceType.COUNTER)
@Override
public long getOperationFailureCount() {
    return super.getOperationFailureCount();
}