You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+38-42Lines changed: 38 additions & 42 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,41 +41,35 @@ All maintained docker images could be found [here](https://hub.docker.com/r/drli
41
41
- Docker.io (tested on 23.0.2)
42
42
- Docker-compose (tested on 2.9.0)
43
43
44
-
45
-
If you want to use complete image downloaded from docker hub (for production) then you don't have to git clone full repo. You will only need docker-compose.yaml from the root path and create .env file (see description below).
46
44
```
45
+
If you want to use complete image downloaded from docker hub (fro production) then you don't have to git clone full repo. You will only need docker-compose.yaml from the root path and create .env file (see decription below).
If you want to build your image of mta-log-parser then copy Dockerfile and docker-compose.yaml files from build
52
-
dir to the root path (recommended for development). If you want to use complete image downloaded from docker hub then pass this step (recommended for production).
53
-
```
49
+
50
+
# If you want to build your image of mta-log-parser then copy Dockerfile and docker-compose.yaml files from build
51
+
# dir to the root path (recommended for development). If you want to use complete image downloaded from docker hub then pass this step (recommended for production).
Copy file name to clipboardExpand all lines: example.env
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,10 @@ PORT=8487
41
41
# make date time format (default is "HH:mm:ss, DD.MM.YYYY") to use in GUI for emails list timestamps and date picker according to moment.js templates (https://momentjs.com/)
42
42
#DATETIME_FORMAT='HH:mm:ss, DD.MM.YYYY'
43
43
44
+
# set length of date time string in your log file to process by parser - eliminates many parsing errors, make sure to set properly so that parser won't get extra symbols to further process (20 chars by default)
45
+
# for example if your date in log looks like '2025-02-15 00:00:03.474' value 20 will use '2025-02-15 00:00:03.' to extract datetime
46
+
#DATETIME_INPUT_LENGTH = 20
47
+
44
48
# convert related logs timestamp according to the DATETIME_FORMAT. High CPU demanding! (false by default)
0 commit comments