You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2020/02/19 14:09:08 UTC

[skywalking-nginx-lua] branch master created (now 8141d41)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-nginx-lua.git.


      at 8141d41  Initial commit.

This branch includes the following new commits:

     new 8141d41  Initial commit.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[skywalking-nginx-lua] 01/01: Initial commit.

Posted by wu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-nginx-lua.git

commit 8141d41b19dcd2cd6d00f24e35a085f60c4aa912
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Wed Feb 19 22:08:53 2020 +0800

    Initial commit.
---
 .asf.yaml        | 32 ++++++++++++++++++++++++++++++++
 README.md        | 27 +++++++++++++++++++++++++++
 lib/sw_agent.lua | 16 ++++++++++++++++
 3 files changed, 75 insertions(+)

diff --git a/.asf.yaml b/.asf.yaml
new file mode 100644
index 0000000..a72f6bd
--- /dev/null
+++ b/.asf.yaml
@@ -0,0 +1,32 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+github:
+    description: APM, Application Performance Monitoring System
+    homepage: https://skywalking.apache.org/
+    labels:
+      - skywalking
+      - observability
+      - apm
+      - distributed-tracing
+      - nginx
+      - lua
+      - dapper
+    enabled_merge_buttons:
+      squash:  true
+      merge:   false
+      rebase:  false  
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..cb674c5
--- /dev/null
+++ b/README.md
@@ -0,0 +1,27 @@
+Apache SkyWalking Nginx Agent
+==========
+
+<img src="http://skywalking.apache.org/assets/logo.svg" alt="Sky Walking logo" height="90px" align="right" />
+
+[![Twitter Follow](https://img.shields.io/twitter/follow/asfskywalking.svg?style=for-the-badge&label=Follow&logo=twitter)](https://twitter.com/AsfSkyWalking)
+
+
+**SkyWalking** Nginx Agent provides the native tracing capability for Nginx powered by Nginx LUA module. 
+
+This agent follows the SkyWalking tracing and header protocol. It reports tracing data to SkyWalking APM through HTTP protocol. 
+All HTTP 1.1 requests go through Nginx could be collected by this agent.
+
+# Setup Doc
+TODO
+
+# Download
+Have no release yet.
+
+# Contact Us
+* Submit an [issue](https://github.com/apache/skywalking/issues)
+* Mail list: **dev@skywalking.apache.org**. Mail to `dev-subscribe@skywalking.apache.org`, 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)
+
+# License
+Apache 2.0
\ No newline at end of file
diff --git a/lib/sw_agent.lua b/lib/sw_agent.lua
new file mode 100644
index 0000000..1a7d08a
--- /dev/null
+++ b/lib/sw_agent.lua
@@ -0,0 +1,16 @@
+-- 
+-- Licensed to the Apache Software Foundation (ASF) under one or more
+-- contributor license agreements.  See the NOTICE file distributed with
+-- this work for additional information regarding copyright ownership.
+-- The ASF licenses this file to You under the Apache License, Version 2.0
+-- (the "License"); you may not use this file except in compliance with
+-- the License.  You may obtain a copy of the License at
+-- 
+--    http://www.apache.org/licenses/LICENSE-2.0
+-- 
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+-- 
\ No newline at end of file