glean/glean-core
Travis Long 979e33bccd Bug 1672984 - Recoverable network error is noisily logged at error level 2020-10-23 08:44:55 -05:00
..
android Test that events in custom pings are flushed at startup. 2020-10-09 15:16:27 +02:00
benchmark
csharp Bug 1661240 - Have same throttle backoff time for all bindings (#1240) 2020-10-13 10:52:57 +02:00
examples
ffi Revert "Bump env_logger from 0.7.1 to 0.8.1 (#1268)" 2020-10-22 09:21:39 +02:00
ios Merge pull request #1261 from mozilla/swift-bool-conversion 2020-10-13 16:50:00 +02:00
python Bug 1661240 - Have same throttle backoff time for all bindings (#1240) 2020-10-13 10:52:57 +02:00
rlb Add test coverage 2020-10-22 15:37:00 +02:00
src Bug 1672984 - Recoverable network error is noisily logged at error level 2020-10-23 08:44:55 -05:00
tests
Cargo.toml Revert "Bump env_logger from 0.7.1 to 0.8.1 (#1268)" 2020-10-22 09:21:39 +02:00
LICENSE
README.md
metrics.yaml Use correct lifetime's for ping_info metrics 2020-10-15 15:19:32 +02:00
pings.yaml

README.md

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/