You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::PI::Types::DimensionGroup

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DimensionGroup as input to an Aws::Client method, you can use a vanilla Hash:

{
  group: "String", # required
  dimensions: ["String"],
  limit: 1,
}

A logical grouping of Performance Insights metrics for a related subject area. For example, the db.sql dimension group consists of the following dimensions: db.sql.id, db.sql.db_id, db.sql.statement, and db.sql.tokenized_id.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#dimensionsArray<String>

A list of specific dimensions from a dimension group. If this parameter is not present, then it signifies that all of the dimensions in the group were requested, or are present in the response.

Valid values for elements in the Dimensions array are:

  • db.user.id

  • db.user.name

  • db.host.id

  • db.host.name

  • db.sql.id

  • db.sql.db_id

  • db.sql.statement

  • db.sql.tokenized_id

  • db.sql_tokenized.id

  • db.sql_tokenized.db_id

  • db.sql_tokenized.statement

  • db.wait_event.name

  • db.wait_event.type

  • db.wait_event_type.name

Returns:

  • (Array<String>)

    A list of specific dimensions from a dimension group.

#groupString

The name of the dimension group. Valid values are:

  • db.user

  • db.host

  • db.sql

  • db.sql_tokenized

  • db.wait_event

  • db.wait_event_type

Returns:

  • (String)

    The name of the dimension group.

#limitInteger

The maximum number of items to fetch for this dimension group.

Returns:

  • (Integer)

    The maximum number of items to fetch for this dimension group.