vector/sinks/appsignal/mod.rs
1//! The AppSignal sink
2//!
3//! This sink provides downstream support for `AppSignal` to collect logs and a subset of Vector
4//! metric types. These events are sent to the `appsignal-endpoint.net` domain, which is part of
5//! the `appsignal.com` infrastructure.
6//!
7//! Logs and metrics are stored on an per app basis and require an app-level Push API key.
8
9mod config;
10mod encoder;
11mod normalizer;
12mod request_builder;
13mod service;
14mod sink;
15
16#[cfg(all(test, feature = "appsignal-integration-tests"))]
17mod integration_tests;
18#[cfg(test)]
19mod tests;