pub struct DiscordLayerBuilder { /* private fields */ }
Expand description
A builder for creating a Discord layer.
The layer requires a regex for selecting events to be sent to Discord by their target. Specifying no filter (e.g. “.*”) will cause an explosion in the number of messages observed by the layer.
Several methods expose initialization of optional filtering mechanisms, along with Discord configuration that defaults to searching in the local environment variables.
Implementations§
source§impl DiscordLayerBuilder
impl DiscordLayerBuilder
sourcepub fn message_filters(self, filters: EventFilters) -> Self
pub fn message_filters(self, filters: EventFilters) -> Self
Filter events by their message.
Filter type semantics:
- Positive: Exclude an event if the message MATCHES a given regex, and
- Negative: Exclude an event if the message does NOT MATCH a given regex.
sourcepub fn event_by_field_filters(self, filters: EventFilters) -> Self
pub fn event_by_field_filters(self, filters: EventFilters) -> Self
Filter events by fields.
Filter type semantics:
- Positive: Exclude the event if its key MATCHES a given regex.
- Negative: Exclude the event if its key does NOT MATCH a given regex.
sourcepub fn field_exclusion_filters(self, filters: Vec<Regex>) -> Self
pub fn field_exclusion_filters(self, filters: Vec<Regex>) -> Self
Filter fields of events from being sent to Discord.
Filter type semantics:
- Positive: Exclude event fields if the field’s key MATCHES any provided regular expressions.
Examples found in repository?
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
async fn main() {
let targets_to_filter: EventFilters = Regex::new("exclude_fields_from_messages").unwrap().into();
let fields_to_exclude = vec![
Regex::new(".*token.*").unwrap(),
Regex::new(".*password.*").unwrap(),
Regex::new("command").unwrap(),
];
let (discord_layer, background_worker) = DiscordLayer::builder("test-app".to_string(), targets_to_filter)
.field_exclusion_filters(fields_to_exclude)
.build();
let subscriber = Registry::default().with(discord_layer);
tracing::subscriber::set_global_default(subscriber).unwrap();
handler().await;
background_worker.shutdown().await;
}
sourcepub fn discord_config(self, config: DiscordConfig) -> Self
pub fn discord_config(self, config: DiscordConfig) -> Self
Configure the layer’s connection to the Discord Webhook API.
sourcepub fn level_filters(self, level_filters: String) -> Self
pub fn level_filters(self, level_filters: String) -> Self
Configure which levels of events to send to Discord.
sourcepub fn build(self) -> (DiscordLayer, BackgroundWorker)
pub fn build(self) -> (DiscordLayer, BackgroundWorker)
Create a DiscordLayer and its corresponding background worker to (async) send the messages.
Examples found in repository?
More examples
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
async fn main() {
let targets_to_filter: EventFilters = Regex::new("exclude_fields_from_messages").unwrap().into();
let fields_to_exclude = vec![
Regex::new(".*token.*").unwrap(),
Regex::new(".*password.*").unwrap(),
Regex::new("command").unwrap(),
];
let (discord_layer, background_worker) = DiscordLayer::builder("test-app".to_string(), targets_to_filter)
.field_exclusion_filters(fields_to_exclude)
.build();
let subscriber = Registry::default().with(discord_layer);
tracing::subscriber::set_global_default(subscriber).unwrap();
handler().await;
background_worker.shutdown().await;
}