com.netflix.servo.annotations.Monitor Java Examples

The following examples show how to use com.netflix.servo.annotations.Monitor. 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: TransportStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "rx_count", type = DataSourceType.GAUGE)
public long getRxCount() {
    return transportStatsBean.get().rxCount;
}
 
Example #2
Source File: ThreadPoolStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "bulkActive", type = DataSourceType.GAUGE)
public long getBulkActive() {
    return threadPoolBean.get().bulkActive;
}
 
Example #3
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "search_fetch_time", type = DataSourceType.COUNTER)
public long getSearchFetchTime() {
    return nodeIndicesStatsBean.get().searchFetchTime;
}
 
Example #4
Source File: AllCircuitBreakerStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "request_overhead", type = DataSourceType.GAUGE)
public double getRequestOverhead() {
    return allCircuitBreakerStatsBean.get().requestOverhead;
}
 
Example #5
Source File: FsStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "available_bytes", type = DataSourceType.GAUGE)
public long getAvailableBytes() {
    return fsStatsBean.get().available;
}
 
Example #6
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "indexing_index_time_in_millis", type = DataSourceType.COUNTER)
public long getIndexingIndexTimeInMillis() {
    return nodeIndicesStatsBean.get().indexingIndexTimeInMillis;
}
 
Example #7
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "docs_count", type = DataSourceType.GAUGE)
public long getDocsCount() {
    return nodeIndicesStatsBean.get().docsCount;
}
 
Example #8
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "latencyIndexDelete99", type = DataSourceType.GAUGE)
public double getLatencyIndexDelete99() {
    return nodeIndicesStatsBean.get().latencyIndexDelete99;
}
 
Example #9
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "latencySearchFetch99", type = DataSourceType.GAUGE)
public double getLatencySearchFetch99() {
    return nodeIndicesStatsBean.get().latencySearchFetch99;
}
 
Example #10
Source File: ProcessStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "cpu_timestamp", type = DataSourceType.GAUGE)
public long getCpuTimestamp() {
    return processStatsBean.get().cpuTimestamp;
}
 
Example #11
Source File: OsStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "actual_free_in_bytes", type = DataSourceType.GAUGE)
public long getActualFreeInBytes() {
    return osStatsBean.get().actualFreeInBytes;
}
 
Example #12
Source File: FsStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "free_bytes", type = DataSourceType.GAUGE)
public long getFreeBytes() {
    return fsStatsBean.get().free;
}
 
Example #13
Source File: OsStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "actual_used_in_bytes", type = DataSourceType.GAUGE)
public long geActualUsedInBytes() {
    return osStatsBean.get().actualUsedInBytes;
}
 
Example #14
Source File: ThreadPoolStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "indexLargest", type = DataSourceType.GAUGE)
public long getIndexLargest() {
    return threadPoolBean.get().indexLargest;
}
 
Example #15
Source File: FsStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "disk_write_bytes", type = DataSourceType.GAUGE)
public long getDiskWriteBytes() {
    return fsStatsBean.get().diskWriteBytes;
}
 
Example #16
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 #17
Source File: AllCircuitBreakerStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "field_data_tripped_count", type = DataSourceType.GAUGE)
public double getFieldDataTrippedCount() {
    return allCircuitBreakerStatsBean.get().fieldDataTrippedCount;
}
 
Example #18
Source File: OsStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "cpu_user", type = DataSourceType.GAUGE)
public short getCpuUser() {
    return osStatsBean.get().cpuUser;
}
 
Example #19
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "latencyGet95", type = DataSourceType.GAUGE)
public double getLatencyGet95() {
    return nodeIndicesStatsBean.get().latencyGet95;
}
 
Example #20
Source File: JvmStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "young_last_gc_after_used_in_bytes", type = DataSourceType.GAUGE)
public long getYoungLastGcAfterUsedInBytes() {
    return jvmStatsBean.get().youngLastGcAfterUsedInBytes;
}
 
Example #21
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "get_current", type = DataSourceType.GAUGE)
public long getGetCurrent() {
    return nodeIndicesStatsBean.get().getCurrent;
}
 
Example #22
Source File: ThreadPoolStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "getQueue", type = DataSourceType.GAUGE)
public long getGetQueue() {
    return threadPoolBean.get().getQueue;
}
 
Example #23
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 #24
Source File: JvmStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "young_last_gc_start_time", type = DataSourceType.GAUGE)
public long getYoungLastGcStartTime() {
    return jvmStatsBean.get().youngLastGcStartTime;
}
 
Example #25
Source File: OsStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "free_in_bytes", type = DataSourceType.GAUGE)
public long getFreeInBytes() {
    return osStatsBean.get().freeInBytes;
}
 
Example #26
Source File: JvmStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "old_peak_used_in_bytes", type = DataSourceType.GAUGE)
public long getOldPeakUsedInBytes() {
    return jvmStatsBean.get().oldPeakUsedInBytes;
}
 
Example #27
Source File: JvmStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "old_max_in_bytes", type = DataSourceType.GAUGE)
public long getOldMaxInBytes() {
    return jvmStatsBean.get().oldMaxInBytes;
}
 
Example #28
Source File: JvmStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "old_used_in_bytes", type = DataSourceType.GAUGE)
public long getOldUsedInBytes() {
    return jvmStatsBean.get().oldUsedInBytes;
}
 
Example #29
Source File: OsStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "cpu_idle", type = DataSourceType.GAUGE)
public short getCpuIdle() {
    return osStatsBean.get().cpuIdle;
}
 
Example #30
Source File: NodeIndicesStatsMonitor.java    From Raigad with Apache License 2.0 4 votes vote down vote up
@Monitor(name = "search_query_avg_time_in_millis_per_request", type = DataSourceType.GAUGE)
public double getSearchQueryAvgTimeInMillisPerRequest() {
    return nodeIndicesStatsBean.get().searchQueryAvgTimeInMillisPerRequest;
}