Struct aws_sdk_pi::types::ResponseResourceMetricKey
source · #[non_exhaustive]pub struct ResponseResourceMetricKey {
pub metric: String,
pub dimensions: Option<HashMap<String, String>>,
}
Expand description
An object describing a Performance Insights metric and one or more dimensions for that metric.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.metric: String
The name of a Performance Insights metric to be measured.
Valid values for Metric
are:
-
db.load.avg
- A scaled representation of the number of active sessions for the database engine. -
db.sampledload.avg
- The raw number of active sessions for the database engine. -
The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide.
-
The counter metrics listed in Performance Insights operating system counters in the Amazon RDS User Guide.
If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg
and db.sampledload.avg
are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg
showing the scaled values, db.sampledload.avg
showing the raw values, and db.sampledload.avg
less than db.load.avg
. For most use cases, you can query db.load.avg
only.
dimensions: Option<HashMap<String, String>>
The valid dimensions for the metric.
Implementations§
source§impl ResponseResourceMetricKey
impl ResponseResourceMetricKey
sourcepub fn metric(&self) -> &str
pub fn metric(&self) -> &str
The name of a Performance Insights metric to be measured.
Valid values for Metric
are:
-
db.load.avg
- A scaled representation of the number of active sessions for the database engine. -
db.sampledload.avg
- The raw number of active sessions for the database engine. -
The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide.
-
The counter metrics listed in Performance Insights operating system counters in the Amazon RDS User Guide.
If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg
and db.sampledload.avg
are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg
showing the scaled values, db.sampledload.avg
showing the raw values, and db.sampledload.avg
less than db.load.avg
. For most use cases, you can query db.load.avg
only.
source§impl ResponseResourceMetricKey
impl ResponseResourceMetricKey
sourcepub fn builder() -> ResponseResourceMetricKeyBuilder
pub fn builder() -> ResponseResourceMetricKeyBuilder
Creates a new builder-style object to manufacture ResponseResourceMetricKey
.
Trait Implementations§
source§impl Clone for ResponseResourceMetricKey
impl Clone for ResponseResourceMetricKey
source§fn clone(&self) -> ResponseResourceMetricKey
fn clone(&self) -> ResponseResourceMetricKey
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ResponseResourceMetricKey
impl Debug for ResponseResourceMetricKey
source§impl PartialEq for ResponseResourceMetricKey
impl PartialEq for ResponseResourceMetricKey
source§fn eq(&self, other: &ResponseResourceMetricKey) -> bool
fn eq(&self, other: &ResponseResourceMetricKey) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResponseResourceMetricKey
Auto Trait Implementations§
impl Freeze for ResponseResourceMetricKey
impl RefUnwindSafe for ResponseResourceMetricKey
impl Send for ResponseResourceMetricKey
impl Sync for ResponseResourceMetricKey
impl Unpin for ResponseResourceMetricKey
impl UnwindSafe for ResponseResourceMetricKey
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more