Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

backend: add /logs API for searching logs #3

Merged
merged 39 commits into from
Feb 26, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
0f2aa0a
backend: add `/logs` API for search logs
Deardrops Jan 7, 2020
ecd1d8e
adding missing files
Deardrops Jan 7, 2020
6474a23
implement APIs
Deardrops Jan 13, 2020
2371c0f
Merge remote-tracking branch 'origin/master' into log-fetcher
Deardrops Jan 13, 2020
62a9a28
add missing files
Deardrops Jan 13, 2020
cd2de6e
add config support for logs API
Deardrops Jan 13, 2020
4189f8a
tiny fix
Deardrops Jan 13, 2020
143b452
implement cancel & delete api
Deardrops Jan 15, 2020
75764c3
refactor code: mvc framework and restful api
Deardrops Jan 20, 2020
9a46eaa
Merge remote-tracking branch 'origin/master' into log-fetcher
Deardrops Jan 20, 2020
cdcd15c
add go mod
Deardrops Jan 20, 2020
fd85f22
sort import
Deardrops Jan 20, 2020
03eeae9
rm sqlite.db in .gitignore
Deardrops Jan 20, 2020
3eb0456
manual test all http api
Deardrops Jan 20, 2020
57b6c5f
upper sql keyword && add missing license
Deardrops Jan 20, 2020
bf22e86
add gorm && add swagger comment
Deardrops Feb 6, 2020
fa7f0c0
add missing license
Deardrops Feb 6, 2020
05edb8f
fix CI
Deardrops Feb 6, 2020
6384d12
extract store layer to common package && using "container/heap" for l…
Deardrops Feb 7, 2020
a4e64bb
Merge remote-tracking branch 'origin/master' into log-fetcher
Deardrops Feb 10, 2020
608eda4
address comment
Deardrops Feb 10, 2020
91bd429
add missing keyvisual
Deardrops Feb 10, 2020
510957d
Merge remote-tracking branch 'origin' into log-fetcher
Deardrops Feb 10, 2020
6cd8056
address comment
Deardrops Feb 12, 2020
a9e169d
address comment
Deardrops Feb 12, 2020
00c2566
address comment
Deardrops Feb 13, 2020
1b00826
address comment
Deardrops Feb 14, 2020
6db6466
Merge remote-tracking branch 'origin/master' into log-fetcher
Deardrops Feb 14, 2020
d082d25
make CI happy
Deardrops Feb 14, 2020
1eda581
make CI happy
Deardrops Feb 14, 2020
aaf2d59
GC for finished tasks
Deardrops Feb 17, 2020
3c38c53
wip
breezewish Feb 23, 2020
3b249dd
Merge remote-tracking branch 'origin/master' into pr/3
breezewish Feb 23, 2020
079fdf8
Polish
breezewish Feb 24, 2020
2d9472e
Merge pull request #1 from pingcap-incubator/pr/3
Deardrops Feb 25, 2020
ff18b92
make CI happy
Deardrops Feb 25, 2020
aa568a6
Merge remote-tracking branch 'origin/master' into log-fetcher
Deardrops Feb 25, 2020
cd0de93
fix bug when auth with empty password
Deardrops Feb 26, 2020
041addf
Merge branch 'master' into log-fetcher
Deardrops Feb 26, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/master' into log-fetcher
  • Loading branch information
Deardrops committed Feb 10, 2020
commit a4e64bbba94d51e2a105dbfa61286959b3bfc861
13 changes: 8 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,25 @@ require (
github.com/go-openapi/spec v0.19.5 // indirect
github.com/go-openapi/swag v0.19.6 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/google/uuid v1.1.1
github.com/golangci/golangci-lint v1.23.3
github.com/google/uuid v1.0.0
github.com/jinzhu/gorm v1.9.12
github.com/json-iterator/go v1.1.9 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/mailru/easyjson v0.7.0 // indirect
github.com/mattn/go-isatty v0.0.11 // indirect
github.com/mattn/go-sqlite3 v2.0.2+incompatible // indirect
github.com/pingcap/kvproto v0.0.0-20200116032135-1082c388cb01
github.com/pingcap/check v0.0.0-20191107115940-caf2b9e6ccf4
github.com/pingcap/kvproto v0.0.0-20200210034039-d7928312d7e9
github.com/pingcap/log v0.0.0-20191012051959-b742a5d432e9
github.com/pingcap/sysutil v0.0.0-20191224141017-8c3e56fbc8b7
github.com/pingcap/sysutil v0.0.0-20200206130906-2bfa6dc40bcd
github.com/pkg/errors v0.8.1
github.com/swaggo/http-swagger v0.0.0-20200103000832-0e9263c4b516
github.com/swaggo/swag v1.6.4
go.etcd.io/etcd v0.0.0-20190320044326-77d4b742cdbf
go.uber.org/zap v1.12.0
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 // indirect
golang.org/x/sys v0.0.0-20200103143344-a1369afcdac7 // indirect
golang.org/x/tools v0.0.0-20200103221440-774c71fcf114 // indirect
google.golang.org/grpc v1.26.0
google.golang.org/grpc v1.25.1
gopkg.in/go-playground/validator.v9 v9.31.0 // indirect
)
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.