Enum ServiceMetricType
Defines a metric type collected over specific time interval which describes performance, load, and quality of a service.
Namespace: Nevatech.Vsb.Repository.Entities
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public enum ServiceMetricType
Fields
| Name | Description |
|---|---|
| AverageDuration | Average duration (time between receiving/sending request and sending/receiving response) of a request/response transaction (in milliseconds). |
| AverageSize | Average size (sum of sent and received bytes) of a transaction (in bytes). |
| ExceptionCount | Number of transactions that failed because of communication errors. |
| ExceptionPercent | Percent of failed transactions in all transactions (ExceptionCount / TotalCount * 100) (in whole percents). |
| FaultCount | Number of faulted transactions. |
| FaultPercent | Percent of faulted transactions in all transactions (FailureCount / TotalCount * 100) (in whole percents). |
| MaximumDuration | Maximum duration (time between receiving/sending request and sending/receiving response) of a request/response transaction (in milliseconds). |
| MaximumSize | Maximum size (sum of sent and received bytes) of a transaction (in bytes). |
| RequestedBytes | Number of bytes generated by request messages (received bytes on inbound side or sent bytes on outbound side) (in bytes). |
| RespondedBytes | Number of bytes generated by response messages (sent bytes on inbound side or received bytes on outbound side) (in bytes). |
| RespondedBytesPercent | Percent of traffic generated by response messages in all traffic (RespondedBytes / TotalBytes * 100) (in whole percents). |
| SuccessCount | Number of successful transactions. |
| TotalBytes | Total number of sent and received bytes (in bytes). |
| TotalCount | Total number of transactions. |