1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#![warn(missing_docs)]
#[macro_use]
extern crate slog;
extern crate nix;
extern crate chrono;
extern crate slog_json;
#[cfg(test)]
extern crate slog_stream;
use slog::Record;
use slog::Level;
fn get_hostname() -> String {
let mut buf = vec!(0u8; 256);
match nix::unistd::gethostname(&mut buf) {
Ok(()) => {
String::from_utf8_lossy(buf.split(|&b| b == 0).next().unwrap_or(&buf)).to_string()
}
Err(_) => "n/a".to_string(),
}
}
fn level_to_string(level: Level) -> i8 {
match level {
Level::Critical => 60,
Level::Error => 50,
Level::Warning => 40,
Level::Info => 30,
Level::Debug => 20,
Level::Trace => 10,
}
}
fn new_with_ts_fn<F>(ts_f: F) -> slog_json::FormatBuilder
where F: Fn(&Record) -> String + Send + Sync + 'static
{
slog_json::Format::new()
.add_key_values(o!(
"pid" => nix::unistd::getpid() as usize,
"host" => get_hostname(),
"time" => ts_f,
"level" => |rinfo : &Record| {
level_to_string(rinfo.level())
},
"name" => "slog-rs",
"v" => 0usize,
"msg" => |rinfo : &Record| {
rinfo.msg().to_string()
}
))
}
pub fn new() -> slog_json::FormatBuilder {
new_with_ts_fn(|_: &Record| chrono::Local::now().to_rfc3339())
}
pub fn default() -> slog_json::Format {
new_with_ts_fn(|_: &Record| chrono::Local::now().to_rfc3339()).build()
}
#[cfg(test)]
mod test {
use super::new_with_ts_fn;
use super::get_hostname;
use chrono::{TimeZone, UTC};
use nix;
use slog::{Record, RecordStatic};
use slog::Level;
use slog_stream::Format;
use slog::OwnedKeyValueList;
#[test]
fn trivial() {
let format =
new_with_ts_fn(|_: &Record| UTC.ymd(2014, 7, 8).and_hms(9, 10, 11).to_rfc3339()).build();
let rs = RecordStatic {
level: Level::Info,
file: "filepath",
line: 11192,
column: 0,
function: "",
module: "modulepath",
target: "target"
};
let mut v = vec![];
format.format(&mut v, &Record::new(&rs, format_args!("message"), &[]), &OwnedKeyValueList::root(vec![])).unwrap();
assert_eq!(String::from_utf8_lossy(&v),
"{\"pid\":".to_string() + &nix::unistd::getpid().to_string() + ",\"host\":\"" +
&get_hostname() +
"\",\"time\":\"2014-07-08T09:10:11+00:00\",\"level\":30,\"name\":\"slog-rs\",\
\"v\":0,\"msg\":\"message\"}\n");
}
}