Getting Started
Architecture
NServiceBus
Transports
Persistence
ServiceInsight
ServicePulse
ServiceControl
Samples

Metric definitions

Gathering metrics is important to know how a system works and if it works properly. When a system is broken down into multiple processes, each with its own queue, gathering and reporting metrics becomes vital. Below, there's a list of metrics that are captured and reported by NServiceBus.

Metrics captured

NServiceBus and ServiceControl capture a number of different metrics about a running endpoint including the processing time, the number of messages in each queue (differentiating between those pulled from the queue, those processed successfully, and those which failed processing), as well as "critical time".

Handler time

Handler time is the time each handler takes to perform the business logic. It is recorded for each handler separately. It includes serialization of outgoing messages. Handler time does not include any database operations managed by NServiceBus.

Processing time

Processing time is the time it takes for an endpoint to successfully process an incoming message. It includes:

  • The execution of all handlers and sagas for the incoming message
  • The execution of the incoming message processing pipeline, which includes deserialization and where applicable, user-defined pipeline behaviors and saga loading and saving time.
  • The storing of the outbox operations (if outbox is enabled)

Processing failures are not included in the processing time metric.

Number of messages pulled from queue

This metric measures the total number of messages that the endpoint reads from its input queue regardless of whether message processing succeeds or fails.

Number of messages successfully processed

This metric measures the total number of messages that the endpoint successfully processes. In order for a message to be counted by this metric, all handlers must have executed without throwing an exception.

Number of message processing failures

This metric measures the total number of messages that the endpoint has failed to process. In order for a message to be counted by this metric, at least one handler must have thrown an exception.

Critical time

Critical time is the time between when a message is sent and when it is fully processed. It is a combination of:

  • Committing the sender outbox transaction (if outbox is enabled)
  • Network send time: The time a message spends on the network before arriving in the destination queue
  • Queue wait time: The time a message spends in the destination queue before being picked up and processed
  • Processing time: The time it takes for the destination endpoint to process the message
  • Outgoing messages dispatch time: The time it takes transmitting outgoing messages to the transport

Critical time does not include:

  • The time to complete the incoming message (i.e. commit the transport transaction or acknowledge)
  • The time a delayed message is held by a timeout mechanism. (NServiceBus version 7.7 and above.)

Retries

This metric measures the number of retries scheduled by the endpoint (immediate or delayed).

Immediate retries

This metric measures the number of immediate retries scheduled by the endpoint.

Delayed retries

This metric measures the number of delayed retries scheduled by the endpoint.

Moved to error queue

This metric measures the number of messages moved to the error queue.

Queue length

This metric tracks the number of messages in the main input queue of an endpoint.