Skip to content

Commit d630233

Browse files
committed
Changed parsing of logs
1 parent 87d9db8 commit d630233

File tree

3 files changed

+104
-114
lines changed

3 files changed

+104
-114
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
dev/*
2+
.DS_Store

go.mod

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,27 @@ module github.com/bluemedora/bplogagent
33
go 1.13
44

55
require (
6-
cloud.google.com/go v0.38.0
7-
github.com/antonmedv/expr v1.8.2
8-
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e
9-
github.com/dgraph-io/badger v1.6.1 // indirect
10-
github.com/elastic/go-elasticsearch/v8 v8.0.0-20200420061153-4ea3eecc9b5e
6+
cloud.google.com/go/logging v1.0.0
7+
github.com/andrewkroh/sys v0.0.0-20151128191922-287798fe3e43 // indirect
8+
github.com/antonmedv/expr v1.4.5
9+
github.com/dustin/go-humanize v1.0.0 // indirect
10+
github.com/elastic/go-elasticsearch/v8 v8.0.0-20200429055951-e9eb76d55d12
11+
github.com/elastic/go-sysinfo v1.1.0 // indirect
1112
github.com/elastic/go-ucfg v0.8.3 // indirect
1213
github.com/fsnotify/fsnotify v1.4.7
13-
github.com/gofrs/uuid v3.2.0+incompatible // indirect
14-
github.com/gojp/goreportcard v0.0.0-20200415071653-59167b516f3f // indirect
14+
github.com/gdamore/tcell v1.3.0 // indirect
15+
github.com/gofrs/uuid v3.3.0+incompatible // indirect
1516
github.com/golang/protobuf v1.3.4
1617
github.com/hashicorp/go-uuid v1.0.2
17-
github.com/influxdata/go-syslog v1.0.1 // indirect
1818
github.com/influxdata/go-syslog/v3 v3.0.0
19-
github.com/jcmturner/gofork v1.0.0 // indirect
20-
github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901 // indirect
2119
github.com/json-iterator/go v1.1.9
20+
github.com/kr/pretty v0.2.0 // indirect
21+
github.com/lucasb-eyer/go-colorful v1.0.3 // indirect
22+
github.com/mattn/go-runewidth v0.0.8 // indirect
2223
github.com/mitchellh/mapstructure v1.1.2
24+
github.com/rivo/uniseg v0.1.0 // indirect
25+
github.com/sanity-io/litter v1.2.0 // indirect
26+
github.com/spf13/cobra v0.0.5 // indirect
2327
github.com/spf13/pflag v1.0.5 // indirect
2428
github.com/spf13/viper v1.6.2
2529
github.com/stretchr/testify v1.5.1
@@ -29,17 +33,10 @@ require (
2933
go.uber.org/zap v1.14.0
3034
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
3135
golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect
32-
golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527 // indirect
36+
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a // indirect
3337
golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb // indirect
3438
gonum.org/v1/gonum v0.6.2
3539
google.golang.org/api v0.20.0
3640
google.golang.org/genproto v0.0.0-20200304201815-d429ff31ee6c
37-
google.golang.org/grpc v1.27.1 // indirect
38-
gopkg.in/jcmturner/aescts.v1 v1.0.1 // indirect
39-
gopkg.in/jcmturner/dnsutils.v1 v1.0.1 // indirect
40-
gopkg.in/jcmturner/goidentity.v3 v3.0.0 // indirect
41-
gopkg.in/jcmturner/gokrb5.v7 v7.5.0 // indirect
42-
gopkg.in/jcmturner/rpc.v1 v1.1.0 // indirect
43-
gopkg.in/yaml.v2 v2.2.8 // indirect
4441
honnef.co/go/tools v0.0.1-2020.1.3 // indirect
4542
)

0 commit comments

Comments
 (0)