2018-05-27 23:57:24 +02:00
|
|
|
// #[macro_use] extern crate failure;
|
|
|
|
#[macro_use] extern crate log;
|
2018-05-27 20:09:37 +02:00
|
|
|
|
2018-05-27 23:57:24 +02:00
|
|
|
extern crate env_logger;
|
|
|
|
extern crate systemd;
|
2018-05-27 20:09:37 +02:00
|
|
|
|
2018-05-27 23:57:24 +02:00
|
|
|
use systemd::journal::*;
|
2018-05-27 20:09:37 +02:00
|
|
|
use std::process;
|
2018-05-27 23:57:24 +02:00
|
|
|
use std::time::{Duration, Instant};
|
|
|
|
use std::collections::vec_deque::{VecDeque, Drain};
|
2018-05-27 20:09:37 +02:00
|
|
|
|
2018-05-27 23:57:24 +02:00
|
|
|
#[derive(Debug)]
|
|
|
|
struct Record {
|
|
|
|
message: Option<String>,
|
|
|
|
hostname: Option<String>,
|
|
|
|
unit: Option<String>,
|
|
|
|
timestamp: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<JournalRecord> for Record {
|
|
|
|
fn from(mut record: JournalRecord) -> Record {
|
|
|
|
Record {
|
|
|
|
// The message field is technically just a convention, but
|
|
|
|
// journald seems to default to it when ingesting unit
|
|
|
|
// output.
|
|
|
|
message: record.remove("MESSAGE"),
|
|
|
|
|
|
|
|
// Presumably this is always set, but who can be sure
|
|
|
|
// about anything in this world.
|
|
|
|
hostname: record.remove("_HOSTNAME"),
|
|
|
|
|
|
|
|
// The unit is seemingly missing on kernel entries, but
|
|
|
|
// present on all others.
|
|
|
|
unit: record.remove("_SYSTEMD_UNIT"),
|
|
|
|
|
|
|
|
// This timestamp is present on most log entries
|
|
|
|
// (seemingly all that are ingested from the output
|
|
|
|
// systemd units).
|
|
|
|
timestamp: record.remove("_SOURCE_REALTIME_TIMESTAMP"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-28 09:45:07 +02:00
|
|
|
/// This function starts a double-looped, blocking receiver. It will
|
|
|
|
/// buffer messages for half a second before flushing them to
|
|
|
|
/// Stackdriver.
|
|
|
|
fn receiver_loop(mut journal: Journal) {
|
|
|
|
let mut buf: VecDeque<Record> = VecDeque::new();
|
2018-05-27 23:57:24 +02:00
|
|
|
let iteration = Duration::from_millis(500);
|
|
|
|
|
|
|
|
loop {
|
|
|
|
trace!("Beginning outer iteration");
|
|
|
|
let now = Instant::now();
|
|
|
|
|
|
|
|
loop {
|
|
|
|
if now.elapsed() > iteration {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-05-28 09:45:07 +02:00
|
|
|
if let Ok(Some(record)) = journal.await_next_record(Some(iteration)) {
|
|
|
|
buf.push_back(record.into());
|
2018-05-27 23:57:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !buf.is_empty() {
|
|
|
|
flush(buf.drain(..));
|
|
|
|
}
|
|
|
|
|
|
|
|
trace!("Done outer iteration");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Flushes all drained records to Stackdriver.
|
|
|
|
fn flush(drain: Drain<Record>) {
|
|
|
|
let record_count = drain.count();
|
|
|
|
debug!("Flushed {} records", record_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main () {
|
|
|
|
env_logger::init();
|
|
|
|
|
|
|
|
let mut journal = Journal::open(JournalFiles::All, false, true)
|
|
|
|
.expect("Failed to open systemd journal");
|
|
|
|
|
|
|
|
match journal.seek(JournalSeek::Tail) {
|
|
|
|
Ok(cursor) => info!("Opened journal at cursor '{}'", cursor),
|
|
|
|
Err(err) => {
|
|
|
|
error!("Failed to set initial journal position: {}", err);
|
|
|
|
process::exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-28 09:45:07 +02:00
|
|
|
receiver_loop(journal)
|
2018-05-27 20:09:37 +02:00
|
|
|
}
|