Github user grkvlt commented on a diff in the pull request:
https://github.com/apache/incubator-brooklyn/pull/565#discussion_r26974308
--- Diff:
software/nosql/src/main/java/brooklyn/entity/nosql/riak/RiakNode.java ---
@@ -142,6 +140,27 @@
MethodEffector<Void> LEAVE_RIAK_CLUSTER = new
MethodEffector<Void>(RiakNode.class, "leaveCluster");
MethodEffector<Void> COMMIT_RIAK_CLUSTER = new
MethodEffector<Void>(RiakNode.class, "commitCluster");
+ AttributeSensor<String> NODE_GET_FSM_TIME_MEAN =
Sensors.newStringSensor("node_get_fsm_time_mean", "Time between reception of
client read request and subsequent response to client");
+ AttributeSensor<String> NODE_PUT_FSM_TIME_MEAN =
Sensors.newStringSensor("node_put_fsm_time_mean", "Time between reception of
client write request and subsequent response to client");
+ AttributeSensor<String> OBJECT_COUNTER_MERGE_TIME_MEAN =
Sensors.newStringSensor("object_counter_merge_time_mean", "Time it takes to
perform an Update Counter operation");
+ AttributeSensor<String> OBJECT_SET_MERGE_TIME_MEAN =
Sensors.newStringSensor("object_set_merge_time_mean", "Time it takes to perform
an Update Set operation");
+ AttributeSensor<String> OBJECT_MAP_MERGE_TIME_MEAN =
Sensors.newStringSensor("object_map_merge_time_mean", "Time it takes to perform
an Update Map operation");
+ AttributeSensor<String> SEARCH_QUERY_LATENCY_MEDIAN =
Sensors.newStringSensor("search_query_latency_median", "Search query latency");
--- End diff --
This one should be `riak.node.searchQueryLatency.median` for example
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---