diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-04-03 22:31:48 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-04-03 22:31:48 +0200 |
commit | ffa16db02673ffa155ffb2649e72a935a1ff70f5 (patch) | |
tree | fb28fccd6ee6ee85326c30110d4a8b8da2ab0ebe /src | |
parent | 3eff4208ffecedd778fec260f0d4b18e94dab443 (diff) |
man: document special journal fields
Diffstat (limited to 'src')
-rw-r--r-- | src/logs-show.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/logs-show.c b/src/logs-show.c index 0a07a77bed..158223fc0a 100644 --- a/src/logs-show.c +++ b/src/logs-show.c @@ -348,8 +348,8 @@ static int output_export(sd_journal *j, unsigned line, unsigned n_columns, bool } printf("__CURSOR=%s\n" - "__REALTIME=%llu\n" - "__MONOTONIC=%llu\n" + "__REALTIME_TIMESTAMP=%llu\n" + "__MONOTONIC_TIMESTAMP=%llu\n" "__BOOT_ID=%s\n", cursor, (unsigned long long) realtime, @@ -460,8 +460,8 @@ static int output_json(sd_journal *j, unsigned line, unsigned n_columns, bool sh printf("{\n" "\t\"__CURSOR\" : \"%s\",\n" - "\t\"__REALTIME\" : \"%llu\",\n" - "\t\"__MONOTONIC\" : \"%llu\",\n" + "\t\"__REALTIME_TIMESTAMP\" : \"%llu\",\n" + "\t\"__MONOTONIC_TIMESTAMP\" : \"%llu\",\n" "\t\"__BOOT_ID\" : \"%s\"", cursor, (unsigned long long) realtime, |