You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The subscription group creation time: le_10_ms le_100_ms le_1_s le_3_s le_5_s le_overflow
cluster,node_type,node_id,request_is_success
Describe Alternatives You've Considered
Plan to utilize histogram-type metrics and counter-type metrics.
Histogram: A metric type that illustrates the frequency distribution of monitored data points through sampling.
Add metric variables within the BrokerMetricsManager class: createTopicTime and createSubscriptionTime.
Incorporate corresponding constants in the BrokerMetricsConstant class.
a. Specifically, introduce the LABEL_REQUEST_IS_SUCCESS constant to denote the success of topic creation requests.
Construct the respective metrics within the initRequestMetrics method of the BrokerMetricsManager class.
Update these metrics in the topic creation function and subscription creation function of the AdminBrokerProcessor class.
Configure buckets
Additional Context
No response
The text was updated successfully, but these errors were encountered:
…d rocketmq_consumer_group_create_execution_time (#8212)
* Add tow metric createTopicTime and createSubscriptionTime in broker
* roll back BrokerConfig.java
* Add metric view of createTopicTime and createSubscriptionTime in broker
* Add two metric rocketmq_active_topic_number and rocketmq_active_subscription_number
Signed-off-by: 黄梓淇 <[email protected]>
Is Your Feature Request Related to a Problem?
The existing observable system of this project lacks broker-side monitoring of the creation time of topic and subscription group.
Describe the Solution You'd Like
Add two metrics rocketmq_create_topic_time and rocketmq_create_subscription_time as following:
le_10_ms
le_100_ms
le_1_s
le_3_s
le_5_s
le_overflow
le_10_ms
le_100_ms
le_1_s
le_3_s
le_5_s
le_overflow
Describe Alternatives You've Considered
Histogram: A metric type that illustrates the frequency distribution of monitored data points through sampling.
BrokerMetricsManager
class:createTopicTime
andcreateSubscriptionTime
.BrokerMetricsConstant
class.a. Specifically, introduce the
LABEL_REQUEST_IS_SUCCESS
constant to denote the success of topic creation requests.initRequestMetrics
method of theBrokerMetricsManager
class.AdminBrokerProcessor
class.Additional Context
No response
The text was updated successfully, but these errors were encountered: