Show / Hide Table of Contents

Class ApplicationTraceConfig

Define the tracing configuration for an application.

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

Properties

DomainId

Declaration
[JsonProperty(PropertyName = "domainId")]
public string DomainId { get; set; }
Property Value
Type Description
string

The OCID of the collector (e.g. an APM Domain) trace events will be sent to.

IsEnabled

Declaration
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Define if tracing is enabled for the resource.

In this article
Back to top