A Rust logger compatible with Elastic Common Schema (ECS) Logging.
Add the following to your Cargo.toml
file:
toml
[dependencies]
log = "0.4"
ecs-logger = "1"
In the following examples we assume the binary is ./example
.
```rust use log::{debug, error};
ecs_logger::init();
debug!( "this is a debug {}, which is NOT printed by default", "message" ); error!("this is printed by default"); ```
bash
$ ./example
{"@timestamp":"2021-11-26T15:25:22.321002600Z","log.level":"ERROR","message":"this is printed by default","ecs.version":"1.12.1","log.origin":{"file":{"line":13,"name":"example.rs"},"rust":{"target":"example::tests","module_path":"example::tests","file_path":"tests/example.rs"}}}
bash
$ RUST_LOG=debug ./example
{"@timestamp":"2021-11-26T15:26:13.524069Z","log.level":"DEBUG","message":"this is a debug message, which is NOT printed by default","ecs.version":"1.12.1","log.origin":{"file":{"line":9,"name":"example.rs"},"rust":{"target":"example::tests","module_path":"example::tests","file_path":"tests/example.rs"}}}
{"@timestamp":"2021-11-26T15:26:13.524193100Z","log.level":"ERROR","message":"this is printed by default","ecs.version":"1.12.1","log.origin":{"file":{"line":13,"name":"example.rs"},"rust":{"target":"example::tests","module_path":"example::tests","file_path":"tests/example.rs"}}}
More filtering config examples are available at env_logger’s documentation.
```rust use log::info;
// Initialize custom logger envlogger::builder() .format(ecslogger::format) // Configure ECS logger .target(env_logger::Target::Stdout) // Write to stdout .init();
info!("Hello {}!", "world"); ```
```rust use log::info;
// Initialize custom logger envlogger::builder() .parsefilters("info,myapp=debug") // Set filters .format(ecslogger::format) // Configure ECS logger .init();
info!("Hello {}!", "world"); ```
json
{
"@timestamp": "2021-11-26T15:25:22.321002600Z",
"log.level": "ERROR",
"message": "this is printed by default",
"ecs.version": "1.12.1",
"log.origin": {
"file": {
"line": 13,
"name": "example.rs"
},
"rust": {
"target": "example::tests",
"module_path": "example::tests",
"file_path": "tests/example.rs"
}
}
}
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
The implementation of this software is based on env_logger, which is dual licenced as well.