gecko-dev/third_party/rust/glean-core
2020-05-14 07:47:51 +00:00
..
examples Bug 1623300 - Replace fogotype with the actual FOG crate now. r=chutten 2020-03-31 08:24:40 +00:00
src Bug 1637647 - Update glean_core to v30.0.0 for ping upload redesign r=janerik 2020-05-14 07:47:51 +00:00
tests Bug 1637647 - Update glean_core to v30.0.0 for ping upload redesign r=janerik 2020-05-14 07:47:51 +00:00
.cargo-checksum.json Bug 1637647 - Update glean_core to v30.0.0 for ping upload redesign r=janerik 2020-05-14 07:47:51 +00:00
Cargo.lock Bug 1637647 - Update glean_core to v30.0.0 for ping upload redesign r=janerik 2020-05-14 07:47:51 +00:00
Cargo.toml Bug 1637647 - Update glean_core to v30.0.0 for ping upload redesign r=janerik 2020-05-14 07:47:51 +00:00
LICENSE Bug 1596132 - mach vendor rust for glean-preview r=janerik,froydnj 2019-12-09 15:01:10 +00:00
README.md Bug 1623300 - Replace fogotype with the actual FOG crate now. r=chutten 2020-03-31 08:24:40 +00:00

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/