The Glean SDK
is a modern approach for a Telemetry library and is part of the Glean project.
glean-core
This library provides the core functionality of the Glean SDK, including implementations of all metric types, the ping serializer and the storage layer. It's used in all platform-specific wrappers.
It's not intended to be used by users directly. Each supported platform has a specific Glean package with a nicer API. A nice Rust API will be provided by the Glean crate.
All documentation is available online:
```rust use gleancore::{Glean, Configuration, CommonMetricData, metrics::*}; let cfg = Configuration { datapath: "/tmp/glean".into(), applicationid: "glean.sample.app".into(), uploadenabled: true, maxevents: None, }; let mut glean = Glean::new(cfg).unwrap(); let ping = PingType::new("sample", true); glean.registerping_type(&ping);
let callcounter: CounterMetric = CounterMetric::new(CommonMetricData { name: "calls".into(), category: "local".into(), sendin_pings: vec!["sample".into()], ..Default::default() });
call_counter.add(&glean, 1);
glean.send_ping(&ping).unwrap(); ```
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/