summaryrefslogtreecommitdiff
path: root/man/journalctl.xml
Commit message (Collapse)AuthorAge
* journal: properly serialize fields with multiple values into JSONLennart Poettering2012-10-25
| | | | | | This now matches the JSON serialization spec from: http://www.freedesktop.org/wiki/Software/systemd/json
* man: reword journalctl -n descriptionZbigniew Jędrzejewski-Szmek2012-10-23
|
* journalctl.xml: fix shortopt for --fieldDave Reisner2012-10-18
|
* journalctl: implement quering field values with new -F switchLennart Poettering2012-10-18
| | | | | | | | Example: journalctl -F _SYSTEMD_UNIT will list all units that ever logged to the journal.
* journalctl: add --unit=/-u to match by unit nameLennart Poettering2012-10-16
| | | | | | This applies unit_name_mangle() to the specified unit names and hence can handle weird characters nicely and will add unit suffixes as necessary.
* Reword sentences that contain psuedo-English "resp."Andrew Eikum2012-10-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | As you likely know, Arch Linux is in the process of moving to systemd. So I was reading through the various systemd docs and quickly became baffled by this new abbreviation "resp.", which I've never seen before in my English-mother-tongue life. Some quick Googling turned up a reference: <http://www.transblawg.eu/index.php?/archives/870-Resp.-and-other-non-existent-English-wordsNicht-existente-englische-Woerter.html> I guess it's a literal translation of the German "Beziehungsweise", but English doesn't work the same way. The word "respectively" is used exclusively to provide an ordering connection between two lists. E.g. "the prefixes k, M, and G refer to kilo-, mega-, and giga-, respectively." It is also never abbreviated to "resp." So the sentence "Sets the default output resp. error output for all services and sockets" makes no sense to a natural English speaker. This patch removes all instances of "resp." in the man pages and replaces them with sentences which are much more clear and, hopefully, grammatically valid. In almost all instances, it was simply replacing "resp." with "or," which the original author (Lennart?) could probably just do in the future. The only other instances of "resp." are in the src/ subtree, which I don't feel privileged to correct. Signed-off-by: Andrew Eikum <aeikum@codeweavers.com>
* journalctl: implement --since= and --until for filtering by timeLennart Poettering2012-10-11
|
* journal: support epxorting the journal in a format suitable for ↵Lennart Poettering2012-10-11
| | | | text/event-stream
* journalctl: add --cursor switchLennart Poettering2012-09-28
|
* journalctl: make the argument to -n optionalLennart Poettering2012-09-21
|
* man: fix typos in halt.xml and journalctl.xmlThomas Hindoe Paaboel Andersen2012-09-13
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=54501
* journal: add call to determine current journal file disk usageLennart Poettering2012-09-07
|
* journalctl: replace --local by --merge, i.e. don't interleave remote ↵Lennart Poettering2012-09-05
| | | | journals by default
* journalctl: rework JSON output modeLennart Poettering2012-09-05
| | | | | | | This splits the JSON output mode into different modes: json and json-pretty. The former printing one entry per line, the latter showing JSON objects nicely indented and in multiple lines to make it easier to read for humans.
* man: add man pages for new FSS stuffLennart Poettering2012-08-17
|
* journalctl: support device node matches as shortcutLennart Poettering2012-08-09
|
* journalctl: add --priority= switch for filtering by priorityLennart Poettering2012-07-27
|
* man: add reference to export format spec to journalctlLennart Poettering2012-07-20
|
* journal: automatically rotate journal files if the data hash table is full > 75%Lennart Poettering2012-07-17
| | | | | | | Previously, when the main data hash table grows too full the performance simply started to decrease drastically. Instead, now simply rotate to a new journal file as the hash table gets to full, so that we can start with a new fresh empty hash table.
* Spelling fixes.Ville Skyttä2012-07-16
|
* journal: beef up journal matches considerablyLennart Poettering2012-07-13
| | | | | | we now can take multiple matches, and they will apply as AND if they apply to different fields and OR if they apply to the same fields. Also, terms of this kind can be combined with an overreaching OR.
* journalctl: add a marker to log output for rebootsLennart Poettering2012-07-11
| | | | | With this we'll print a marker "----- Reboot -----" between two subsequent lines with different boot IDs.
* journal: rework directory enumeration/watch logicLennart Poettering2012-07-11
| | | | | | | | | | There's now sd_journal_new_directory() for watching specific journal directories. This is exposed in journalctl -D. sd_journal_wait() and sd_journal_process() now return whether changes in the journal are invalidating or just appending. We now create inotify kernel watches only when we actually need them
* man: fix journalctl man page in regards to --this-bootLennart Poettering2012-07-02
|
* journalctl: add new switch -b to show data from current boot onlyLennart Poettering2012-07-02
|
* man: replace tabs with spacesKay Sievers2012-06-10
|
* man: document systemd-journalLennart Poettering2012-06-01
|
* relicense to LGPLv2.1 (with exceptions)Lennart Poettering2012-04-12
| | | | | | | | | | | | | | We finally got the OK from all contributors with non-trivial commits to relicense systemd from GPL2+ to LGPL2.1+. Some udev bits continue to be GPL2+ for now, but we are looking into relicensing them too, to allow free copy/paste of all code within systemd. The bits that used to be MIT continue to be MIT. The big benefit of the relicensing is that closed source code may now link against libsystemd-login.so and friends.
* man: document special journal fieldsLennart Poettering2012-04-03
|
* rename /etc/systemd/systemd-{login,journal}d.conf to {login,journal}d.confKay Sievers2012-03-30
|
* journalctl: add --local switchLennart Poettering2012-03-27
|
* journalctl,loginctl: drop systemd- prefix in binary namesLennart Poettering2012-03-26
Let's make things a bit easier to type, drop the systemd- prefix for journalctl and loginctl, but provide the old names for compat. All systemd binaries are hence now prefixed with "systemd-" with the exception of the three primary user interface binaries: systemctl loginctl journalctl For those three we do provide systemd-xyz names as well, via symlinks: systemd-systemctl → systemctl systemd-loginctl → loginctl systemd-journalctl → journalctl We do this only for the *primary* user tools, in order to avoid unnecessary namespace problems. That means tools like systemd-notify stay the way they are.