Struct sentry_core::protocol::MonitorConfig
source · pub struct MonitorConfig {
pub schedule: MonitorSchedule,
pub checkin_margin: Option<u64>,
pub max_runtime: Option<u64>,
pub timezone: Option<String>,
pub failure_issue_threshold: Option<u64>,
pub recovery_threshold: Option<u64>,
}
Expand description
The monitor configuration playload for upserting monitors during check-in
Fields§
§schedule: MonitorSchedule
The monitor schedule configuration.
checkin_margin: Option<u64>
How long (in minutes) after the expected check-in time will we wait until we consider the check-in to have been missed.
max_runtime: Option<u64>
How long (in minutes) is the check-in allowed to run for in
MonitorCheckInStatus::InProgress
before it is considered failed.in_rogress
timezone: Option<String>
tz database style timezone string
failure_issue_threshold: Option<u64>
The number of consecutive failed/error check-ins that triggers issue creation.
recovery_threshold: Option<u64>
The number of consecutive successful check-ins that triggers issue resolution.
Trait Implementations§
source§impl Clone for MonitorConfig
impl Clone for MonitorConfig
source§fn clone(&self) -> MonitorConfig
fn clone(&self) -> MonitorConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for MonitorConfig
impl Debug for MonitorConfig
source§impl<'de> Deserialize<'de> for MonitorConfig
impl<'de> Deserialize<'de> for MonitorConfig
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MonitorConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MonitorConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for MonitorConfig
impl PartialEq for MonitorConfig
source§fn eq(&self, other: &MonitorConfig) -> bool
fn eq(&self, other: &MonitorConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for MonitorConfig
impl Serialize for MonitorConfig
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for MonitorConfig
Auto Trait Implementations§
impl Freeze for MonitorConfig
impl RefUnwindSafe for MonitorConfig
impl Send for MonitorConfig
impl Sync for MonitorConfig
impl Unpin for MonitorConfig
impl UnwindSafe for MonitorConfig
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
Mutably borrows from an owned value. Read more