rocketmq icon indicating copy to clipboard operation
rocketmq copied to clipboard

[Feature] TimerMessageStore#getDequeueTps optimization

Open 847850277 opened this issue 1 year ago • 0 comments

Is Your Feature Request Related to a Problem?

public float getDequeueTps() {
        return perfCounterTicks.getCounter("dequeue_put").getLastTps();
    }

this may can change to DEQUEUE_PUT

Describe the Solution You'd Like

public float getDequeueTps() {
        return perfCounterTicks.getCounter(DEQUEUE_PUT).getLastTps();
    }

Describe Alternatives You've Considered

change to DEQUEUE_PUT

Additional Context

No response

847850277 avatar Aug 09 '24 08:08 847850277