-
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.
- fix collector-agent compiled problem - patch for #626
- Loading branch information
Showing
17 changed files
with
127 additions
and
24 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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM golang:1.18-alpine3.17 as builder | ||
WORKDIR /apps | ||
USER root | ||
RUN apk add --no-cache make protobuf-dev | ||
RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@latest && go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest | ||
RUN apk add --no-cache make protobuf-dev git | ||
RUN go install google.golang.org/protobuf/cmd/[email protected] && go install google.golang.org/grpc/cmd/[email protected] | ||
|
||
COPY ./ /apps | ||
RUN make | ||
|
||
|
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
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 |
---|---|---|
|
@@ -31,5 +31,5 @@ def use_thread_local_context(): | |
|
||
__all__ = ['monkey_patch_for_pinpoint', 'use_thread_local_context' | ||
'set_agent', 'app_id', 'app_name', 'gen_tid', 'get_logger', 'PinTransaction', 'GenPinHeader', 'PinHeader'] | ||
__version__ = "1.1.2" | ||
__version__ = "1.3.1" | ||
__author__ = '[email protected]' |
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 |
---|---|---|
|
@@ -41,5 +41,9 @@ def monkey_patch(): | |
|
||
__all__ = ['monkey_patch'] | ||
|
||
__version__ = '0.0.4' | ||
__version__ = '0.0.5' | ||
__author__ = '[email protected]' | ||
|
||
# changes | ||
# 0.0.5 | ||
# - fix https://github.com/pinpoint-apm/pinpoint-c-agent/issues/626 |
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 |
---|---|---|
|
@@ -40,5 +40,9 @@ def monkey_patch(): | |
|
||
__all__ = ['monkey_patch'] | ||
|
||
__version__ = '0.0.3' | ||
__version__ = '0.0.4' | ||
__author__ = '[email protected]' | ||
|
||
# changes | ||
# 0.0.4 | ||
# - fix https://github.com/pinpoint-apm/pinpoint-c-agent/issues/626 |
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 |
---|---|---|
|
@@ -47,5 +47,9 @@ def monkey_patch(): | |
|
||
__all__ = ['monkey_patch'] | ||
|
||
__version__ = '0.0.5' | ||
__version__ = '0.0.6' | ||
__author__ = '[email protected]' | ||
|
||
# changes | ||
# 0.0.6 | ||
# - fix https://github.com/pinpoint-apm/pinpoint-c-agent/issues/626 |
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,5 +1,5 @@ | ||
bottle==0.12.25 | ||
fastapi==0.109.1 | ||
fastapi==0.111.0 | ||
flask==3.0.0 | ||
httpx==0.25.1 | ||
mysql-connector-python==8.0.31 | ||
|
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 |
---|---|---|
|
@@ -39,7 +39,7 @@ | |
Path(cwd, './common/src')] | ||
|
||
setup(name='pinpointPy', | ||
version="1.2.1", # don't forget update __version__ in pinpointPy/__init__.py | ||
version="1.3.1", # don't forget update __version__ in pinpointPy/__init__.py | ||
author="cd_pinpoint members", | ||
author_email='[email protected]', | ||
license='Apache License 2.0', | ||
|
@@ -61,6 +61,8 @@ | |
|
||
""" | ||
# Changed | ||
## 1.3.1 | ||
- fix bug https://github.com/pinpoint-apm/pinpoint-c-agent/issues/626 | ||
## 1.3.0 | ||
- support error analysis | ||
## 1.2.1 | ||
|
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 |
---|---|---|
|
@@ -37,7 +37,7 @@ | |
Path(cwd, './common/src')] | ||
|
||
setup(name='pinpointPy', | ||
version="1.3.5", # don't forget update __version__ in pinpointPy/__init__.py | ||
version="1.3.6", # don't forget update __version__ in pinpointPy/__init__.py | ||
author="cd_pinpoint members", | ||
author_email='[email protected]', | ||
license='Apache License 2.0', | ||
|