pub struct TopicAssignments {Show 13 fields
pub events: TopicAssignment,
pub attachments: TopicAssignment,
pub transactions: TopicAssignment,
pub outcomes: TopicAssignment,
pub outcomes_billing: TopicAssignment,
pub metrics_sessions: TopicAssignment,
pub profiles: TopicAssignment,
pub replay_recordings: TopicAssignment,
pub monitors: TopicAssignment,
pub spans: TopicAssignment,
pub feedback: TopicAssignment,
pub items: TopicAssignment,
pub unused: Unused,
}Expand description
Configuration for topics.
Fields§
§events: TopicAssignmentSimple events topic name.
attachments: TopicAssignmentEvents with attachments topic name.
transactions: TopicAssignmentTransaction events topic name.
outcomes: TopicAssignmentOutcomes topic name.
outcomes_billing: TopicAssignmentOutcomes topic name for billing critical outcomes.
metrics_sessions: TopicAssignmentTopic name for metrics extracted from sessions, aka release health.
profiles: TopicAssignmentStacktrace topic name
replay_recordings: TopicAssignmentRecordings topic name.
monitors: TopicAssignmentMonitor check-ins.
spans: TopicAssignmentStandalone spans without a transaction.
feedback: TopicAssignmentFeedback events topic.
items: TopicAssignmentItems topic.
unused: UnusedAdditional topic assignments configured but currently unused by this Relay instance.
Implementations§
Source§impl TopicAssignments
impl TopicAssignments
Sourcepub fn get(&self, kafka_topic: KafkaTopic) -> &TopicAssignment
pub fn get(&self, kafka_topic: KafkaTopic) -> &TopicAssignment
Get a topic assignment by KafkaTopic value
Trait Implementations§
Source§impl Clone for TopicAssignments
impl Clone for TopicAssignments
Source§fn clone(&self) -> TopicAssignments
fn clone(&self) -> TopicAssignments
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TopicAssignments
impl Debug for TopicAssignments
Source§impl Default for TopicAssignments
impl Default for TopicAssignments
Source§impl<'de> Deserialize<'de> for TopicAssignmentswhere
TopicAssignments: Default,
impl<'de> Deserialize<'de> for TopicAssignmentswhere
TopicAssignments: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TopicAssignments
impl RefUnwindSafe for TopicAssignments
impl Send for TopicAssignments
impl Sync for TopicAssignments
impl Unpin for TopicAssignments
impl UnsafeUnpin for TopicAssignments
impl UnwindSafe for TopicAssignments
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more