pub struct TopicAssignments {Show 14 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 unused: BTreeMap<String, TopicAssignment>,
}
Expand description
Configuration for topics.
Fields§
§events: TopicAssignment
Simple events topic name.
attachments: TopicAssignment
Events with attachments topic name.
transactions: TopicAssignment
Transaction events topic name.
outcomes: TopicAssignment
Outcomes topic name.
outcomes_billing: TopicAssignment
Outcomes topic name for billing critical outcomes.
metrics_sessions: TopicAssignment
Topic name for metrics extracted from sessions, aka release health.
metrics_generic: TopicAssignment
Topic name for all other kinds of metrics.
profiles: TopicAssignment
Stacktrace topic name
replay_events: TopicAssignment
Replay Events topic name.
replay_recordings: TopicAssignment
Recordings topic name.
monitors: TopicAssignment
Monitor check-ins.
spans: TopicAssignment
Standalone spans without a transaction.
feedback: TopicAssignment
Feedback events topic.
unused: BTreeMap<String, TopicAssignment>
Additional 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