Struct tracing_layer_slack::SlackLayerBuilder
source · pub struct SlackLayerBuilder { /* private fields */ }
Expand description
A builder for creating a Slack layer.
The layer requires a regex for selecting events to be sent to Slack 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 Slack configuration that defaults to searching in the local environment variables.
Implementations§
source§impl SlackLayerBuilder
impl SlackLayerBuilder
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 Slack.
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 (slack_layer, background_worker) = SlackLayer::builder("test-app".to_string(), targets_to_filter)
.field_exclusion_filters(fields_to_exclude)
.build();
let subscriber = Registry::default().with(slack_layer);
tracing::subscriber::set_global_default(subscriber).unwrap();
handler().await;
background_worker.shutdown().await;
}
sourcepub fn slack_config(self, config: SlackConfig) -> Self
pub fn slack_config(self, config: SlackConfig) -> Self
Configure the layer’s connection to the Slack 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 Slack.
sourcepub fn build(self) -> (SlackLayer, SlackBackgroundWorker)
pub fn build(self) -> (SlackLayer, SlackBackgroundWorker)
Create a SlackLayer 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 (slack_layer, background_worker) = SlackLayer::builder("test-app".to_string(), targets_to_filter)
.field_exclusion_filters(fields_to_exclude)
.build();
let subscriber = Registry::default().with(slack_layer);
tracing::subscriber::set_global_default(subscriber).unwrap();
handler().await;
background_worker.shutdown().await;
}