6个版本
0.0.5 | 2020年1月15日 |
---|---|
0.0.4 | 2019年12月20日 |
0.0.0 | 2019年11月25日 |
在 调试 中排名第721
775KB
14K SLoC
glean-preview
Glean SDK
是一种现代的遥测库方法,是 Glean项目 的一部分。
glean-preview
此库在Glean之上提供了一个针对Rust用户的Rust API。
注意: glean-preview
目前处于开发中,尚未准备好使用。
文档
所有文档均可在线查阅
示例
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);
glean_preview::register_ping_type(&prototype_ping);
prototype_ping.submit();
许可证
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/
依赖
~7–10MB
~213K SLoC