pub struct MonitoringUrls {Show 18 fields
pub prometheus_bin: String,
pub grafana_bin: String,
pub loki_bin: String,
pub pyroscope_bin: String,
pub tempo_bin: String,
pub node_exporter_bin: String,
pub prometheus_config: String,
pub datasources_yml: String,
pub all_yml: String,
pub dashboard: String,
pub loki_yml: String,
pub pyroscope_yml: String,
pub tempo_yml: String,
pub prometheus_service: String,
pub loki_service: String,
pub pyroscope_service: String,
pub tempo_service: String,
pub node_exporter_service: String,
}Expand description
URLs for monitoring service installation
Fields§
§prometheus_bin: String§grafana_bin: String§loki_bin: String§pyroscope_bin: String§tempo_bin: String§node_exporter_bin: String§prometheus_config: String§datasources_yml: String§all_yml: String§dashboard: String§loki_yml: String§pyroscope_yml: String§tempo_yml: String§prometheus_service: String§loki_service: String§pyroscope_service: String§tempo_service: String§node_exporter_service: StringAuto Trait Implementations§
impl Freeze for MonitoringUrls
impl RefUnwindSafe for MonitoringUrls
impl Send for MonitoringUrls
impl Sync for MonitoringUrls
impl Unpin for MonitoringUrls
impl UnwindSafe for MonitoringUrls
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.