pub struct TopicAssignments {Show 15 fields
pub events: TopicAssignment,
pub attachments: TopicAssignment,
pub transactions: TopicAssignment,
pub outcomes: TopicAssignment,
pub outcomes_billing: TopicAssignment,
pub metrics_sessions: TopicAssignment,
pub metrics_generic: TopicAssignment,
pub profiles: TopicAssignment,
pub replay_events: 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.
metrics_generic: TopicAssignmentTopic name for all other kinds of metrics.
profiles: TopicAssignmentStacktrace topic name
replay_events: TopicAssignmentReplay Events 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 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 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