We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Statistics are logged about each message and about many events that happen in the system.
####Default Log per-process statistics accessible from within that process.
##Configure
MicroQ.configure do |config| config.statistics = MicroQ::Statistics::Default # config.statistics = MicroQ::Statistics::Redis (coming soon) end
##Usage
MicroQ.stats do |stats| stats.incr('messages:processed') # Or when a failure occurs stats.incr('messages:failed') end