pub enum StatsDestination {
Agent {
endpoint: Endpoint,
},
Agentless(AgentlessStatsTarget),
}Variants§
Agent
Send ClientStatsPayload as msgpack to the Agent’s /v0.6/stats.
Agentless(AgentlessStatsTarget)
Send the top-level StatsPayload as zstd-compressed msgpack directly to
the intake (/api/v0.2/stats), authenticated.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for StatsDestination
impl RefUnwindSafe for StatsDestination
impl Send for StatsDestination
impl Sync for StatsDestination
impl Unpin for StatsDestination
impl UnsafeUnpin for StatsDestination
impl UnwindSafe for StatsDestination
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