File tree Expand file tree Collapse file tree 4 files changed +30
-3
lines changed Expand file tree Collapse file tree 4 files changed +30
-3
lines changed Original file line number Diff line number Diff line change 5
5
require (
6
6
github.com/D4-project/d4-golang-utils v0.0.0-20200108150548-740f16240125
7
7
github.com/gomodule/redigo v2.0.0+incompatible
8
- golang.org/x/image v0.0.0-20200119044424-58c23975cae1 // indirect
9
8
gonum.org/v1/netlib v0.0.0-20191229114700-bbb4dff026f8 // indirect
10
9
gonum.org/v1/plot v0.0.0-20200111075622-4abb28f724d5
11
10
)
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL
21
21
golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2 /go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA =
22
22
golang.org/x/exp v0.0.0-20190312203227-4b39c73a6495 h1:I6A9Ag9FpEKOjcKrRNjQkPHawoXIhKyTGfvvjFAiiAk =
23
23
golang.org/x/exp v0.0.0-20190312203227-4b39c73a6495 /go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8 =
24
+ golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81 h1:00VmoueYNlNz/aHIilyyQz/MHSqGoWJzpFv/HW8xpzI =
24
25
golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81 /go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs =
26
+ golang.org/x/image v0.0.0-20190227222117-0694c2d4d067 h1:KYGJGHOQy8oSi1fDlSpcZF0+juKwk/hEMv5SiwHogR0 =
25
27
golang.org/x/image v0.0.0-20190227222117-0694c2d4d067 /go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js =
26
- golang.org/x/image v0.0.0-20200119044424-58c23975cae1 h1:5h3ngYt7+vXCDZCup/HkCQgW5XwmSvR/nA2JmJ0RErg =
27
- golang.org/x/image v0.0.0-20200119044424-58c23975cae1 /go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0 =
28
28
golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6 /go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE =
29
29
golang.org/x/net v0.0.0-20190311183353-d8887717615a /go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg =
30
30
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a /go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY =
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -e
4
+ set -x
5
+
6
+ sudo apt-get install screen -y
7
+
8
+ go get github.com/D4-project/analyzer-d4-log
9
+
10
+ # REDIS #
11
+ mkdir -p db
12
+ test ! -d redis/ && git clone https://github.com/antirez/redis.git
13
+ pushd redis/
14
+ git checkout 5.0
15
+ make
16
+ popd
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
4
+ CONF=" conf.sample"
5
+
6
+ screen -dmS " alog"
7
+ sleep 0.1
8
+
9
+ screen -S " alog" -X screen -t " alog-redis" bash -c " (${DIR} /redis/src/redis-server ${DIR} /redis.conf); read x;"
10
+ screen -S " alog" -X screen -t " alog-ingester" bash -c " (${DIR} /analyzer-d4-log -c ${CONF} ); read x;"
11
+
12
+ exit 0
You can’t perform that action at this time.
0 commit comments