public sealed class UsageStats : IMessage<UsageStats>, IEquatable<UsageStats>, IDeepCloneable<UsageStats>, IBufferMessage, IMessage
Detailed statistics on the entry's usage.
Usage statistics have the following limitations:
- Only BigQuery tables have them.
- They only include BigQuery query jobs.
- They might be underestimated because wildcard table references are not yet counted. For more information, see Querying multiple tables using a wildcard table
Implements
IMessage<UsageStats>, IEquatable<UsageStats>, IDeepCloneable<UsageStats>, IBufferMessage, IMessageNamespace
Google.Cloud.DataCatalog.V1Assembly
Google.Cloud.DataCatalog.V1.dll
Constructors
UsageStats()
public UsageStats()
UsageStats(UsageStats)
public UsageStats(UsageStats other)
Parameter | |
---|---|
Name | Description |
other | UsageStats |
Properties
TotalCancellations
public float TotalCancellations { get; set; }
The number of cancelled attempts to use the underlying entry.
Property Value | |
---|---|
Type | Description |
Single |
TotalCompletions
public float TotalCompletions { get; set; }
The number of successful uses of the underlying entry.
Property Value | |
---|---|
Type | Description |
Single |
TotalExecutionTimeForCompletionsMillis
public float TotalExecutionTimeForCompletionsMillis { get; set; }
Total time spent only on successful uses, in milliseconds.
Property Value | |
---|---|
Type | Description |
Single |
TotalFailures
public float TotalFailures { get; set; }
The number of failed attempts to use the underlying entry.
Property Value | |
---|---|
Type | Description |
Single |