Show / Hide Table of Contents

Class JfrAttachmentTarget

The target to collect JFR data. A target is a managed instance, with options to further limit to specific application and/or Java Runtime. When the applicationKey isn't specified, then all applications are selected. When the jreKey isn't specified, then all supported Java Runtime versions are selected. When the applicationInstallationKey isn't specified, then all application installations are selected. Keys applicationKey and applicationInstallationKey are mutually exclusive.

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

Properties

ApplicationInstallationKey

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

Unique key that identifies the application installation for JFR data collection.

ApplicationKey

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

Unique key that identifies the application for JFR data collection.

JreKey

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

Unique key that identify the JVM for JFR data collection.

ManagedInstanceId

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

OCID of the Managed Instance to collect JFR data.

Remarks

Required

In this article
Back to top