summaryrefslogtreecommitdiffstats
path: root/container-accesslogging/src/main/java/com
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Revert "Merge container-accesslogging into jdisc_http_service""Bjørn Christian Seime2021-01-1115-1984/+0
|
* Revert "Merge container-accesslogging into jdisc_http_service"Bjørn Christian Seime2021-01-1115-0/+1984
|
* Merge container-accesslogging into jdisc_http_serviceBjørn Christian Seime2021-01-1115-1984/+0
|
* Revert "Revert "Simplify symlink""Håkon Hallingstad2020-12-081-8/+1
|
* Revert "Simplify symlink"Harald Musum2020-12-071-1/+8
|
* Simplify symlinkHåkon Hallingstad2020-12-021-8/+1
| | | | | | | The symlink points to a file in the same directory. Therefore, instead of pointing to the absolute path, it should point to the filename. This also makes the symlink work on the host, if the symlink was made in a container (and vice versa).
* avoid calling nativeIO.dropPartialFileFromCache too oftenArne Juul2020-12-011-2/+4
| | | | | * there is no need to call fsync() every 100 milliseconds just to drop minimal amounts of data from the file system cache.
* Make fileName volatileBjørn Christian Seime2020-02-211-2/+1
|
* consume -> acceptHenning Baldersheim2020-02-121-3/+3
|
* Render Inspectable.Henning Baldersheim2020-02-121-1/+13
|
* - Add trace as a field in the josn access log.Henning Baldersheim2020-02-123-2/+199
| | | | - Add the trace top the accesslog entry if debugging is enabled in SearchHandler.
* Remove use of commons-lang from contrainer-accessloggingBjørn Christian Seime2020-01-061-4/+28
|
* Add/corect copyright headersJon Bratseth2020-01-031-0/+1
|
* add missing import for localeslixurd2019-09-231-0/+1
| | | add missing import
* fix test case fail in LogFormatterTestCaseslixurd2019-09-221-4/+4
| | | | | better define locale to us avoiding some special locale such as china/france which called sep to 9月/sept the test case will fail in enviroment using zh_CN.UTF-8 org.junit.ComparisonFailure: expected:<test20030825133035[Aug]> but was:<test20030825133035[8月]>
* Only run super.flush in flush method. Also reset lastDropPosition when there ↵Henning Baldersheim2019-06-251-1/+2
| | | | is a new file.
* Continously drop from cache what you have written to the log.Henning Baldersheim2019-06-251-6/+20
|
* A utillity for manual testing on continous dropping from cache.Henning Baldersheim2019-06-241-1/+1
|
* Drop file continously from cache as we read it.Henning Baldersheim2019-06-241-37/+11
|
* use try-with-resources to ensure streams are closedArne Juul2019-05-231-5/+3
|
* no need to ignore testng log files anymore.Henning Baldersheim2019-04-291-3/+0
|
* Merge pull request #8753 from vespa-engine/balder/coverage-in-json-access-logHenning Baldersheim2019-03-123-6/+102
|\ | | | | Add coverage info to access log
| * Add coverage info to access logHenning Baldersheim2019-03-123-6/+102
| |
* | GC unused yapache log and derivatives.Henning Baldersheim2019-03-113-808/+1
|/
* Inline init method.gjoranv2019-01-211-4/+0
| | | | - Failed on assignment to final field.
* Remove AccessLogEntry.setURI/getURIBjørn Christian Seime2019-01-211-22/+0
|
* Track removal of fileHandler.rotateSchema from access-log.defTor Egge2019-01-212-21/+10
|
* Minor fixesJon Bratseth2018-10-142-3/+3
|
* Use ProcessExecuterJon Bratseth2018-10-121-4/+2
|
* Properly shutdown the executor service.Henning Baldersheim2018-10-101-3/+4
|
* Do compression in a different thread to avoid filling Q during compression.Henning Baldersheim2018-10-101-18/+24
|
* Test compression on logrotate and correct visibility and cleanup unused code.Henning Baldersheim2018-10-101-66/+51
|
* Do not delete uncompressed file on error.Henning Baldersheim2018-10-091-5/+9
|
* Must wait until gzip is actually done.Henning Baldersheim2018-10-091-1/+2
|
* Use full path instead of just filename, as it might contain a path.Henning Baldersheim2018-09-261-2/+3
|
* Do not try to compress or in any way handle a file that does not exist.Henning Baldersheim2018-09-261-9/+11
|
* Revert "Revert "Balder/add native fadvise""Henning Baldersheim2018-09-261-3/+17
|
* Revert "Balder/add native fadvise"Jon Marius Venstad2018-09-261-17/+3
|
* Fix comments from pull request review.Henning Baldersheim2018-09-261-4/+4
| | | | - Better naming and make static what can be static.
* Do not expose error.Henning Baldersheim2018-09-261-3/+17
| | | | Drop from cache after rotation.
* Merge pull request #6837 from vespa-engine/arnej/add-retention-enforcerArne H Juul2018-09-101-1/+5
|\ | | | | enforce log retention policies
| * enforce log retention policiesArne Juul2018-09-061-1/+5
| | | | | | | | | | | | | | | | | | | | | | * for access logs, save meta-data about the log file itself in a simple format. * implement a proof-of-concept shell script that removes log files after one month. * ensure retention enforcer is started when services start * note that retention enforcer will continue running even after services stop, but it has protection to ensure that it won't multiply endlessly.
* | Use newer setScale() that is not deprecated.gjoranv2018-09-041-1/+1
|/
* Avoid using deprecated code and enable it as error.Henning Baldersheim2018-08-282-2/+2
|
* Replace 'tonytv' with full name in author tagsBjørn Christian Seime2018-07-055-5/+5
|
* Revert "Revert "Gjoranv/java9 prep 05""gjoranv2018-05-021-1/+1
|
* Revert "Gjoranv/java9 prep 05"gjoranv2018-05-021-1/+1
|
* Java 9: Replace 'new Long' with 'Long.valueOf'gjoranv2018-05-011-1/+1
|
* do not block waiting for gzip to finishArne Juul2018-04-171-2/+1
|
* Allow applications to request exlcusive access to hostsJon Bratseth2018-03-201-1/+1
|