Crates.io | loki-logger |
lib.rs | loki-logger |
version | 0.1.3 |
source | src |
created_at | 2021-11-13 06:19:57.767426 |
updated_at | 2021-11-19 09:27:03.330576 |
description | A loki logger for the log facade. |
homepage | https://github.com/nwmqpa/loki-logger |
repository | https://github.com/nwmqpa/loki-logger |
max_upload_size | |
id | 481310 |
size | 88,845 |
A loki logger for the log
facade.
extern crate log;
extern crate loki_logger;
use log::LevelFilter;
#[tokio::main]
async fn main() {
loki_logger::init(
"http://loki:3100/loki/api/v1/push",
log::LevelFilter::Info,
).unwrap();
log::info!("Logged into Loki !");
}
extern crate log;
extern crate loki_logger;
use std::iter::FromIterator;
use std::collections::HashMap;
use log::LevelFilter;
#[tokio::main]
async fn main() {
let initial_labels = HashMap::from_iter([
("application".to_string(), "loki_logger".to_string()),
("environment".to_string(), "development".to_string()),
]);
loki_logger::init_with_labels(
"http://loki:3100/loki/api/v1/push",
log::LevelFilter::Info,
initial_labels,
).unwrap();
log::info!("Logged into Loki !");
}
Starting from 0.4.7, the log
crate started introducing the new key/value system for structured logging.
This crate makes heavy use of such system as to create and send custom loki labels.
If you want to use this system, you have to use the git version of the log crate and enable the kv_unstable
feature:
[dependencies.log]
# It is recommended that you pin this version to a specific commit to avoid issues.
git = "https://github.com/rust-lang/log.git"
features = ["kv_unstable"]
This feature will allow you to use the log
facade as such:
extern crate log;
extern crate loki_logger;
use std::iter::FromIterator;
use std::collections::HashMap;
use log::LevelFilter;
#[tokio::main]
async fn main() {
let initial_labels = HashMap::from_iter([
("application".to_string(), "loki_logger".to_string()),
("environment".to_string(), "development".to_string()),
]);
loki_logger::init_with_labels(
"http://loki:3100/loki/api/v1/push",
log::LevelFilter::Info,
initial_labels,
).unwrap();
// Due to stabilization issue, this is still unstable,
// the log macros needs to have at least one formatting parameter for this to work.
log::info!(foo = "bar"; "Logged into Loki !{}", "");
}