Skip to content

Commit

Permalink
[HWKMETRICS-136] add javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
John Sanda committed Jun 10, 2015
1 parent feb0669 commit f950b89
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,24 @@ public int hashCode() {

private MetricRegistry metricRegistry;

/**
* Measures the throughput of inserting gauge data points.
*/
private Meter gaugeInserts;

/**
* Measures the throughput of inserting availability data points.
*/
private Meter availabilityInserts;

/**
* Measures the latency of queries for gauge (raw) data.
*/
private Timer gaugeReadLatency;

/**
* Measures the latency of queries for availability (raw) data.
*/
private Timer availabilityReadLatency;

public void startUp(Session session, String keyspace, boolean resetDb, MetricRegistry metricRegistry) {
Expand Down

0 comments on commit f950b89

Please sign in to comment.