155 stable releases (37 major)

61.0.0 Aug 21, 2024
60.5.0 Aug 6, 2024
60.4.0 Jul 23, 2024
59.0.0 Mar 28, 2024
0.0.0 Sep 24, 2019

#830 in Debugging

Download history 433/week @ 2024-06-01 285/week @ 2024-06-08 536/week @ 2024-06-15 200/week @ 2024-06-22 455/week @ 2024-06-29 721/week @ 2024-07-06 582/week @ 2024-07-13 506/week @ 2024-07-20 752/week @ 2024-07-27 732/week @ 2024-08-03 315/week @ 2024-08-10 523/week @ 2024-08-17 546/week @ 2024-08-24 262/week @ 2024-08-31 609/week @ 2024-09-07 561/week @ 2024-09-14

2,032 downloads per month
Used in 3 crates

MPL-2.0 license

760KB
13K 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–9MB
~182K SLoC