forked from TV4/logrus-stackdriver-formatter
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: updated README and tests and gomod
- Loading branch information
Showing
7 changed files
with
131 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, build with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
debug | ||
|
||
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 | ||
.glide/ | ||
|
||
.idea/ | ||
*.iml | ||
|
||
**/.settings/ | ||
.project | ||
.classpath | ||
|
||
**/target/ | ||
|
||
.vscode/ | ||
|
||
#Various temporary created while building/running jx. | ||
/build/ | ||
/release/ | ||
dist/ | ||
scanning/ | ||
.updatebot-repos/ | ||
.terraform/ | ||
myvalues.yaml | ||
myvalues.yml | ||
**/extraValues.yaml | ||
changelog.md | ||
|
||
# vim swap files | ||
*.swp | ||
|
||
#OSX system files. | ||
**/.DS_Store | ||
|
||
vendor/** | ||
|
||
# if you run `jx install --gitops` locally | ||
jenkins-x-dev-environment | ||
|
||
# generated apidocs | ||
docs/apidocs/build | ||
docs/apidocs/includes | ||
docs/apidocs/site | ||
|
||
# ignore these files 1 by 1 so we can not ignore the stylesheet override | ||
docs/apidocs/static/FontAwesome.otf | ||
docs/apidocs/static/bootstrap-3.3.7.min.js | ||
docs/apidocs/static/bootstrap.min.css | ||
docs/apidocs/static/font-awesome.min.css | ||
docs/apidocs/static/fontawesome-webfont.eot | ||
docs/apidocs/static/fontawesome-webfont.svg | ||
docs/apidocs/static/fontawesome-webfont.ttf | ||
docs/apidocs/static/fontawesome-webfont.woff | ||
docs/apidocs/static/fontawesome-webfont.woff2 | ||
docs/apidocs/static/jquery-3.2.1.min.js | ||
docs/apidocs/static/jquery.scrollTo.min.js | ||
docs/apidocs/static/scroll.js | ||
pkg/jx/cmd/verify-pod.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
module github.com/jenkins-x/logrus-stackdriver-formatter | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/go-stack/stack v1.8.0 | ||
github.com/kr/pretty v0.2.0 | ||
github.com/sirupsen/logrus v1.5.0 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= | ||
github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= | ||
github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= | ||
github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= | ||
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= | ||
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= | ||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= | ||
github.com/sirupsen/logrus v1.5.0 h1:1N5EYkVAPEywqZRJd7cwnRtCb6xJx7NH3T3WUTF980Q= | ||
github.com/sirupsen/logrus v1.5.0/go.mod h1:+F7Ogzej0PZc/94MaYx/nvG9jOFMD2osvC3s+Squfpo= | ||
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= | ||
golang.org/x/sys v0.0.0-20190422165155-953cdadca894 h1:Cz4ceDQGXuKRnVBDTS23GTn/pU5OE2C0WrNTOYK1Uuc= | ||
golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters