glean/glean-core/preview
Jan-Erik Rediger 92c393c98b Bumped version to 31.1.1 2020-06-12 12:34:33 +02:00
..
examples 1557048: Add reason codes to the metrics ping (#649) 2020-02-11 20:40:10 +05:30
src Handle missing global Glean object more gracefully 2020-04-02 09:31:58 +02:00
tests Move vendored schema to top-level for re-use across languages 2020-03-02 11:29:05 +01:00
CHANGELOG.md Release glean-preview v0.0.5 2020-01-15 11:56:50 +01:00
Cargo.toml Bumped version to 31.1.1 2020-06-12 12:34:33 +02:00
LICENSE Add missing license and readme file (#547) 2019-12-06 10:20:57 +01:00
README.md 1557048: Add reason codes to the metrics ping (#649) 2020-02-11 20:40:10 +05:30

README.md

glean-preview

The Glean SDK is a modern approach for a Telemetry library and is part of the Glean project.

glean-preview

This library provides a Rust API on top of Glean, targeted to Rust consumers.

Note: glean-preview is currently under development and not yet ready for use.

Documentation

All documentation is available online:

Example

use glean_preview::{Configuration, Error, metrics::*};

let cfg = Configuration {
    data_path: "/tmp/data".into(),
    application_id: "org.mozilla.glean_core.example".into(),
    upload_enabled: true,
    max_events: None,
    delay_ping_lifetime_io: false,
};
glean_preview::initialize(cfg)?;

let prototype_ping = PingType::new("prototype", true, true, vec![]);

glean_preview::register_ping_type(&prototype_ping);

prototype_ping.submit(None);

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/