Application Performance Monitoring Config Common Types

DBMS_CLOUD_OCI_APM_CONFIG_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APM_CONFIG_APDEX_T Type

An Apdex configuration rule. The Apdex score is computed based on how the response time of a span compares to two predefined threshold values. The first threshold defines the maximum response time that is considered satisfactory for the end user. The second one defines the maximum response time that is considered tolerable. All times larger than that will be considered frustrating for the end user. An Apdex configuration rule works by selecting a subset of spans based on a filter expression and applying the two threshold comparisons to compute a score for each of the selected spans. The rule has an \"isApplyToErrorSpans\" property that controls whether or not to compute the Apdex for spans that have been marked as errors. If this property is set to \"true\", then the Apdex score for error spans is computed in the same way as for non-error ones. If set to \"false\", then computation for error spans is skipped, and the score is set to \"frustrating\" regardless of the configured thresholds. The default is \"false\". The \"isEnabled\" property controls whether or not an Apdex score is computed and can be used to disable Apdex score for certain spans. The default is \"true\". The \"priority\" property specifies the importance of the rule within a rule set. Lower values indicate a higher priority. Rules with higher priorities are evaluated first in the rule set. The priority of the rules must be unique within a rule set.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_apdex_t FORCE AUTHID CURRENT_USER IS OBJECT (
  filter_text varchar2(32767),
  priority number,
  is_enabled number,
  satisfied_response_time number,
  tolerating_response_time number,
  is_apply_to_error_spans number,
  display_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_apdex_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_apdex_t (
    filter_text varchar2,
    priority number,
    is_enabled number,
    satisfied_response_time number,
    tolerating_response_time number,
    is_apply_to_error_spans number,
    display_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

filter_text

(required) The string that defines the Span Filter expression.

priority

(required) The priority controls the order in which multiple rules in a rule set are applied. Lower values indicate higher priorities. Rules with higher priority are applied first, and once a match is found, the rest of the rules are ignored. Rules within the same rule set cannot have the same priority.

is_enabled

(optional) Specifies whether the Apdex score should be computed for spans matching the rule. This can be used to disable Apdex score for spans that do not need or require it. The default is \"true\".

satisfied_response_time

(optional) The maximum response time in milliseconds that is considered \"satisfactory\" for the end user.

tolerating_response_time

(optional) The maximum response time in milliseconds that is considered \"tolerable\" for the end user. A response time beyond this threshold is considered \"frustrating\". This value cannot be lower than \"satisfiedResponseTime\".

is_apply_to_error_spans

(optional) Specifies whether an Apdex score should be computed for error spans. Setting it to \"true\" means that the Apdex score is computed in the usual way. Setting it to \"false\" skips the Apdex computation and sets the Apdex score to \"frustrating\" regardless of the configured thresholds. The default is \"false\".

display_name

(optional) The name by which a configuration entity is displayed to the end user.

DBMS_CLOUD_OCI_APM_CONFIG_CONFIG_T Type

A configuration item, which has a number of mutually exclusive properties that can be used to set specific portions of the configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  config_type varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  created_by varchar2(32767),
  updated_by varchar2(32767),
  etag varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_config_t (
    id varchar2,
    config_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    created_by varchar2,
    updated_by varchar2,
    etag varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(optional) The OCID of the configuration item. An OCID is generated when the item is created.

config_type

(required) The type of configuration item.

Allowed values are: 'SPAN_FILTER', 'METRIC_GROUP', 'APDEX', 'OPTIONS'

time_created

(optional) The time the resource was created, expressed in RFC 3339 timestamp format. Example: `2020-02-12T22:47:12.613Z`

time_updated

(optional) The time the resource was updated, expressed in RFC 3339 timestamp format. Example: `2020-02-13T22:47:12.613Z`

created_by

(optional) The OCID of a user.

updated_by

(optional) The OCID of a user.

etag

(optional) For optimistic concurrency control. See `if-match`.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_APM_CONFIG_APDEX_TBL Type

Nested table type of dbms_cloud_oci_apm_config_apdex_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_apdex_tbl FORCE IS TABLE OF (dbms_cloud_oci_apm_config_apdex_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APM_CONFIG_APDEX_RULES_T Type

The set of Apdex rules to be used in Apdex computation. In the current version, only one rule set can exist in the configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_apdex_rules_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_config_t (
  display_name varchar2(32767),
  rules dbms_cloud_oci_apm_config_apdex_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_apdex_rules_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_apdex_rules_t (
    id varchar2,
    config_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    created_by varchar2,
    updated_by varchar2,
    etag varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    rules dbms_cloud_oci_apm_config_apdex_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_apdex_rules_t is a subtype of the dbms_cloud_oci_apm_config_config_t type.

Fields

Field Description

display_name

(optional) The name by which a configuration entity is displayed to the end user.

rules

(optional)

DBMS_CLOUD_OCI_APM_CONFIG_CONFIG_SUMMARY_T Type

A description of a configuration item. It specifies all the properties that define the configuration item.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_config_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  config_type varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  created_by varchar2(32767),
  updated_by varchar2(32767),
  etag varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_config_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_config_summary_t (
    id varchar2,
    config_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    created_by varchar2,
    updated_by varchar2,
    etag varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(optional) The OCID of the configuration item. An OCID is generated when the item is created.

config_type

(required) The type of configuration item.

Allowed values are: 'SPAN_FILTER', 'METRIC_GROUP', 'APDEX', 'OPTIONS'

time_created

(optional) The time the resource was created, expressed in RFC 3339 timestamp format. Example: `2020-02-12T22:47:12.613Z`

time_updated

(optional) The time the resource was updated, expressed in RFC 3339 timestamp format. Example: `2020-02-13T22:47:12.613Z`

created_by

(optional) The OCID of a user.

updated_by

(optional) The OCID of a user.

etag

(optional) For optimistic concurrency control. See `if-match`.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_APM_CONFIG_APDEX_RULES_SUMMARY_T Type

The set of Apdex rules used in Apdex computation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_apdex_rules_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_config_summary_t (
  rules dbms_cloud_oci_apm_config_apdex_tbl,
  display_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_apdex_rules_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_apdex_rules_summary_t (
    id varchar2,
    config_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    created_by varchar2,
    updated_by varchar2,
    etag varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    rules dbms_cloud_oci_apm_config_apdex_tbl,
    display_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_apdex_rules_summary_t is a subtype of the dbms_cloud_oci_apm_config_config_summary_t type.

Fields

Field Description

rules

(optional)

display_name

(optional) The name by which a configuration entity is displayed to the end user.

DBMS_CLOUD_OCI_APM_CONFIG_CONFIG_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apm_config_config_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_config_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apm_config_config_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APM_CONFIG_CONFIG_COLLECTION_T Type

A collection of configuration items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_config_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apm_config_config_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_config_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_config_collection_t (
    items dbms_cloud_oci_apm_config_config_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required)

DBMS_CLOUD_OCI_APM_CONFIG_CREATE_CONFIG_DETAILS_T Type

The request body used to create new configuration items. It must specify the configuration type of the item, as well as the actual data to populate the item with.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_create_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  config_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_create_config_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_create_config_details_t (
    config_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

config_type

(required) The type of configuration item.

Allowed values are: 'SPAN_FILTER', 'METRIC_GROUP', 'APDEX', 'OPTIONS'

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_APM_CONFIG_CREATE_APDEX_RULES_DETAILS_T Type

The set of Apdex rules to be used in Apdex computation. In the current version, only one rule set may exist per configuration, and attempting to create a rule set if it already exists results in an error.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_create_apdex_rules_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_create_config_details_t (
  rules dbms_cloud_oci_apm_config_apdex_tbl,
  display_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_create_apdex_rules_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_create_apdex_rules_details_t (
    config_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    rules dbms_cloud_oci_apm_config_apdex_tbl,
    display_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_create_apdex_rules_details_t is a subtype of the dbms_cloud_oci_apm_config_create_config_details_t type.

Fields

Field Description

rules

(required)

display_name

(required) The name by which a configuration entity is displayed to the end user.

DBMS_CLOUD_OCI_APM_CONFIG_DIMENSION_T Type

A dimension is a label that is used to describe or group metrics.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_dimension_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  value_source varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_dimension_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_dimension_t (
    name varchar2,
    value_source varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The name of the dimension.

value_source

(optional) The source to populate the dimension. This must not be specified.

DBMS_CLOUD_OCI_APM_CONFIG_METRIC_T Type

A metric is a quantitative measurement of an entity.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_metric_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  value_source varchar2(32767),
  unit varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_metric_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_metric_t (
    name varchar2,
    value_source varchar2,
    unit varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The name of the metric. This must be a known metric name.

value_source

(optional) This must not be set.

unit

(optional) The unit of the metric.

description

(optional) A description of the metric.

DBMS_CLOUD_OCI_APM_CONFIG_DIMENSION_TBL Type

Nested table type of dbms_cloud_oci_apm_config_dimension_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_dimension_tbl FORCE IS TABLE OF (dbms_cloud_oci_apm_config_dimension_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APM_CONFIG_METRIC_TBL Type

Nested table type of dbms_cloud_oci_apm_config_metric_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_metric_tbl FORCE IS TABLE OF (dbms_cloud_oci_apm_config_metric_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APM_CONFIG_CREATE_METRIC_GROUP_DETAILS_T Type

A metric group defines a set of metrics to collect from a span. It uses a span filter to specify which spans to process. The set is then published to a namespace, which is a product level subdivision of metrics.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_create_metric_group_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_create_config_details_t (
  display_name varchar2(32767),
  filter_id varchar2(32767),
  namespace varchar2(32767),
  dimensions dbms_cloud_oci_apm_config_dimension_tbl,
  metrics dbms_cloud_oci_apm_config_metric_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_create_metric_group_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_create_metric_group_details_t (
    config_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    filter_id varchar2,
    namespace varchar2,
    dimensions dbms_cloud_oci_apm_config_dimension_tbl,
    metrics dbms_cloud_oci_apm_config_metric_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_create_metric_group_details_t is a subtype of the dbms_cloud_oci_apm_config_create_config_details_t type.

Fields

Field Description

display_name

(required) The name by which a configuration entity is displayed to the end user.

filter_id

(required) The OCID of a Span Filter. The filterId is mandatory for the creation of MetricGroups. A filterId is generated when a Span Filter is created.

namespace

(optional) The namespace to which the metrics are published. It must be one of several predefined namespaces.

dimensions

(optional) A list of dimensions for the metric. This variable should not be used.

metrics

(required) The list of metrics in this group.

DBMS_CLOUD_OCI_APM_CONFIG_CREATE_OPTIONS_DETAILS_T Type

An Options object represents configuration options.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_create_options_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_create_config_details_t (
  display_name varchar2(32767),
  options json_element_t,
  l_group varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_create_options_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_create_options_details_t (
    config_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    options json_element_t,
    l_group varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_create_options_details_t is a subtype of the dbms_cloud_oci_apm_config_create_config_details_t type.

Fields

Field Description

display_name

(optional) The name by which a configuration entity is displayed to the end user.

options

(optional) The options are stored here as JSON.

l_group

(optional) A string that specifies the group that an OPTIONS item belongs to.

description

(optional) An optional string that describes what the options are intended or used for.

DBMS_CLOUD_OCI_APM_CONFIG_CREATE_SPAN_FILTER_DETAILS_T Type

A named setting that specifies the filter criteria to match a subset of the spans.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_create_span_filter_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_create_config_details_t (
  display_name varchar2(32767),
  filter_text varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_create_span_filter_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_create_span_filter_details_t (
    config_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    filter_text varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_create_span_filter_details_t is a subtype of the dbms_cloud_oci_apm_config_create_config_details_t type.

Fields

Field Description

display_name

(required) The name by which a configuration entity is displayed to the end user.

filter_text

(required) The string that defines the Span Filter expression.

description

(optional) An optional string that describes what the filter is intended or used for.

DBMS_CLOUD_OCI_APM_CONFIG_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_error_t (
    code varchar2,
    message varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A short error code that defines the error, meant for programmatic parsing.

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_APM_CONFIG_METRIC_GROUP_T Type

A metric group defines a set of metrics to collect from a span. It uses a span filter to specify which spans to process. The set is then published to a namespace, which is a product level subdivision of metrics.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_metric_group_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_config_t (
  display_name varchar2(32767),
  filter_id varchar2(32767),
  namespace varchar2(32767),
  dimensions dbms_cloud_oci_apm_config_dimension_tbl,
  metrics dbms_cloud_oci_apm_config_metric_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_metric_group_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_metric_group_t (
    id varchar2,
    config_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    created_by varchar2,
    updated_by varchar2,
    etag varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    filter_id varchar2,
    namespace varchar2,
    dimensions dbms_cloud_oci_apm_config_dimension_tbl,
    metrics dbms_cloud_oci_apm_config_metric_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_metric_group_t is a subtype of the dbms_cloud_oci_apm_config_config_t type.

Fields

Field Description

display_name

(optional) The name by which a configuration entity is displayed to the end user.

filter_id

(optional) The OCID of a Span Filter. The filterId is mandatory for the creation of MetricGroups. A filterId is generated when a Span Filter is created.

namespace

(optional) The namespace to which the metrics are published. It must be one of several predefined namespaces.

dimensions

(optional) A list of dimensions for the metric. This variable should not be used.

metrics

(optional) The list of metrics in this group.

DBMS_CLOUD_OCI_APM_CONFIG_METRIC_GROUP_SUMMARY_T Type

A metric group defines a set of metrics to collect from a span. It uses a span filter to specify which spans to process. The set is then published to a namespace, which is a product level subdivision of metrics.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_metric_group_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_config_summary_t (
  display_name varchar2(32767),
  filter_id varchar2(32767),
  namespace varchar2(32767),
  dimensions dbms_cloud_oci_apm_config_dimension_tbl,
  metrics dbms_cloud_oci_apm_config_metric_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_metric_group_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_metric_group_summary_t (
    id varchar2,
    config_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    created_by varchar2,
    updated_by varchar2,
    etag varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    filter_id varchar2,
    namespace varchar2,
    dimensions dbms_cloud_oci_apm_config_dimension_tbl,
    metrics dbms_cloud_oci_apm_config_metric_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_metric_group_summary_t is a subtype of the dbms_cloud_oci_apm_config_config_summary_t type.

Fields

Field Description

display_name

(optional) The name by which a configuration entity is displayed to the end user.

filter_id

(optional) The OCID of a Span Filter. The filterId is mandatory for the creation of MetricGroups. A filterId is generated when a Span Filter is created.

namespace

(optional) The namespace to which the metrics are published. It must be one of several predefined namespaces.

dimensions

(optional) A list of dimensions for the metric. This variable should not be used.

metrics

(optional) The list of metrics in this group.

DBMS_CLOUD_OCI_APM_CONFIG_NAMESPACE_T Type

Namespaces represent a product level subdivision by name.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_namespace_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_namespace_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_namespace_t (
    name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) Name of the namespace.

DBMS_CLOUD_OCI_APM_CONFIG_NAMESPACE_TBL Type

Nested table type of dbms_cloud_oci_apm_config_namespace_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_namespace_tbl FORCE IS TABLE OF (dbms_cloud_oci_apm_config_namespace_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APM_CONFIG_NAMESPACE_COLLECTION_T Type

Collection of available namespaces.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_namespace_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apm_config_namespace_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_namespace_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_namespace_collection_t (
    items dbms_cloud_oci_apm_config_namespace_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The list of available namespaces.

DBMS_CLOUD_OCI_APM_CONFIG_NAMESPACE_METRIC_T Type

Metric associated with a namespace.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_namespace_metric_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  l_type varchar2(32767),
  unit varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_namespace_metric_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_namespace_metric_t (
    name varchar2,
    l_type varchar2,
    unit varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) Name of the metric.

l_type

(required) Type of metric.

Allowed values are: 'COUNTER', 'GAUGE'

unit

(optional) Unit of the metric.

DBMS_CLOUD_OCI_APM_CONFIG_NAMESPACE_METRIC_TBL Type

Nested table type of dbms_cloud_oci_apm_config_namespace_metric_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_namespace_metric_tbl FORCE IS TABLE OF (dbms_cloud_oci_apm_config_namespace_metric_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APM_CONFIG_NAMESPACE_METRIC_COLLECTION_T Type

Collection of available namespace metrics.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_namespace_metric_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apm_config_namespace_metric_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_namespace_metric_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_namespace_metric_collection_t (
    items dbms_cloud_oci_apm_config_namespace_metric_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The list of available namespace metrics.

DBMS_CLOUD_OCI_APM_CONFIG_OPTIONS_T Type

An object that represents configuration options.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_options_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_config_t (
  display_name varchar2(32767),
  options json_element_t,
  l_group varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_options_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_options_t (
    id varchar2,
    config_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    created_by varchar2,
    updated_by varchar2,
    etag varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    options json_element_t,
    l_group varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_options_t is a subtype of the dbms_cloud_oci_apm_config_config_t type.

Fields

Field Description

display_name

(optional) The name by which a configuration entity is displayed to the end user.

options

(optional) The options are stored here as JSON.

l_group

(optional) A string that specifies the group that an OPTIONS item belongs to.

description

(optional) An optional string that describes what the options are intended or used for.

DBMS_CLOUD_OCI_APM_CONFIG_OPTIONS_SUMMARY_T Type

An Options object represents configuration options.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_options_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_config_summary_t (
  display_name varchar2(32767),
  options json_element_t,
  l_group varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_options_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_options_summary_t (
    id varchar2,
    config_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    created_by varchar2,
    updated_by varchar2,
    etag varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    options json_element_t,
    l_group varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_options_summary_t is a subtype of the dbms_cloud_oci_apm_config_config_summary_t type.

Fields

Field Description

display_name

(optional) The name by which a configuration entity is displayed to the end user.

options

(optional) The options are stored here as JSON.

l_group

(optional) A string that specifies the group that an OPTIONS item belongs to.

description

(optional) An optional string that describes what the options are intended or used for.

DBMS_CLOUD_OCI_APM_CONFIG_RETRIEVE_NAMESPACE_METRICS_DETAILS_T Type

The request body used to retrieve metrics for the specified namespace.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_retrieve_namespace_metrics_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_retrieve_namespace_metrics_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_retrieve_namespace_metrics_details_t (
    name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) Name of the namespace.

DBMS_CLOUD_OCI_APM_CONFIG_SPAN_FILTER_REFERENCE_T Type

Describes an item that references the span filter.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_span_filter_reference_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  config_type varchar2(32767),
  options_group varchar2(32767),
  display_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_span_filter_reference_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_span_filter_reference_t (
    id varchar2,
    config_type varchar2,
    options_group varchar2,
    display_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The OCID of the configuration item. An OCID is generated when the item is created.

config_type

(optional) The type of configuration item.

Allowed values are: 'SPAN_FILTER', 'METRIC_GROUP', 'APDEX', 'OPTIONS'

options_group

(optional) A string that specifies the group that an OPTIONS item belongs to.

display_name

(optional) The name by which a configuration entity is displayed to the end user.

DBMS_CLOUD_OCI_APM_CONFIG_SPAN_FILTER_REFERENCE_TBL Type

Nested table type of dbms_cloud_oci_apm_config_span_filter_reference_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_span_filter_reference_tbl FORCE IS TABLE OF (dbms_cloud_oci_apm_config_span_filter_reference_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APM_CONFIG_SPAN_FILTER_T Type

A named setting that specifies the filter criteria to match a subset of the spans.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_span_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_config_t (
  display_name varchar2(32767),
  filter_text varchar2(32767),
  in_use_by dbms_cloud_oci_apm_config_span_filter_reference_tbl,
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_span_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_span_filter_t (
    id varchar2,
    config_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    created_by varchar2,
    updated_by varchar2,
    etag varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    filter_text varchar2,
    in_use_by dbms_cloud_oci_apm_config_span_filter_reference_tbl,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_span_filter_t is a subtype of the dbms_cloud_oci_apm_config_config_t type.

Fields

Field Description

display_name

(optional) The name by which a configuration entity is displayed to the end user.

filter_text

(optional) The string that defines the Span Filter expression.

in_use_by

(optional) The list of configuration items that reference the span filter.

description

(optional) An optional string that describes what the span filter is intended or used for.

DBMS_CLOUD_OCI_APM_CONFIG_SPAN_FILTER_SUMMARY_T Type

A named setting that specifies the span filter criteria to match a subset of the spans.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_span_filter_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_config_summary_t (
  display_name varchar2(32767),
  filter_text varchar2(32767),
  in_use_by dbms_cloud_oci_apm_config_span_filter_reference_tbl,
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_span_filter_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_span_filter_summary_t (
    id varchar2,
    config_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    created_by varchar2,
    updated_by varchar2,
    etag varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    filter_text varchar2,
    in_use_by dbms_cloud_oci_apm_config_span_filter_reference_tbl,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_span_filter_summary_t is a subtype of the dbms_cloud_oci_apm_config_config_summary_t type.

Fields

Field Description

display_name

(optional) The name by which a configuration entity is displayed to the end user.

filter_text

(optional) The string that defines the Span Filter expression.

in_use_by

(optional) The list of configuration items that reference the span filter.

description

(optional) An optional string that describes what the filter is intended or used for.

DBMS_CLOUD_OCI_APM_CONFIG_UPDATE_CONFIG_DETAILS_T Type

The request body used to update the configuration item. It must specify the data to update the item with.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_update_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  config_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_update_config_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_update_config_details_t (
    config_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

config_type

(required) The type of configuration item.

Allowed values are: 'SPAN_FILTER', 'METRIC_GROUP', 'APDEX', 'OPTIONS'

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_APM_CONFIG_UPDATE_APDEX_RULES_DETAILS_T Type

The set of Apdex rules to be used in Apdex computation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_update_apdex_rules_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_update_config_details_t (
  rules dbms_cloud_oci_apm_config_apdex_tbl,
  display_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_update_apdex_rules_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_update_apdex_rules_details_t (
    config_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    rules dbms_cloud_oci_apm_config_apdex_tbl,
    display_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_update_apdex_rules_details_t is a subtype of the dbms_cloud_oci_apm_config_update_config_details_t type.

Fields

Field Description

rules

(required)

display_name

(optional) The name by which a configuration entity is displayed to the end user.

DBMS_CLOUD_OCI_APM_CONFIG_UPDATE_METRIC_GROUP_DETAILS_T Type

A metric group defines a set of metrics to collect from a span. It uses a span filter to specify which spans to process. The set is then published to a namespace, which is a product level subdivision of metrics.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_update_metric_group_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_update_config_details_t (
  display_name varchar2(32767),
  filter_id varchar2(32767),
  namespace varchar2(32767),
  dimensions dbms_cloud_oci_apm_config_dimension_tbl,
  metrics dbms_cloud_oci_apm_config_metric_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_update_metric_group_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_update_metric_group_details_t (
    config_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    filter_id varchar2,
    namespace varchar2,
    dimensions dbms_cloud_oci_apm_config_dimension_tbl,
    metrics dbms_cloud_oci_apm_config_metric_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_update_metric_group_details_t is a subtype of the dbms_cloud_oci_apm_config_update_config_details_t type.

Fields

Field Description

display_name

(optional) The name by which a configuration entity is displayed to the end user.

filter_id

(optional) The OCID of a Span Filter. The filterId is mandatory for the creation of MetricGroups. A filterId is generated when a Span Filter is created.

namespace

(optional) The namespace to which the metrics are published. It must be one of several predefined namespaces.

dimensions

(optional) A list of dimensions for the metric. This variable should not be used.

metrics

(optional) The list of metrics in this group.

DBMS_CLOUD_OCI_APM_CONFIG_UPDATE_OPTIONS_DETAILS_T Type

An Options object represents configuration options.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_update_options_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_update_config_details_t (
  display_name varchar2(32767),
  options json_element_t,
  l_group varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_update_options_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_update_options_details_t (
    config_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    options json_element_t,
    l_group varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_update_options_details_t is a subtype of the dbms_cloud_oci_apm_config_update_config_details_t type.

Fields

Field Description

display_name

(optional) The name by which a configuration entity is displayed to the end user.

options

(optional) The options are stored here as JSON.

l_group

(optional) A string that specifies the group that an OPTIONS item belongs to.

description

(optional) An optional string that describes what the options are intended or used for.

DBMS_CLOUD_OCI_APM_CONFIG_UPDATE_SPAN_FILTER_DETAILS_T Type

A named setting that specifies the filter criteria to match a subset of the spans.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_update_span_filter_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apm_config_update_config_details_t (
  display_name varchar2(32767),
  filter_text varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_update_span_filter_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_update_span_filter_details_t (
    config_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    display_name varchar2,
    filter_text varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apm_config_update_span_filter_details_t is a subtype of the dbms_cloud_oci_apm_config_update_config_details_t type.

Fields

Field Description

display_name

(optional) The name by which a configuration entity is displayed to the end user.

filter_text

(optional) The string that defines the Span Filter expression.

description

(optional) An optional string that describes what the filter is intended or used for.

DBMS_CLOUD_OCI_APM_CONFIG_VALIDATE_SPAN_FILTER_PATTERN_DETAILS_T Type

The request body used to validate a Span Filter pattern.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apm_config_validate_span_filter_pattern_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  filter_text varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_validate_span_filter_pattern_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apm_config_validate_span_filter_pattern_details_t (
    filter_text varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

filter_text

(required) The string that defines the Span Filter expression.

Was this article helpful?