161 stable releases (40 major)

new 64.0.0 Mar 18, 2025
63.1.0 Jan 30, 2025
63.0.0 Nov 28, 2024
62.0.0 Nov 5, 2024
0.0.0 Sep 24, 2019

#10 in #platform-specific

Download history 273/week @ 2024-11-30 439/week @ 2024-12-07 422/week @ 2024-12-14 61/week @ 2024-12-21 44/week @ 2024-12-28 198/week @ 2025-01-04 222/week @ 2025-01-11 144/week @ 2025-01-18 324/week @ 2025-01-25 365/week @ 2025-02-01 263/week @ 2025-02-08 334/week @ 2025-02-15 287/week @ 2025-02-22 283/week @ 2025-03-01 308/week @ 2025-03-08 401/week @ 2025-03-15

1,366 downloads per month
Used in 3 crates

MPL-2.0 license

775KB
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
~164K SLoC