-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for version 1.0.0 release and fix typos in doc. (#108)
- Loading branch information
Showing
5 changed files
with
49 additions
and
4 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 |
---|---|---|
|
@@ -20,3 +20,4 @@ packages/ | |
/test/e2e/agent-test-tools/dist | ||
/t/servroot/ | ||
go | ||
release/ |
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,5 +1,5 @@ | ||
Apache SkyWalking | ||
Copyright 2017-2022 The Apache Software Foundation | ||
Copyright 2017-2024 The Apache Software Foundation | ||
|
||
This product includes software developed at | ||
The Apache Software Foundation (http://www.apache.org/). |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ Apache SkyWalking Nginx Agent | |
|
||
[![Twitter Follow](https://img.shields.io/twitter/follow/asfskywalking.svg?style=for-the-badge&label=Follow&logo=twitter)](https://twitter.com/AsfSkyWalking) | ||
|
||
![CI](https://github.com/apache/skywalking-nginx-lua/workflows/CI/badge.svg?branch=master) | ||
[![CI](https://github.com/apache/skywalking-nginx-lua/actions/workflows/ci.yaml/badge.svg)](https://github.com/apache/skywalking-nginx-lua/actions/workflows/ci.yaml) | ||
|
||
|
||
[**SkyWalking**](https://github.com/apache/skywalking) Nginx Agent provides the native tracing capability for Nginx powered by Nginx LUA module. | ||
|
@@ -154,8 +154,8 @@ Create 2 kinds of span API v1 | |
# Contact Us | ||
* Submit an [issue](https://github.com/apache/skywalking/issues) with `[NIGNX-LUA]` as the issue title prefix. | ||
* Mail list: **[email protected]**. Mail to `[email protected]`, follow the reply to subscribe the mail list. | ||
* Join `skywalking` channel at [Apache Slack](https://join.slack.com/t/the-asf/shared_invite/enQtNzc2ODE3MjI1MDk1LTAyZGJmNTg1NWZhNmVmOWZjMjA2MGUyOGY4MjE5ZGUwOTQxY2Q3MDBmNTM5YTllNGU4M2QyMzQ4M2U4ZjQ5YmY). If the link is not working, find the latest one at [Apache INFRA WIKI](https://cwiki.apache.org/confluence/display/INFRA/Slack+Guest+Invites). | ||
* QQ Group: 392443393(2000/2000, not available), 901167865(available) | ||
* Send `Request to join SkyWalking slack` mail to the mail list(`dev@skywalking.apache.org`), we will invite you in. | ||
* For Chinese speaker, send `[CN] Request to join SkyWalking slack` mail to the mail list(`[email protected]`), we will invite you in. | ||
|
||
# Release Guide | ||
All committers should follow [Release Guide](release.md) to publish the official release. | ||
|
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,34 @@ | ||
package = "skywalking-nginx-lua" | ||
version = "1.0.0-0" | ||
source = { | ||
url = "git+https://github.com/apache/skywalking-nginx-lua", | ||
tag = "v1.0.0", | ||
} | ||
|
||
description = { | ||
summary = "The Nginx Lua agent for Apache SkyWalking", | ||
homepage = "https://github.com/apache/skywalking-nginx-lua", | ||
license = "Apache License 2.0" | ||
} | ||
|
||
dependencies = { | ||
"lua-resty-http >= 0.15", | ||
"lua-resty-jit-uuid >= 0.0.7" | ||
} | ||
|
||
build = { | ||
type = "builtin", | ||
modules = { | ||
["skywalking.client"] = "lib/skywalking/client.lua", | ||
["skywalking.constants"] = "lib/skywalking/constants.lua", | ||
["skywalking.correlation_context"] = "lib/skywalking/correlation_context.lua", | ||
["skywalking.management"] = "lib/skywalking/management.lua", | ||
["skywalking.segment_ref"] = "lib/skywalking/segment_ref.lua", | ||
["skywalking.segment"] = "lib/skywalking/segment.lua", | ||
["skywalking.span_layer"] = "lib/skywalking/span_layer.lua", | ||
["skywalking.span"] = "lib/skywalking/span.lua", | ||
["skywalking.tracer"] = "lib/skywalking/tracer.lua", | ||
["skywalking.tracing_context"] = "lib/skywalking/tracing_context.lua", | ||
["skywalking.util"] = "lib/skywalking/util.lua", | ||
} | ||
} |