summaryrefslogtreecommitdiff
path: root/man/systemd-journal-remote.xml
Commit message (Collapse)AuthorAge
* remove non-login things from manAndy Wingo2015-04-08
|
* man: add journal-remote.conf(5)Chris Morgan2015-03-22
|
* man: boilerplate unificationZbigniew Jędrzejewski-Szmek2015-02-10
|
* man: add emacs header to get correct indention in nxml-mode for the manpage ↵Lennart Poettering2014-11-21
| | | | | | | | XML files that use 2ch indenting In the long run we really should figure out if we want to stick with 8ch or 2ch indenting, and not continue with half-and-half. For now, just make emacs aware of the files that use 2ch indenting.
* docs: remove repeating words from man/*xmlKarel Zak2014-07-23
|
* man: add systemd-verify(1)Zbigniew Jędrzejewski-Szmek2014-07-20
|
* man: describe new filename rules for journal-remoteZbigniew Jędrzejewski-Szmek2014-07-15
|
* man: document systemd-journal-uploadZbigniew Jędrzejewski-Szmek2014-07-15
|
* journal-remote: allow splitting incoming logs by source hostZbigniew Jędrzejewski-Szmek2014-07-15
| | | | | | | | | | Previously existing scheme where the file name would be based on the source was just too ugly and unpredicatable. Now there are only two options: 1. just one file (until rotation), 2. one file per source host, using the hostname as filename part. For the cases where the source is specified by the user, only option one is allowed, and the full of the file must be specified.
* doc: comma placement corrections and word orderJan Engelhardt2014-05-07
| | | | | Set commas where there should be some. Some improvements to word order.
* doc: corrections to words and formsJan Engelhardt2014-05-07
| | | | | This patch exchange words which are inappropriate for a situation, deletes duplicated words, and adds particles where needed.
* journal-remote: implement inheriting http(s) socketsZbigniew Jędrzejewski-Szmek2014-03-17
| | | | | | | Now --listen-http=-3 --listen-https=-4 can be used to spawn a µhttpd server on those two ports, in http and https modes respectively. As before, --listen-http=3 --listen-https=4 will launch µhttpd servers on ports 3 and 4.
* journal-remote: HTTP(s) supportZbigniew Jędrzejewski-Szmek2014-03-17
| | | | | | | | | | | | | | | | | The whole tool is made dependent on µhttpd availability. It should be easy to make the µhttpd parts conditional, but since transfer over HTTP seems to be the primary use case, currently this is not done. Current implementation uses nested epoll loops: sd-event is used for the external event loop, and µhttpd uses epoll in its own loop. Unfortunately µhttpd does not expose enough information to add the descriptors it uses to the external event loop. This means that starvation of other events is possible, if one of the inner µhttpd loops is constantly busy. This means that µhttpd servers should not be mixed with other sources. The TLS authentication parts haven't been really tested properly, and should not be take too seriously.
* journal-remote: tool to receive messages over the networkZbigniew Jędrzejewski-Szmek2014-03-17