This is an automated email from the ASF dual-hosted git repository. kezhenxu94 pushed a commit to branch release-0.1.0 in repository https://gitbox.apache.org/repos/asf/skywalking-python.git
commit 2b8687dc04cce3c8348ddb5ba262c250b3021da8 Author: kezhenxu94 <[email protected]> AuthorDate: Mon Jun 15 21:51:35 2020 +0800 Add CHANGELOG for 0.1.0 and add missing doc for `AUTHENTICATION` env var --- CHANGELOG.md | 7 +++++++ README.md | 1 + setup.py | 4 ++-- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..fe4a7ef --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +## Change Logs + +### 0.1.0 + +- API: agent core APIs, check [the APIs and the examples](https://github.com/apache/skywalking-python/blob/3892cab9d5d2c03107cfb2b1c59a6c77c5c3cc35/README.md#api) +- Plugin: built-in libraries `http`, `urllib.request` and third-party library `requests` are supported. +- Test: agent test framework is setup, and the corresponding tests of aforementioned plugins are also added. diff --git a/README.md b/README.md index b84781d..fdbf6ab 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ Environment Variable | Description | Default | `SW_AGENT_INSTANCE` | The name of the Python service instance | Randomly generated | | `SW_AGENT_COLLECTOR_BACKEND_SERVICES` | The backend OAP server address | `127.0.0.1:11800` | | `SW_AGENT_PROTOCOL` | The protocol to communicate with the backend OAP, `http` or `grpc`, **we highly suggest using `grpc` in production as it's well optimized than `http`** | `grpc` | +| `SW_AGENT_AUTHENTICATION` | The authentication token to verify that the agent is trusted by the backend OAP, as for how to configure the backend, refer to [the yaml](https://github.com/apache/skywalking/blob/4f0f39ffccdc9b41049903cc540b8904f7c9728e/oap-server/server-bootstrap/src/main/resources/application.yml#L155-L158). | not set | | `SW_AGENT_LOGGING_LEVEL` | The logging level, could be one of `CRITICAL`, `FATAL`, `ERROR`, `WARN`(`WARNING`), `INFO`, `DEBUG` | `INFO` | | `SW_AGENT_DISABLE_PLUGINS` | The name patterns in CSV pattern, plugins whose name matches one of the pattern won't be installed | `''` | diff --git a/setup.py b/setup.py index 8033957..effb262 100644 --- a/setup.py +++ b/setup.py @@ -24,8 +24,8 @@ HERE = pathlib.Path(__file__).parent README = (HERE / "README.md").read_text() setup( - name="skywalking-python", - version="0.1.1", + name="skywalking", + version="0.1.0", description="Python Agent for Apache SkyWalking", long_description=README, long_description_content_type="text/markdown",
