-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from BuoyantIO/stevej/add_prometheus
Add prometheus stats
- Loading branch information
Showing
252 changed files
with
76,810 additions
and
13 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
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,10 @@ | ||
FROM golang:1.8.0-alpine | ||
|
||
WORKDIR /go/src/strest-grpc | ||
|
||
ADD . /go/src/github.com/buoyantio/strest-grpc | ||
|
||
RUN go build -o /go/bin/strest-server /go/src/github.com/buoyantio/strest-grpc/server/main.go | ||
RUN go build -o /go/bin/strest-client /go/src/github.com/buoyantio/strest-grpc/client/main.go | ||
|
||
ENTRYPOINT ["/go/bin/strest-server"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
|
||
set -x | ||
|
||
GOOS=linux GOARCH=amd64 go build -o strest-server-linux server/main.go | ||
GOOS=linux GOARCH=amd64 go build -o strest-client-linux client/main.go | ||
|
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
Oops, something went wrong.