202 stable releases (45 major)

69.0.0 Jun 22, 2026
68.0.1 Jul 7, 2026
68.0.0 Jun 19, 2026
67.5.0 Jun 9, 2026
0.0.0 Sep 24, 2019

#72 in #ping

Download history 8907/week @ 2026-04-19 23636/week @ 2026-04-26 16442/week @ 2026-05-03 15990/week @ 2026-05-10 17028/week @ 2026-05-17 20365/week @ 2026-05-24 15756/week @ 2026-05-31 17288/week @ 2026-06-07 20982/week @ 2026-06-14 16935/week @ 2026-06-21 14155/week @ 2026-06-28 22884/week @ 2026-07-05 24066/week @ 2026-07-12 28412/week @ 2026-07-19 33118/week @ 2026-07-26 28572/week @ 2026-08-02

120,055 downloads per month
Used in 7 crates (3 directly)

MPL-2.0 license

1MB
16K 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

~37MB
~712K SLoC