158 stable releases (38 major)

new 62.0.0 Nov 5, 2024
61.2.0 Oct 7, 2024
61.1.0 Sep 24, 2024
60.5.0 Aug 6, 2024
0.0.0 Sep 24, 2019

#820 in Debugging

Download history 596/week @ 2024-07-18 733/week @ 2024-07-25 646/week @ 2024-08-01 457/week @ 2024-08-08 472/week @ 2024-08-15 491/week @ 2024-08-22 357/week @ 2024-08-29 409/week @ 2024-09-05 838/week @ 2024-09-12 477/week @ 2024-09-19 468/week @ 2024-09-26 640/week @ 2024-10-03 534/week @ 2024-10-10 376/week @ 2024-10-17 370/week @ 2024-10-24 488/week @ 2024-10-31

1,897 downloads per month
Used in 3 crates

MPL-2.0 license

760KB
14K SLoC

Glean SDK

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.

Documentation

All documentation is available online:

Usage

use glean_core::{Glean, Configuration, CommonMetricData, metrics::*};
let cfg = Configuration {
    data_path: "/tmp/glean".into(),
    application_id: "glean.sample.app".into(),
    upload_enabled: true,
    max_events: None,
};
let mut glean = Glean::new(cfg).unwrap();
let ping = PingType::new("sample", true, true, vec![]);
glean.register_ping_type(&ping);

let call_counter: CounterMetric = CounterMetric::new(CommonMetricData {
    name: "calls".into(),
    category: "local".into(),
    send_in_pings: vec!["sample".into()],
    ..Default::default()
});

call_counter.add(&glean, 1);

glean.submit_ping(&ping, None).unwrap();

License

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/

Dependencies

~6.5–9.5MB
~162K SLoC