In This Section
Overview
An operational AEP engine and its underlying components such as its HA Store and Bus Bindings capture many metrics and statistics during the course of its operation. These metrics are periodically collected by the XVM in which the engine is running and reported in XVM heartbeats which can then be traced, logged in a binary format or emitted to monitoring applications. This document describes the statistics that are collected, how to enable those statistics that aren't enabled by default and describes the format in which statistics are traced.
Configuration Settings
Most engine metrics are low overhead and are their collection cannot be disabled. Other types of statistics such as Latency Statistics, Per Message Type statistics, and per Transaction Statistics can impact application performance for performance sensitive apps, and their collection is disabled by default. The subsections below describes the additional statistics that can be collected and how they can be enabled.
Global Latency Stats Settings
Latency statistics, however, are more expensive to collect and can impact application performance. Consequently latency stats collection is disable by default.The platform provides several knobs that allow applications to control what latency statistics are collected and balance the performance cost against operational visibility. The table below summarizes the various configuration settings that control latency collection at a process-wide level.
Configuration Setting | Default | Description |
---|---|---|
nv.stats.series.samplesize | 10240 | Property that can be used to control the default sampling size for series stats. If the number of datapoints collected in a stats interval exceeds this size, the computation for histographical data will be lossy. Increasing the value reduces loss of datapoints, but results in greater overhead in stats collection in terms of both memory usage and pressure on the process caches. |
nv.msg.latency.stats | false | Property that globally enables collection of message latency stats as messages flow through the system. These statistics include latencies in the flow outside of transaction processing. For received messages these statistics include transmission, deserialization and dispatch costs. For sent messages these include serialization and transmission costs. When set to true, timings for messages are captured as they flow through the system. Enablement of these stats is required to collect message bus latency stats. Enabling this property can increase latency due to the overhead of tracking timestamps. |
nv.msgtype.latency.stats | false | Property that enables tracking of message latency stats on a type by type basis. When set to true, timings for each message type are individually tracked as separate stats
|
nv.ods.latency.stats | false | Indicates whether or not store latency statistics are captured. Store latency stats expose statistics related to serializing replicating and persisting transactions.
|
nv.event.latency.stats | false | Indicates whether or not event latency statistics are captured. Enabling Event latency stats record timestamps for enqueue and dequeue of events across event multiplexers, such as the AepEngine's input multiplexer queue. Enabling event latency stats is useful for determining if an engine's event multiplexer queue is backing up by recording the time that events remain on the input queue.
|
nv.link.network.stampiots | false | Indicates whether or not timestamps should be stamped on inbound and outbound messages. Disabled by default. Enabling this setting will allow engines to provide more detail in the form of transaction legs in message latency statistics.
|
The above settings can be configured in config.xml as follows:
Per Engine Stats Settings
Latencies related to a particular application's transaction pipeline can be configured
Configuration Setting | Default | Description |
---|---|---|
captureTransactionLatencyStats | false | Property that enables collection of latency stats as messages flow through the AEP engine's transaction processing machinery. |
captureEventLatencyStats | false | Property that globally enables collection of message latency stats as messages flow through the system. These statistics include latencies in the flow outside of transaction processing. For received messages these statistics include transmission, deserialization and dispatch costs. For sent messages these include serialization and transmission costs. When set to true, timings for messages are captured as they flow through the system. Enablement of these stats is required to collect message bus latency stats. Enabling this property can increase latency due to the overhead of tracking timestamps. |
captureMessageTypeStats | false | Property that enables tracking of message statistics on a per message type basis. When set to true, timings for each message type are individually tracked as separate stats
|
messageTypeStatsLatenciesToCapture | all | Property that enables tracking of latency statistics on a per message type basis Property controlling which latency stats on a per message type basis. This property is specified as a comma separated list of values. Valid value include:
The values 'all' or 'none' may not be combined with other values. This value only applies when captureMessageTypeStats is true. When not specified the value defaults to all.
|
capturePerTransactionStats perTransactionStatsLogging | false | Configuration See Per Transaction Stats for more details. |
The above settings can be configured in config.xml as follows:
Metrics Collected
An AEP engine collects the following raw metrics during the course of its operation.
Metric | Description |
NumFlows | Total number of message flows functioning in the engine. |
NumMsgsRcvdBestEffort | Total number of messages received by the engine on best-effort channels. |
NumMsgsRcvdGuaranteed | Total number of messages received by the engine on guaranteed channels. |
NumMsgsSourced | [EventSourcing Only] |
NumMsgsFiltered | The number of messages that were filtered. |
NumDupMsgsRcvd | Total number of duplicate messages received and discarded by an engine. This metric will always be 0 if duplicate detection has been disabled via the nv.aep.duplicate.checking configuration property. |
NumMsgsSentBestEffort | Total number of messages sent by the engine on best-effort channels. |
NumMsgsSentGuaranteed | Total number of messages sent by the engine on guaranteed channels. |
NumMsgsResent | Total number of messages retransmitted by an engine. |
NumEventsRcvd | Total number of events received by an engine. |
NumFlowEventsRcvd | Total number of flow events received by the engine. |
NumFlowEventsProcSuccess | Total number of successfully processed flow events. |
NumFlowEventsProcFail | Total number of failed flow events. |
NumFlowEventsProcComplete | Total number of flow events whose transactions have completed. |
NumTransactions | Total number of transactions that have been committed or rolled back. |
NumCommitsStarted | Total number of transactions whose commits have been started. |
NumCommitsCompleted | Total number of transactions whose commits have completed. |
NumSendCommitsStarted | Total number of transactions whose send commits have been started. |
NumSendCommitsCompleted | Total number of transactions whose send commits have completed. |
SendCommitCompletionQueueSize | Number of transaction in the send commit completion queue. |
NumStoreCommitsStarted | Total number of transactions whose store commits have been started. |
NumStoreCommitsCompleted | Total number of transactions whose store commits have completed. |
StoreCommitCompletionQueueSize | Number of transaction in the store commit completion queue. |
NumRollbacks | Number of transactions that have been rolled back. |
BackupOutboundQueueSize | [EventSourcing Only] |
BackupOutboundLogQueueSize | [EventSourcing Only] |
OutboundSno | The current outbound sequence number in use by the engine. |
OutboundStableSno | The current 'stable' outbound sequence number. |
Message Type Specific Statistics | Message type specific statistics.
|
Transaction Latencies
Transaction latencies traced by an engine stats thread includes summary statistics for various phases within the transaction processing pipeline. The meaning of these summary statistics is as follows:
Phase | Description |
---|---|
mpproc | Records the time (in microseconds) spent by the engine dispatching the message to an application. |
mproc | Records latencies for application message process times (in an EventHandler). |
mfilt | Records latencies for application message filtering times (by a message filter). |
msend | Time spent in AepEngine.sendMessage(). The time in the AepEngine's send call. This latency will be a subset of mproc for solicited sends and it includes msendc. |
msendc | Time spent in the AepEngine's core send logic. This leg includes enqueuing the message for delivery in the corresponding bus manager. |
cstart | Time spent from the point the first message of a transaction is received to the time the transaction is committed. |
cprolo | Time spent from the point where transaction commit is started to send or store commit, whichever occurs first. This latency measures the time taken in any bookkeeping done by the engine prior to commit the transaction to store (or for an engine without a store until outbound messages are released for delivery). |
csend | The send commit latency: i.e. time from when send commit is initiated, to receipt of send completion event. This latency represents the time from when outbound messages for a transaction are released to the time that all acknowledgements for the messages are received. Because this latency includes acknowledgement time a high value for csend does not necessarily indicate that downstream latency will be affected. The Message Latencies listed below allow this value to be decomposied further. |
ctrans | Time spent from the point the store commit completes to the beginning of the send commit which releases a transaction's outbound messages for delivery. If the engine doesn't have a store, then this statistic is not captured as messages are released immediately. |
cstore | The store commit latency i.e. time from when store commit is initiated to receipt of store completion event. This latency includes the time spent serializing transaction contents, persisting to the store's transaction log, inter cluster replication, and replication to backup members including the replication ack.
|
cepilo | Time spent from the point the store or the send commit completes, whichever is last, to commit completion. |
cfull | Time spent from the time the first message of a transaction is received to commit completion. |
tleg1 | Records latencies for the first transaction processing leg. Transaction Leg One includes time spent from the point where the first message of a transaction is received to submission of send/store commit. It includes message processing and and any overhead associated with transactional book keeping done by the engine.
|
tleg2 | Records latencies for the second transaction processing leg. Transaction Leg Two includes time spent from the point where the send/store commit completion is received to the submission of store/send commit.
|
tleg3 | Records latencies for the third transaction processing leg. Transaction Leg Three includes time spent from the point where the store/store commit completion is received to the completion of the transaction commit.
|
inout | Records latencies for receipt of a message to transmission of the last outbound message. |
inack | Records latencies for receipt of a message to stabilization (and upstream acknowledgement for Guaranteed). |
Message Type Specific Stats
By default, an AEP engine does not collect message type specifc stats. To enable message type specific stats the following should be set in you DDL config:
Bus Connection Stats
The engine stats thread can also trace summary statistics for each of the message bus connections managed by the engine. Each bus connection is handled by bus manager. The manager handles bus connection establishment, reconnect handling and message IO through the underlying connection. From the perspective on an engine bus manager, a bus connection is synonymous with an SMA bus connection. Each Bus Manager maintains statistics across bus binding reconnects, allowing continuous stats across bus binding reconnects. The following sections break these statistics down in more detail.
Message and Transaction Statistics
Immediately following the Bus Manager "header" are statistics that relate to message volumes and rates across the managed bus:
The raw metrics from which these statistics are computed are as follows:
Field | Description |
---|---|
NumMsgsRcvd | The number of message received by the bus. |
NumMsgsInBatches | The number of messages received by the bus that were part of a batch. |
NumMsgBatchesRcvd | The number of batch message received by the bus. |
NumPacketsRcvd | The number of raw packets received by the bus. |
NumMsgsEnqueued | The total number of batch messages enqueued for delivery by this bus. |
NumAcksSent | The total number of acknowledgment sent upstream for received messages by this bus. |
NumStabilityRcvd | The number of stability events (acks) received by this bus. |
NumStabilityBatchesRcvd | The number of batched stability events received by this bus. |
NumMsgsEnqueued | The total number of batch messages enqueued for delivery by this bus. |
NumMsgsSent | The total number of batch messages enqueued message that were actually sent by the bus. |
NumFlushesSync | The number of times this bus has been synchronously flushed. |
NumFlushesAsync | The number of times this bus has been asynchronously flushed. |
NumMsgsFlushedSync | The number of messages flushed by synchronous flushes. |
NumMsgsFlushedAsync | The number of messages flushed by asynchronous flushes. |
NumAsyncFlushCompletions | The number of asynchronous flushes for this that have completed. |
NumCommits | The number of transactions committed by the bus. |
NumRollbacks | The number transactions rolled back for the bus. |
Bus Disruptor Latencies
When a bus manager is configured for detached send (aka detached commit), a transaction's outbound messages are sent on the underlying SMA connection by the bus manager's I/O thread. The bus manager uses a disruptor to manage the handoff of messages to the manager's IO thread. The "Offer to Poll" latency measures the time the outbound messages are latent in the disruptor queue. High o2p latencies in a Bus Manager may indicate that messages are being released for send faster than we can actually send them through the underlying SMA connection.
Disruptor..{[<DisruptorNumUsed> of <DisruptorNumAvailable>] <DisruptorUsagePct>% (<DisruptorClaimStrategy>, <DisruptorWaitStrategy>)}
...[o2p] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
Bus Clients, Channels and Fails
After the disruptor statistics are counters indicating the number of connected clients, active channels and binding failures:
Clients....{<NumClients>}
Channels...{<NumChannels>}
Fails......{<NumFails>}
The raw metrics from which these statistics are computed are as follows:
Field | Description |
---|---|
NumClients | The number of connected clients (if applicable). |
NumChannels | The number of channels brought up by this bus. |
NumFails | The number of binding failures that have occurred for this bus. |
Messaging Latencies
Messaging latencies follow the clients, channels and fails output. The following latency statistics relate to the bus manager's message handling pipeline:
Phase | Description |
---|---|
c2o | The create to send latencies in microseconds, the time in microseconds from message creation to when send was called for it.
|
o2s | The send to serialize latencies in microseconds, the time from when the message was sent until it was serialized in preparation for transmission on the wire. For an engine with a store this will include the time from the application's send call, the replication hop (if there is a store) and time through the bus manager's disruptor if detached commit is enabled for the bus manager. |
s | The serialize latencies in microseconds, the spent serializing the MessageView to its transport encoding. |
s2w | The serialize to wire latencies in microseconds, the time post serialize to just before the message is written to the wire. |
w | The wire latencies in microseconds, the time an inbound messages spent on the wire. The time spent on the wire from when the message was written to the wire by the sender to the time it was received off the wire by the receiver. Note: that this metric is subject to clock skew when the sending and receiving sides are on different hosts. |
w2d | The time from when the serialized form was received from the wire to deserialization. |
d | The time (in microseconds) spent deserializing the message and wrapping it in a MessageView. |
d2i | The time (in microseconds) from when the message was deserialized to when it is received by the engine. This measure the time from when the bus has deserialized by the bus to when the app's engine picks it up from it's input queue (before it dispatches it to an application) handler (it includes the o2p time of the engine's disruptor). Additional time spent by the engine dispatching the message to the application handler is covered by mpproc (see the Transaction Latencies table). |
o2i | The origin to receive latencies in microseconds. The time from when a message was originally created to when it was received by the binding. |
w2w | The wire to wire latencies in microseconds, for outbound messages the time from when the corresponding inbound message was received off the wire to when the outbound message was written to the wire. |
Event Multiplexer (Input Queue) Statistics
The Event Multiplexer reports statistics describing the latency between:
The point at which an event is offered to the multiplexer by a thread and the point at which it is actually enqueued for processing – i.e. the o2p statistics traced per Feeder Queue.
Feeder Queues (max=16, lastDecongest=0)
...X-Server-ems1-Main (aff=[]) has 0 (decongestCount=64500)
......[o2p] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...X-ODS-StoreEventMultiplexer-1 (aff=[3(s0c3t0)]) has 0 (decongestCount=64492)
......[o2p] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]The time between when an event is offered to the multiplexer for processing and the time at which it is returned from a poll by the engine's event multiplexer thread for processing – i.e. the o2p statistics traced for the Event Multiplexer's Disruptor.
[Event Multiplexer (ems)]
Disruptor (MultiThreadedSufficientCores, BusySpin)..
[0 of 1,024] 0%
...[o2p] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
Store Statistics
If the stats thread supports summary statistics related to an engine's store. The following sections will break these statistics down in more detail.
Inbound and Outbound Commit Statistics
The raw metrics from which these statistics are computed are as follows:
Field | Description |
---|---|
NumCommitsRcvd | The number of committed transactions replicated to this store. |
PacketsRcvd | The number of committed entries replicated to this store. |
NumCommitsSent | The number of committed transactions replicated by the store. |
PacketsSent | The number of committed entries replicated by the store. |
CommitCompletionsRcvd | The number of commit acknowledgements received by this store member from followers. |
CommitCompletionsSent | The number of commit acknowledgements sent by this store member to the leader. |
Store Latencies
Phase | Description |
---|---|
cqs | The number of entries committed per commit.![]() |
s | The amount of time spent serializing transaction entries in preparation of replication / and persistence. |
s2w | The time between serializing transaction entries to the last entry being written to the wire (but not stabilized) for replication.
|
s2p | The time between serializing transaction entries to the time that entries have been passed to the persister for write to disk (but not yet synced).
|
w | The commit wire time. For a store in the primary role, wire latency captures the time from the last commit entry being replicated until the last commit ack is received for the transaction. In other words: the round trip time. For a store in the backup role wire latency capture the amount of time from when the primary wrote the last commit entry to the wire to the time it was received by the backup. When primary and backup are on different hosts, this statistic is subject to clock skew and could even be negative.
|
w2d | The time between receipt of a commit packet to the point at which deserialization of the entries has started (by a backup store member). |
d | The time spent deserializing a transaction's entries (by a backup store member). |
per | The amount of time spent persisting transaction entries to disk.
|
icr | The amount of time spent sending transaction entries to via an ICR Sender.
|
idx | The index latency records the time spent indexing records during commit. |
c | The commit latency records the latency from commit start to the commit being stabilized to follower members and / or to disk. |
Computed Statistics
A started engine statistics thread computes the following at the output frequency at which it was configured (programmatically or administratively).
Message Receipt
- Overall Message Receive Rate (since engine start)
- Delta Message Receive Rate (since last compute time)
- Overall Best-Effort Message Receive Rate (since engine start)
- Delta Best-Effort Message Receive Rate (since last compute time)
- Overall Guaranteed Message Receive Rate (since engine start)
- Delta Guaranteed Message Receive Rate (since last compute time)
- Overall Message Source Rate (since engine start)
- Delta Message Source Rate (since last compute time)
Message Send
- Overall Message Send Rate (since engine start)
- Delta Message Send Rate (since last compute time)
- Overall Best-Effort essage Send Rate (since engine start)
- Delta Best-Effort Message Send Rate (since last compute time)
- Overall Guaranteed Message Send Rate (since engine start)
- Delta Guaranteed Message Send Rate (since last compute time)
Event Receipt
- Overall Event Receive Rate (since engine start)
- Delta Event Receive Rate (since last compute time)
- Overall Flow Event Receive Rate (since engine start)
- Delta Flow Event Receive Rate (since last compute time)
Transactions
- Overall Transaction Rate (since engine start)
- Delta Transaction Rate (since last compute time)
- Average Flow Events Per Transaction
Message Type Specific
- Message receipt and send statistics described above per message type
- Histograms for application processing and filtering times.
Appendix A - Statistics Output Threads
The following output threads can be enabled to trace individual types of statistics, which is useful for testing and performance tuning. Enabling these output threads is not required for collecting stats. Statistics trace output is not zero garbage, so in a production scenario it usually makes more sense to collect stats via Xvm Heartbeats, which emits zero garbage heartbeats with the above statistics.
When an AepEngine is running inside of an XVM (the most common case), engine statistics are included in XVM heartbeats and should be traced using the XVM tracing facilities. The trace threads described below should not be enabled when running within an XVM as collection by the trace threads and XVM Stats collector thread can interfere with one another.
Configuration Setting | Default | Description |
---|---|---|
nv.aep.<engine>.stats.interval | 0 | The interval (in seconds) at which engine stats will be traced for a given engine. Can be set to a positive integer indicate the period in seconds at which the engine's stats dump thread will dump recorded engine statistics. Setting a value of 0 disables creation of the stats thread. When enabled, engine stats are traced to the logger 'nv.aep.engine.stats' at a level of NOTE: disabling the engine stats thread only stops stats from being periodically traced. It does not stop the engine from collecting stats; stats can still be collected by an external thread (such as the Talon Server which reports the stats in server heartbeats). In other words, enabling the stats thread is not a prerequisite for collecting stats, and disabling the stats reporting thread does not stop them from being collected. NOTE: while collection of engine stats is a zero garbage operation, tracing engine stats is not a zero garbage when performed by this stats thread. For latency sensitive apps, it is recommended to run in a Talon server which can collect engine stats and report them in heartbeats in a zero garbage fashion. |
nv.aep.<engine>.sysstats.interval | 0 | The interval (in seconds) at which engine sys stats will be reported. Set to 0 (the default) to completely disable sys stats tracing for a given engine. In most cases, AEP sys stats will not be used and system level stats would be recorded in the Server Statistics from which an AEPEngine is running. |
nv.event.mux.<name>.stats.interval | 0 | The interval (in seconds) at which multiplexer stats will be traced. Multiplexer stats can also be reported as part of the overall engine stats from the engine stats thread, so there is no need to set this to a non-zero value if nv.aep.<engine>.stats.interval is greater than zero. |
nv.msg.latency.stats.interval | 0 | The interval (in seconds) at which message latency stats are traced. This setting has no effect if nv.msg.latency.stats is false. This allows granular tracing of just message latency stats on a per bus basis. Message latency stats can also be reported as part of the overall engine stats from the engine stats thread, so there is no need to set this to a non-zero value if nv.aep.<engine>.stats.interval is greater than zero. |
nv.aep.busmanager.<engine>.<bus>.stats.interval | 0 | The interval (in seconds) at which bus stats will be traced. Bus stats reported as part of the overall engine stats from the engine stats thread, so there is no need to set this to a non-zero value if nv.aep.<engine>.stats.interval is greater than zero. When engine stats output is disabled this can be used to trace only bus stats for a particular message bus. |
Output Trace Logger
An AEP engine's statistics thread uses a named trace logger to log the raw and computed statistics output. The following is the name of the logger used by an engine:
nv.aep.<engineName>.stats
For example, the 'forwarder' engine uses the following logger to log statistics output:
nv.aep.forwarder.stats
The configured logger can be either a native logger or an SLF4J logger. Refer to the X Platform Tracing and Logging document for details on X Platform trace loggers.
Appendix B – Statistics Output Format
The following sections break down the output of engine statistics. The format below is used when the stats are traced by an XVM, the Stats Dump Tool or the Statistics threads described in Appendix A.
Flows{1} Msg{In{25,901(364 0) 25,901(364 0) 0(0 0) 0(0 0) 0X(0 0) (0)} Out{25,901(364 0) 25,901(364 0) 0(0 0) (25,901 25,901 0 0) (0)} Latency{InOut{0 us} InAck{0 us}}} Ev{51,806(728 0) 25,901[25,901,0,25,901](364 0)} Txn{25,902[(25,902,25,902),(25,902,25,902 (0)),(0,0 (0)),0](364 0) 0} Store{-1}
[Message Type Specific]
OrderEvent In{0(0 0) 0(0 0) 0(0 0) 0(0 0) (0)} Out{25,901(364 0) 25,901(364 0) 0(0 0) (0)}
Trade In{25,901(364 0) 25,901(364 0) 0(0 0) 0(0 0) (0)} Out{0(0 0) 0(0 0) 0(0 0) (0)}
The above output is comprised of three sections:
- The trace header
- The overall stats
- The message type specific stats
Trace Header
The trace header is the standard trace header.
The header above is the header output by the native X trace logger. When using SLF4J, the header will be appropriate to the configuration of the concrete logger bound to SLF4J.
Overall Stats
The next part of the output is the raw and computed statistics output by the statistics thread. The next sections explains the different sections of this output:
Flow Count
Overall Messages Received & Receipt Rate
Best Effort Messages Received & Receipt Rate
Guaranteed Messages Received & Receipt Rate
Messages Sourced & Sourcing Rate
Messages Filtered
Duplicate Messages Received
Overall Messages Sent & Send Rate
Best Effort Messages Sent & Send Rate
Flows{1} Msg{In{25,901(364 0) 25,901(364 0) 0(0 0) 0(0 0) 0X(0 0) (0)} Out{25,901(364 0) <NumBestEffortMsgsSent>(<BestEffortMsgSendRate> <DeltaBestEffortMsgSendRate>) 0(0 0) (25,901 25,901 0 0) (0)} Latency{InOut{0 us} InAck{0 us}}} Ev{51,806(728 0) 25,901[25,901,0,25,901](364 0)} Txn{25,902[(25,902,25,902),(25,902,25,902 (0)),(0,0 (0)),0](364 0) 0} Store{-1}
Guaranteed Messages Sent & Send Rate
Outbound Sequence Numbers
Outbound Queue Sizes
Events Received & Receipt Rate
Flow Events Received, Success vs Fail & Receipt Rate
Transactions Processed, Outstanding Commits & Transaction Rate
The number of outstanding commits represents the transactions currently in flight i.e. (NumCommitsStarted - NumCommitsCompleted)
Flows{1} Msg{In{25,901(364 0) 25,901(364 0) 0(0 0) 0(0 0) 0X(0 0) (0)} Out{25,901(364 0) 25,901(364 0) 0(0 0) (25,901 25,901 0 0) (0)} Latency{InOut{0 us} InAck{0 us}}} Ev{51,806(728 0) 25,901[25,901,0,25,901](364 0)} Txn{<NumTransactions>[(<NumCommitsStarted>,<NumCommitsCompleted>),(<NumSendCommitsStarted>,<NumSendCommitsCompleted> (<SendCommitCompletionQueueSize>)),(<NumStoreCommitsStarted>,<NumStoreCommitsCompleted> (<StoreCommitCompletionQueueSize>)),<NumRollbacks>](<TransactionRate> <DeltaTransactionRate>) <NumFlowEventsPerTransaction>} Store{-1}
Engine Store Size
Transaction Latencies
[Transaction Latencies]
...[mpproc] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[ mproc] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[ mfilt] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[ msend] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[msendc] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[cstart] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[cprolo] [sample=1, min=58 max=58 mean=58 median=58 75%ile=58 90%ile=58 99%ile=58 99.9%ile=58 99.99%ile=58]
...[ csend] [sample=1, min=10 max=10 mean=10 median=10 75%ile=10 90%ile=10 99%ile=10 99.9%ile=10 99.99%ile=10]
...[ctrans] [sample=1, min=9 max=9 mean=9 median=9 75%ile=9 90%ile=9 99%ile=9 99.9%ile=9 99.99%ile=9]
...[cstore] [sample=1, min=777 max=777 mean=777 median=777 75%ile=777 90%ile=777 99%ile=777 99.9%ile=777 99.99%ile=777]
...[cepilo] [sample=1, min=4 max=4 mean=4 median=4 75%ile=4 90%ile=4 99%ile=4 99.9%ile=4 99.99%ile=4]
...[ cfull] [sample=1, min=858 max=858 mean=858 median=858 75%ile=858 90%ile=858 99%ile=858 99.9%ile=858 99.99%ile=858]
...[ tleg1] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[ tleg2] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[ tleg3] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[ inout] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[ inack] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
Event Multiplexer
[Event Multiplexer (ems)]
Disruptor (MultiThreadedSufficientCores, BusySpin)...
[0 of 1,024] 0%
...[o2p] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
Schedule Queue (size=0).
Feeder Queues (max=16, lastDecongest=0)
...X-Server-ems1-Main (aff=[]) has 0 (decongestCount=64500)
......[o2p] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...X-ODS-StoreEventMultiplexer-1 (aff=[3(s0c3t0)]) has 0 (decongestCount=64492)
......[o2p] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...X-Server-ems1-IOThread-1 (aff=[8(s0c11t0)]) has 0 (decongestCount=64490)
......[o2p] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...X-STEMux-ems-2 (aff=[2(s0c2t0)]) has 0 (decongestCount=64488)
......[o2p] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...X-AEP-BusManager-IO-ems.market (aff=[6(s0c9t0)]) has 0 (decongestCount=64488)
......[o2p] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...X-Client-LinkManagerReader[0851c125-bf74-4086-b102-7c75938f6d32] (aff=[7(s0c10t0)]) has 0 (decongestCount=64484)
......[o2p] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
Store
[Store (ems)]
{role=Primary state=Opensize=0}
Commit..{
...In{0(0 0) 0(0 0) }
...Out{128,566(0 0) 128,565(0 0) }
...Complete{128,566(0 0) 0(0 0) }
}
[Provider Specific]
{role=Primary state=NORMAL leader=85a5dd82-f787-4a7e-981f-992b432494c4}
...In{0(0 0) 0(0 0) }
...ICQ{1,0,1,0,0,0}
...Out{128,566(0 0) 128,566(0 0) }
...Ack{128,565(0 0) 0(0 0) }
[Store Latencies]
...[cqs] [sample=10240, min=1 max=1 mean=1 median=1 75%ile=1 90%ile=1 99%ile=1 99.9%ile=1 99.99%ile=1]
...[ s] [sample=10240, min=0 max=6 mean=1 median=1 75%ile=1 90%ile=3 99%ile=3 99.9%ile=4 99.99%ile=5]
...[s2w] [sample=10240, min=2 max=11 mean=3 median=3 75%ile=3 90%ile=4 99%ile=4 99.9%ile=7 99.99%ile=9]
...[s2p] [sample=10240, min=10 max=6155 mean=83 median=15 75%ile=16 90%ile=134 99%ile=1517 99.9%ile=5447 99.99%ile=6129]
...[ w] [sample=10240, min=33 max=6183 mean=109 median=40 75%ile=46 90%ile=163 99%ile=1542 99.9%ile=5471 99.99%ile=6152]
...[w2d] [sample=10240, min=0 max=10 mean=1 median=1 75%ile=1 90%ile=2 99%ile=2 99.9%ile=3 99.99%ile=9]
...[ d] [sample=10240, min=0 max=4 mean=0 median=0 75%ile=1 90%ile=1 99%ile=1 99.9%ile=2 99.99%ile=3]
...[per] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[icr] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[idx] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[ c] [sample=10240, min=38 max=6192 mean=115 median=46 75%ile=53 90%ile=169 99%ile=1550 99.9%ile=5477 99.99%ile=6157]
Bus Manager
[Bus Manager (ems.market)]
In.........{
...Msg{0(0) 0(0) 0(0) 0(0) 0(0) 0(0) 0(0)}
...Pkt{0(0) 0(0)}
...Stab{0(0) 0(0) 0(0) 0(0) 0(0)}
}
Out........{
...Msg{0(0) 0(0) 0(0) 0(0) 0}
...Flush{0(0) 0(0) 0(0%)(0(0%)) 0(0) 0(0%)(0(0%)) 0(0) 0(0) 0(0)}
...Msg{0(0) 0(0) 0(0%)(0(0%)) 0(0) 0(0%)(0(0%)) 0(0)}
}
Txn........{0(0) 0(0) 0(0) 0(0)}
Disruptor..{[0 of 1,024] 0% (SingleThreaded, BusySpin)}
...[o2p] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
Clients....{0}
Channels...{2}
Fails......{0}
[Messaging Latencies (ems@market)]
...[c2o] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[o2s] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[ s] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[s2w] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[ w] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[w2d] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[ d] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[d2i] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[o2i] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
...[w2w] [sample=0, min=-1 max=-1 mean=-1 median=-1 75%ile=-1 90%ile=-1 99%ile=-1 99.9%ile=-1 99.99%ile=-1]
[Binding 'market']
<No Stats Available>