Show / Hide Table of Contents

Class SqlStatisticsTimeSeries

SQL performance statistics per database

Inheritance
object
SqlStatisticsTimeSeries
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class SqlStatisticsTimeSeries

Properties

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

SQL performance statistic name

Remarks

Required

Values

Declaration
[Required(ErrorMessage = "Values is required.")]
[JsonProperty(PropertyName = "values")]
public List<double> Values { get; set; }
Property Value
Type Description
List<double>

SQL performance statistic value

Remarks

Required

In this article
Back to top