summaryrefslogtreecommitdiff
path: root/src/journal/test-journal.c
Commit message (Collapse)AuthorAgeFilesLines
* journal: add ability to list values a specified field can take in all ↵Lennart Poettering2012-10-181-1/+1
| | | | | | | | | | | | | | | | | entries of the journal The new 'unique' API allows listing all unique field values that a field specified by a field name can take in all entries of the journal. This allows answering queries such as "What units logged to the journal?", "What hosts have logged into the journal?", "Which boot IDs have logged into the journal?". Ultimately this allows implementation of tools similar to lastlog based on journal data. Note that listing these field values will not work for journal files created with older journald, as the field values are not indexed in older files.
* journal: implement time-based rotation/vacuumingLennart Poettering2012-10-161-1/+1
| | | | | This also enables time-based rotation (but not vacuuming) after 1month, so that not more one month of journal is lost at a time per vacuuming.
* journal: make libgcrypt dependency optionalLennart Poettering2012-08-201-0/+2
|
* journal: split up journal-file.cLennart Poettering2012-08-161-1/+3
|
* journal: implement generic sharable mmap caching logicLennart Poettering2012-08-161-1/+1
| | | | | | instead of having one simple per-file cache implement an more comprehensive one that works for multiple files and can actually maintain multiple maps per file and per object type.
* journal: add all objects we add to HMACLennart Poettering2012-08-131-0/+1
|
* journald: initial version of FSPRG hookupLennart Poettering2012-08-131-3/+3
| | | | | | This adds forward-secure authentication of journal files. This patch includes key generation as well as tagging of journal files, Verification of journal files will be added in a later patch.
* test: allow deletion of temporary files from normal fsZbigniew Jędrzejewski-Szmek2012-08-031-1/+1
| | | | Not everybody has /tmp on tmpfs, and this was breaking 'make check'.
* journal: size journal data hash table based on maximum file size metricsLennart Poettering2012-07-171-1/+1
| | | | | | The default of 2047 hash table entries turned out to result in way too many collisions for bigger files, hence scale the hash table size by the estimated maximum file size.
* test: hook up more tests with make checkLennart Poettering2012-07-131-1/+5
|
* relicense to LGPLv2.1 (with exceptions)Lennart Poettering2012-04-121-4/+4
| | | | | | | | | | | | | | 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.
* build-sys: move public header files into a dir of their ownLennart Poettering2012-01-051-1/+2
|
* journald: enforce some syntax restrictions on field names sent from the ↵Lennart Poettering2011-12-221-0/+2
| | | | client side
* journal: add native protocol to journald, and client side API to send ↵Lennart Poettering2011-12-171-0/+1
| | | | journal messages
* journal: implement multiple field matchesLennart Poettering2011-11-081-13/+28
|
* journal: unify code for up and for down traversalLennart Poettering2011-10-151-9/+9
|
* journal: synchronize seqnum across filesLennart Poettering2011-10-141-3/+3
|
* journal: implementation rotationLennart Poettering2011-10-131-1/+9
|
* journal: implement parallel traversal in clientLennart Poettering2011-10-081-1/+1
|
* journal: replace linked list by hashmap when merging filesLennart Poettering2011-10-071-1/+1
|
* journal: add preliminary incomplete implementationLennart Poettering2011-10-071-0/+93