v0.3.7-pre.007
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// file: crates/ksp-app-backfill-desk/src/constants.rs
|
||||
// version: 4
|
||||
// version: 5
|
||||
|
||||
//! Application-owned tracing targets and domains.
|
||||
|
||||
@@ -9,10 +9,20 @@ pub(crate) const COMPOSITE_COMPONENT_ID_LOGGING: &str = "logging";
|
||||
pub(crate) const COMPOSITE_COMPONENT_ID_STORE: &str = "store";
|
||||
/// Composite component identifier for Transport.
|
||||
pub(crate) const COMPOSITE_COMPONENT_ID_TRANSPORT: &str = "transport";
|
||||
/// Initial hydration concurrency proposed by the Desk for a new campaign.
|
||||
pub(crate) const DEFAULT_BACKFILL_HYDRATION_CONCURRENCY: u32 = 4;
|
||||
/// Initial candidate cap proposed by the Desk for a new campaign.
|
||||
pub(crate) const DEFAULT_BACKFILL_MAX_CANDIDATES: u32 = 1_000;
|
||||
/// Initial discovery-page cap proposed by the Desk for a new campaign.
|
||||
pub(crate) const DEFAULT_BACKFILL_MAX_PAGES: u32 = 10;
|
||||
/// Initial signature page size proposed by the Desk for a new campaign.
|
||||
pub(crate) const DEFAULT_BACKFILL_PAGE_SIZE: u32 = 100;
|
||||
/// Structured domain used while bootstrapping Config and Logging.
|
||||
pub(crate) const TRACING_DOMAIN_BOOTSTRAP: &str = "backfill.bootstrap";
|
||||
/// Structured domain used by technical frontend events.
|
||||
pub(crate) const TRACING_DOMAIN_FRONTEND: &str = "frontend";
|
||||
/// Structured domain used by Backfill campaign admission and request mapping.
|
||||
pub(crate) const TRACING_DOMAIN_REQUEST: &str = "backfill.request";
|
||||
/// Structured domain used by the Backfill Desk shell.
|
||||
pub(crate) const TRACING_DOMAIN_SHELL: &str = "backfill.shell";
|
||||
/// Structured domain used by Store readiness and shutdown operations.
|
||||
|
||||
Reference in New Issue
Block a user