Class ServerSideMetrics
Metrics received for queries from the backend.
public abstract class ServerSideMetrics
- Inheritance
-
ServerSideMetrics
- Inherited Members
- Extension Methods
Constructors
ServerSideMetrics()
protected ServerSideMetrics()
Properties
DocumentLoadTime
Gets the document loading time during query in the Azure Cosmos database service.
public abstract TimeSpan DocumentLoadTime { get; }
Property Value
DocumentWriteTime
Gets the output writing/serializing time during query in the Azure Cosmos database service.
public abstract TimeSpan DocumentWriteTime { get; }
Property Value
IndexHitRatio
Gets the index hit ratio by query in the Azure Cosmos database service. Value is within the range [0,1].
public abstract double IndexHitRatio { get; }
Property Value
IndexLookupTime
Gets the query index lookup time in the Azure Cosmos database service.
public abstract TimeSpan IndexLookupTime { get; }
Property Value
OutputDocumentCount
Gets the number of documents returned by query in the Azure Cosmos DB service.
public abstract long OutputDocumentCount { get; }
Property Value
OutputDocumentSize
Gets the size of documents outputted in bytes during query in the Azure Cosmos database service.
public abstract long OutputDocumentSize { get; }
Property Value
QueryPreparationTime
Gets the query preparation time in the Azure Cosmos database service.
public abstract TimeSpan QueryPreparationTime { get; }
Property Value
RetrievedDocumentCount
Gets the number of documents retrieved during query in the Azure Cosmos database service.
public abstract long RetrievedDocumentCount { get; }
Property Value
RetrievedDocumentSize
Gets the size of documents retrieved in bytes during query in the Azure Cosmos DB service.
public abstract long RetrievedDocumentSize { get; }
Property Value
RuntimeExecutionTime
Gets the query runtime execution time during query in the Azure Cosmos database service.
public abstract TimeSpan RuntimeExecutionTime { get; }
Property Value
TotalTime
Gets the total query time in the Azure Cosmos database service.
public abstract TimeSpan TotalTime { get; }
Property Value
VMExecutionTime
Gets the VMExecution Time.
public abstract TimeSpan VMExecutionTime { get; }