You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by hd...@apache.org on 2020/05/21 09:03:14 UTC

[rocketmq-exporter] branch master updated (5d25982 -> 910caff)

This is an automated email from the ASF dual-hosted git repository.

hdchen pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-exporter.git.


    from 5d25982  Merge pull request #9 from francisoliverlee/master
     new 7bfbd97  Merge pull request #1 from apache/master
     new 8786531  fix the bug of checking code style
     new b574603  fix bug for metric rocketmq_topic_offset and rocketmq_group_broker_total_offset
     new 9bc86ed  fix bug for task of collectBrokerStatsTopic
     new 93afd7e  amend some metrics
     new 68740e2  amend name for some metrics
     new e0bbb8a  amend bug for deal with clusterName
     new 86dc6f5  fix bug for getting clusterName
     new 4ac9d77  amnd metric name for broker
     new 8dd8679  add group latency metric
     new eb75dbf  fix bug for latency metric
     new ec017cb  fix bug for getting broker runtime metric
     new e6a78ce  add historgram and summary test example
     new 43ad917  amend code style
     new 2a24087  amend summary metric
     new 910caff  Merge pull request #16 from breezecoolyang/master

The 59 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../exporter/collector/RMQMetricsCollector.java    | 225 ++++++++++++++-------
 .../config/CollectClientMetricExecutorConfig.java  |  16 ++
 .../rocketmq/exporter/config/ScheduleConfig.java   |  16 ++
 .../exporter/model/BrokerRuntimeStats.java         |  29 ++-
 .../rocketmq/exporter/model/common/TwoTuple.java   |  16 ++
 .../exporter/model/metrics/BrokerMetric.java       |  16 +-
 .../model/metrics/ConsumerCountMetric.java         |  16 ++
 .../exporter/model/metrics/ConsumerMetric.java     |  31 ++-
 .../model/metrics/ConsumerTopicDiffMetric.java     |  18 +-
 .../model/metrics/DLQTopicOffsetMetric.java        |  35 +++-
 .../exporter/model/metrics/ProducerMetric.java     |  21 +-
 .../exporter/model/metrics/TopicPutNumMetric.java  |  40 ++--
 .../metrics/brokerruntime/BrokerRuntimeMetric.java |  16 ++
 .../ConsumerRuntimeConsumeFailedMsgsMetric.java    |  16 ++
 .../ConsumerRuntimeConsumeFailedTPSMetric.java     |  16 ++
 .../ConsumerRuntimeConsumeOKTPSMetric.java         |  16 ++
 .../ConsumerRuntimeConsumeRTMetric.java            |  16 ++
 .../clientrunime/ConsumerRuntimePullRTMetric.java  |  16 ++
 .../clientrunime/ConsumerRuntimePullTPSMetric.java |  16 ++
 ...tricsService.java => RMQCollectorRegistry.java} |  56 +++--
 .../service/impl/RMQMetricsServiceImpl.java        |   8 +-
 ...ientMetricCollectorFixedThreadPoolExecutor.java |  16 ++
 .../exporter/task/ClientMetricTaskRunnable.java    |  16 ++
 .../rocketmq/exporter/task/MetricsCollectTask.java | 137 ++++++++++---
 src/main/resources/application.yml                 |   2 +-
 25 files changed, 639 insertions(+), 187 deletions(-)
 copy src/main/java/org/apache/rocketmq/exporter/service/{RMQMetricsService.java => RMQCollectorRegistry.java} (75%)