-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(collector-agent): protocol (#533)
* ues pinpoint-grpc-idl@e68bc3963e7ba6f5c7e33f380f45111fddaaf938 * map[string]interface{} to TSpan* * testcase * python version [Task] clue/ctx_key limitation #531 close #531
- Loading branch information
Showing
60 changed files
with
1,127 additions
and
7,204 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
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
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,3 @@ | ||
[submodule "collector-agent/pinpoint-grpc-idl"] | ||
path = collector-agent/pinpoint-grpc-idl | ||
url = https://github.com/pinpoint-apm/pinpoint-grpc-idl.git |
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 |
---|---|---|
|
@@ -4,3 +4,5 @@ | |
*.exe | ||
*.log | ||
CollectorAgent | ||
collector-agent | ||
pinpoint-grpc-idl |
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,8 +1,8 @@ | ||
FROM golang:1.16.5-alpine3.13 as builder | ||
FROM golang:1.18-alpine3.17 as builder | ||
WORKDIR /apps | ||
COPY collector-agent /apps/collector-agent | ||
RUN cd /apps/collector-agent && go build -o CollectorAgent server.go | ||
RUN cd /apps/collector-agent && go mod tidy && go build -o CollectorAgent | ||
|
||
FROM alpine:3.14 | ||
FROM alpine:3.17 | ||
COPY --from=builder /apps/collector-agent/CollectorAgent /usr/local/bin | ||
ENTRYPOINT [ "CollectorAgent" ] |
Oops, something went wrong.