index
:
dtail
master
refactor-trail-1
DTail is a distributed DevOps tool for tailing, grepping, catting logs and other text files on many remote machines at once.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
-rw-r--r--
.gitignore
16
-rw-r--r--
Makefile
42
-rw-r--r--
cmd/dcat/main.go
57
-rw-r--r--
cmd/dcat/testdata.txt
500
-rw-r--r--
cmd/dgrep/main.go
74
-rw-r--r--
cmd/dmap/main.go
65
-rw-r--r--
cmd/dserver/main.go
56
-rw-r--r--
cmd/dtail/main.go
101
-rw-r--r--
cmd/dtailhealth/main.go
53
-rw-r--r--
docker/.gitignore
0
-rw-r--r--
docker/Dockerfile
6
-rw-r--r--
docker/Makefile
35
-rw-r--r--
docker/dtail.json
30
-rw-r--r--
docker/serverlist.txt
10
-rwxr-xr-x
docker/spindown.sh
11
-rwxr-xr-x
docker/spinup.sh
7
-rw-r--r--
go.mod
3
-rw-r--r--
go.sum
154
-rw-r--r--
integrationtests/commandutils.go
108
-rw-r--r--
integrationtests/dcat.txt
500
-rw-r--r--
integrationtests/dcat2.txt
500
-rw-r--r--
integrationtests/dcat2.txt.expected
50000
-rw-r--r--
integrationtests/dcat_test.go
89
-rw-r--r--
integrationtests/dcatcolors.expected
2754
-rw-r--r--
integrationtests/dcatcolors.txt
2754
-rw-r--r--
integrationtests/dgrep.txt.expected
3
-rw-r--r--
integrationtests/dgrep2.txt.expected
594
-rw-r--r--
integrationtests/dgrep_test.go
110
-rw-r--r--
integrationtests/dgrepcontext.txt.expected
9
-rw-r--r--
integrationtests/dgrepcontext2.txt.expected
3
-rw-r--r--
integrationtests/dmap.csv.expected
2
-rw-r--r--
integrationtests/dmap.csv.query.expected
1
-rw-r--r--
integrationtests/dmap2.csv.expected
204
-rw-r--r--
integrationtests/dmap2.csv.query.expected
1
-rw-r--r--
integrationtests/dmap3.csv.expected
204
-rw-r--r--
integrationtests/dmap3.csv.query.expected
1
-rw-r--r--
integrationtests/dmap_test.go
125
-rw-r--r--
integrationtests/dtail_test.go
148
-rw-r--r--
integrationtests/dtailcolortable.expected
576
-rw-r--r--
integrationtests/dtailhealth.expected
1
-rw-r--r--
integrationtests/dtailhealth2.expected
1
-rw-r--r--
integrationtests/dtailhealth3.expected
1
-rw-r--r--
integrationtests/dtailhealth_test.go
95
-rw-r--r--
integrationtests/fileutils.go
103
-rw-r--r--
integrationtests/mapr_testdata.log
597
-rw-r--r--
internal/clients/baseclient.go
131
-rw-r--r--
internal/clients/catclient.go
16
-rw-r--r--
internal/clients/connectors/connector.go
17
-rw-r--r--
internal/clients/connectors/serverconnection.go
206
-rw-r--r--
internal/clients/connectors/serverless.go
116
-rw-r--r--
internal/clients/grepclient.go
19
-rw-r--r--
internal/clients/handlers/basehandler.go
77
-rw-r--r--
internal/clients/handlers/clienthandler.go
4
-rw-r--r--
internal/clients/handlers/healthhandler.go
106
-rw-r--r--
internal/clients/handlers/maprhandler.go
56
-rw-r--r--
internal/clients/healthclient.go
114
-rw-r--r--
internal/clients/maker.go
2
-rw-r--r--
internal/clients/maprclient.go
89
-rw-r--r--
internal/clients/remote/connection.go
212
-rw-r--r--
internal/clients/stats.go
76
-rw-r--r--
internal/clients/tailclient.go
20
-rw-r--r--
internal/color/brush/brush.go
194
-rw-r--r--
internal/color/color.go
174
-rw-r--r--
internal/color/color_test.go
53
-rw-r--r--
internal/color/colorfy.go
56
-rw-r--r--
internal/color/paint.go
91
-rw-r--r--
internal/color/table.go
53
-rw-r--r--
internal/config/args.go
164
-rw-r--r--
internal/config/client.go
194
-rw-r--r--
internal/config/common.go
26
-rw-r--r--
internal/config/config.go
71
-rw-r--r--
internal/config/env.go
7
-rw-r--r--
internal/config/initializer.go
184
-rw-r--r--
internal/config/read.go
37
-rw-r--r--
internal/config/server.go
10
-rw-r--r--
internal/discovery/comma.go
4
-rw-r--r--
internal/discovery/discovery.go
33
-rw-r--r--
internal/discovery/file.go
8
-rw-r--r--
internal/done.go
10
-rw-r--r--
internal/io/dlog/dlog.go
272
-rw-r--r--
internal/io/dlog/level.go
84
-rw-r--r--
internal/io/dlog/loggers/factory.go
54
-rw-r--r--
internal/io/dlog/loggers/file.go
165
-rw-r--r--
internal/io/dlog/loggers/fout.go
46
-rw-r--r--
internal/io/dlog/loggers/logger.go
19
-rw-r--r--
internal/io/dlog/loggers/none.go
21
-rw-r--r--
internal/io/dlog/loggers/stdout.go
54
-rw-r--r--
internal/io/dlog/loggers/strategy.go
35
-rw-r--r--
internal/io/dlog/rotation.go
27
-rw-r--r--
internal/io/fs/catfile.go
4
-rw-r--r--
internal/io/fs/filereader.go
6
-rw-r--r--
internal/io/fs/filter.go
167
-rw-r--r--
internal/io/fs/permissions/permission.go
4
-rw-r--r--
internal/io/fs/permissions/permission_linuxacl.go
2
-rw-r--r--
internal/io/fs/readfile.go
384
-rw-r--r--
internal/io/fs/tailfile.go
4
-rw-r--r--
internal/io/fs/truncate.go
61
-rw-r--r--
internal/io/line/line.go
5
-rw-r--r--
internal/io/logger/logger.go
403
-rw-r--r--
internal/io/logger/modes.go
12
-rw-r--r--
internal/io/logger/strategy.go
22
-rw-r--r--
internal/io/pool/builder.go
21
-rw-r--r--
internal/io/pool/bytesbuffer.go
22
-rw-r--r--
internal/io/prompt/prompt.go
13
-rw-r--r--
internal/io/signal/signal.go
8
-rw-r--r--
internal/lcontext/lcontext.go
2
-rw-r--r--
internal/mapr/aggregateset.go
29
-rw-r--r--
internal/mapr/client/aggregate.go
29
-rw-r--r--
internal/mapr/funcs/function.go
11
-rw-r--r--
internal/mapr/funcs/function_test.go
21
-rw-r--r--
internal/mapr/funcs/maskdigits.go
2
-rw-r--r--
internal/mapr/globalgroupset.go
11
-rw-r--r--
internal/mapr/groupset.go
291
-rw-r--r--
internal/mapr/logformat/default.go
41
-rw-r--r--
internal/mapr/logformat/default_test.go
88
-rw-r--r--
internal/mapr/logformat/generickv.go
31
-rw-r--r--
internal/mapr/logformat/parser.go
15
-rw-r--r--
internal/mapr/query.go
21
-rw-r--r--
internal/mapr/query_test.go
125
-rw-r--r--
internal/mapr/selectcondition.go
12
-rw-r--r--
internal/mapr/server/aggregate.go
155
-rw-r--r--
internal/mapr/setclause.go
2
-rw-r--r--
internal/mapr/setcondition.go
15
-rw-r--r--
internal/mapr/token.go
21
-rw-r--r--
internal/mapr/whereclause.go
16
-rw-r--r--
internal/mapr/wherecondition.go
30
-rw-r--r--
internal/protocol/protocol.go
18
-rw-r--r--
internal/regex/regex.go
20
-rw-r--r--
internal/regex/regex_test.go
33
-rw-r--r--
internal/server/continuous.go
36
-rw-r--r--
internal/server/handlers/basehandler.go
320
-rw-r--r--
internal/server/handlers/controlhandler.go
98
-rw-r--r--
internal/server/handlers/healthhandler.go
58
-rw-r--r--
internal/server/handlers/mapcommand.go
7
-rw-r--r--
internal/server/handlers/readcommand.go
83
-rw-r--r--
internal/server/handlers/serverhandler.go
412
-rw-r--r--
internal/server/scheduler.go
37
-rw-r--r--
internal/server/server.go
110
-rw-r--r--
internal/server/stats.go
21
-rw-r--r--
internal/source/source.go
30
-rw-r--r--
internal/ssh/client/authmethods.go
67
-rw-r--r--
internal/ssh/client/customkeycallback.go
3
-rw-r--r--
internal/ssh/client/knownhostscallback.go
38
-rw-r--r--
internal/ssh/server/hostkey.go
18
-rw-r--r--
internal/ssh/server/publickeycallback.go
38
-rw-r--r--
internal/ssh/ssh.go
11
-rw-r--r--
internal/user/name.go
3
-rw-r--r--
internal/user/server/user.go