Show / Hide Table of Contents

Class UnifiedAgentMonitoringUrlSource

Kubernetes source object.

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

Properties

Name

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

Unique name for the source.

Remarks

Required

ScrapeTargets

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

List of UnifiedAgentKubernetesScrapeTarget.

Remarks

Required

In this article
Back to top