Struct glean_core::InternalConfiguration
source · pub struct InternalConfiguration {Show 17 fields
pub upload_enabled: bool,
pub data_path: String,
pub application_id: String,
pub language_binding_name: String,
pub max_events: Option<u32>,
pub delay_ping_lifetime_io: bool,
pub app_build: String,
pub use_core_mps: bool,
pub trim_data_to_registered_pings: bool,
pub log_level: Option<LevelFilter>,
pub rate_limit: Option<PingRateLimit>,
pub enable_event_timestamps: bool,
pub experimentation_id: Option<String>,
pub enable_internal_pings: bool,
pub ping_schedule: HashMap<String, Vec<String>>,
pub ping_lifetime_threshold: u64,
pub ping_lifetime_max_time: u64,
}
Expand description
Configuration for Glean
Fields§
§upload_enabled: bool
Whether upload should be enabled.
data_path: String
Path to a directory to store all data in.
application_id: String
The application ID (will be sanitized during initialization).
language_binding_name: String
The name of the programming language used by the binding creating this instance of Glean.
max_events: Option<u32>
The maximum number of events to store before sending a ping containing events.
delay_ping_lifetime_io: bool
Whether Glean should delay persistence of data from metrics with ping lifetime.
app_build: String
The application’s build identifier. If this is different from the one provided for a previous init,
and use_core_mps is true
, we will trigger a “metrics” ping.
use_core_mps: bool
Whether Glean should schedule “metrics” pings.
trim_data_to_registered_pings: bool
Whether Glean should, on init, trim its event storage to only the registered pings.
log_level: Option<LevelFilter>
The internal logging level.
rate_limit: Option<PingRateLimit>
The rate at which pings may be uploaded before they are throttled.
enable_event_timestamps: bool
Whether to add a wallclock timestamp to all events.
experimentation_id: Option<String>
An experimentation identifier derived by the application to be sent with all pings, it should be noted that this has an underlying StringMetric and so should conform to the limitations that StringMetric places on length, etc.
enable_internal_pings: bool
Whether to enable internal pings. Default: true
ping_schedule: HashMap<String, Vec<String>>
A ping schedule map. Maps a ping name to a list of pings to schedule along with it. Only used if the ping’s own ping schedule list is empty.
ping_lifetime_threshold: u64
Write count threshold when to auto-flush. 0
disables it.
ping_lifetime_max_time: u64
After what time to auto-flush. 0 disables it.
Trait Implementations§
source§impl Clone for InternalConfiguration
impl Clone for InternalConfiguration
source§fn clone(&self) -> InternalConfiguration
fn clone(&self) -> InternalConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for InternalConfiguration
impl Send for InternalConfiguration
impl Sync for InternalConfiguration
impl Unpin for InternalConfiguration
impl UnwindSafe for InternalConfiguration
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
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Arc<>
Read more