summaryrefslogtreecommitdiffstats
path: root/tools/log_splitter/README.md
diff options
context:
space:
mode:
authorkshithijiyer <kshithij.ki@gmail.com>2020-07-10 18:21:36 +0530
committerBala Konda Reddy M <bala12352@gmail.com>2020-07-15 10:04:10 +0000
commit2b2bd0ab3fe94bd835a997f8b2bdabe1c66c42b9 (patch)
treec478b232882049c1ba7162f2296c0a134249ea90 /tools/log_splitter/README.md
parenta9532ef6f4ddeeeae27d12eb3d5fd122dad2b4d7 (diff)
[Tool] Add tool to split log to tc wise logs
Adding tool to split glusto-tests logs into tc wise logs. usage: log_splitter [-h] -f LOG_FILE [-d DESTINATION_DIR] Tool to split glusto logs to individual testcase logs. optional arguments: -h, --help show this help message and exit -f LOG_FILE, --log_file LOG_FILE Glusto test log file -d DESTINATION_DIR, --dist-dir DESTINATION_DIR Path were individual test logs are to be stored. Change-Id: I776a1455f9f70c13ae6ad9d11f23a4b5366c5f6f Signed-off-by: kshithijiyer <kshithij.ki@gmail.com>
Diffstat (limited to 'tools/log_splitter/README.md')
-rw-r--r--tools/log_splitter/README.md37
1 files changed, 37 insertions, 0 deletions
diff --git a/tools/log_splitter/README.md b/tools/log_splitter/README.md
new file mode 100644
index 000000000..e44aaecd3
--- /dev/null
+++ b/tools/log_splitter/README.md
@@ -0,0 +1,37 @@
+# log_splitter
+Tool to split glusto logs to individual testcase logs.
+
+## Prerequisites
+Python 3.x
+
+## Installation
+1. Change directory to the project directory.
+
+```
+# cd tools/log_splitter
+```
+
+2. Now run the installation script.
+
+```
+# python3 setup.py install
+```
+
+3. To check run:
+
+```
+# log_splitter --help
+```
+
+## Usage
+Just pass glusto_test.log file to the script as shown below:
+
+```
+# log_splitter -f glusto_test.log
+```
+
+**Note**:
+The default destination directory is `.` (present dir) `-d` or `--dist-dir` option.
+
+## Licence
+[GPLv3](https://github.com/gluster/glusto-tests/blob/master/LICENSE)