clp icon indicating copy to clipboard operation
clp copied to clipboard

Compressed Log Processor (CLP) is a free log management tool capable of compressing text logs and searching the compressed logs without decompression.

Results 74 clp issues
Sort by recently updated
recently updated
newest added

# Description The current `LibarchiveFileReader` implementation has the following problems: - It doesn't handle the case where the data block is empty, which is the root cause of #389 -...

# Description Before this PR, we reply on static methods `clp::NetworkReader::init/deinit` to initialize `libcurl` global resources. However, there are downsides of the current implementation: 1. Curl resource management should not...

### Bug An infinite loop is detected when compressing a zip archive that contains Android logs. By looking into the execution flow, it turns out that it gets stuck in...

bug

### Bug I can successfully start and stop the clp. But when I run sbin/compress.sh, it doesn't show any compressed results but the “... Compression job # submitted.” I think...

bug

# Description PR #445 has implemented our own memory-mapped file. With our implementation, we can now remove `boost::iostream` dependency from clp and unit tests. This PR makes necessary changes to...

# Description Add new timestamp format: `%z %Y-%m-%d %H:%M:%S.%3` Sample timestamp string: `+0800 1970-01-01 08:00:00.235`

# Description This PR modifies clp-s and clo to pass most search arguments via a msgpack object written to stdin instead of via command line arguments. This allows the `fs_search_task`...

# Description This PR: * rewrites `clp::string_utils::wildcard_match_unsafe_case_sensitive` both to fix #427, to slightly simplify the logic, and to add more comments to explain the algorithm; * completely rewrites the unit...

### Bug For instance, `clp::string_utils::wildcard_match_unsafe_case_sensitive` fails to match 'a?c' with the wildcard string 'a\??'. This bug affects both `clp` and `clp-s` but is hidden by #243 and #404. Thanks to...

bug