Skip to content

Commit 3a90121

Browse files
committed
feat:调整pg插件的代码结构
1 parent 515d919 commit 3a90121

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+2619
-91
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior.
15+
16+
**Expected behavior**
17+
A clear and concise description of what you expected to happen.
18+
19+
**Environment**
20+
- Version: [e.g. v1.0.0]
21+
- OS: [e.g. CentOS8]
22+
23+
**Additional context**
24+
Add any other context about the problem here.
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Documentation
3+
about: Improvements or additions to documentation
4+
title: ''
5+
labels: documentation
6+
assignees: ''
7+
8+
---
9+
10+
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**What is the feature you want to add?**
11+
12+
**Why do you want to add this feature?**
13+
14+
**How to implement this feature?**
15+
16+
**Additional context**
17+
Add any other context or screenshots about the feature request here.

.github/ISSUE_TEMPLATE/q-a.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Q&A
3+
about: Please tell me your questions
4+
title: ''
5+
labels: question
6+
assignees: ''
7+
8+
---
9+
10+

.github/pull_request_template.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
**Please provide issue(s) of this PR:**
2+
Fixes #
3+
4+
**To help us figure out who should review this PR, please put an X in all the areas that this PR affects.**
5+
6+
- [ ] ApiServer
7+
- [ ] Auth
8+
- [ ] Configuration
9+
- [ ] Naming
10+
- [ ] HealthCheck
11+
- [ ] Metrics
12+
- [ ] Docs
13+
- [ ] Installation
14+
- [ ] Performance and Scalability
15+
- [ ] Test and Release
16+
17+
**Please check any characteristics that apply to this pull request.**
18+
19+
- [ ] Does not have any user-facing changes. This may include API changes, behavior changes, performance improvements, etc.

.github/stale.yml

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Tencent is pleased to support the open source community by making Polaris available.
2+
#
3+
# Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
4+
#
5+
# Licensed under the BSD 3-Clause License (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# https://opensource.org/licenses/BSD-3-Clause
10+
#
11+
# Unless required by applicable law or agreed to in writing, software distributed
12+
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
13+
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
14+
# specific language governing permissions and limitations under the License.
15+
16+
# Configuration for probot-stale - https://github.com/probot/stale
17+
18+
# General configuration
19+
# Label to use when marking as stale
20+
staleLabel: stale
21+
22+
# Pull request specific configuration
23+
pulls:
24+
# Number of days of inactivity before an Issue or Pull Request becomes stale
25+
daysUntilStale: 14
26+
# Number of days of inactivity before a stale Issue or Pull Request is closed.
27+
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
28+
daysUntilClose: 30
29+
# Comment to post when marking as stale. Set to `false` to disable
30+
markComment: >
31+
This pull request has been automatically marked as stale because it has not had
32+
activity in the last 2 weeks. It will be closed in 30 days if no further activity occurs. Please
33+
feel free to give a status update now, ping for review, or re-open when it's ready.
34+
Thank you for your contributions!
35+
# Comment to post when closing a stale Issue or Pull Request.
36+
closeComment: >
37+
This pull request has been automatically closed because it has not had
38+
activity in the last 30 days. Please feel free to give a status update now, ping for review, or re-open when it's ready.
39+
Thank you for your contributions!
40+
# Limit the number of actions per hour, from 1-30. Default is 30
41+
limitPerRun: 1
42+
43+
exemptLabels:
44+
- help wanted
45+
- kind/customer issue
46+
- kind/test failure
47+
- Epic
48+
- no stalebot
49+
50+
# Issue specific configuration
51+
issues:
52+
# TODO: Consider increasing the limitPerRun once we are satisfied with the bot's performance
53+
limitPerRun: 1
54+
daysUntilStale: 90
55+
daysUntilClose: 30
56+
markComment: >
57+
This issue has been automatically marked as stale because it has not had activity in the
58+
last 90 days. It will be closed in the next 30 days unless it is tagged "help wanted" or other activity
59+
occurs. Thank you for your contributions.
60+
closeComment: >
61+
This issue has been automatically closed because it has not had activity in the
62+
last month and a half. If this issue is still valid, please ping a maintainer and ask them to label it as "help wanted".
63+
Thank you for your contributions.

.github/workflows/golangci-lint.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Tencent is pleased to support the open source community by making Polaris available.
2+
#
3+
# Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
4+
#
5+
# Licensed under the BSD 3-Clause License (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# https://opensource.org/licenses/BSD-3-Clause
10+
#
11+
# Unless required by applicable law or agreed to in writing, software distributed
12+
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
13+
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
14+
# specific language governing permissions and limitations under the License.
15+
16+
name: golangci-lint
17+
on:
18+
push:
19+
branches:
20+
- main
21+
- release*
22+
pull_request:
23+
branches:
24+
- main
25+
- release*
26+
- feature/**
27+
28+
jobs:
29+
golangci:
30+
strategy:
31+
matrix:
32+
go-version: [ 1.19 ]
33+
name: golangci-lint
34+
runs-on: ubuntu-latest
35+
steps:
36+
- uses: actions/setup-go@v3
37+
- uses: actions/checkout@v3
38+
- name: golangci-lint
39+
uses: golangci/[email protected]
40+
with:
41+
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
42+
version: latest

.github/workflows/licence-checker.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Tencent is pleased to support the open source community by making Polaris available.
2+
#
3+
# Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
4+
#
5+
# Licensed under the BSD 3-Clause License (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# https://opensource.org/licenses/BSD-3-Clause
10+
#
11+
# Unless required by applicable law or agreed to in writing, software distributed
12+
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
13+
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
14+
# specific language governing permissions and limitations under the License.
15+
16+
name: License checker
17+
18+
on:
19+
push:
20+
branches:
21+
- main
22+
- release*
23+
pull_request:
24+
branches:
25+
- main
26+
- release*
27+
28+
jobs:
29+
check-license:
30+
runs-on: ubuntu-latest
31+
steps:
32+
- uses: actions/checkout@v2
33+
34+
- name: Check License Header
35+
uses: apache/skywalking-eyes@main
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38+
with:
39+
log: info
40+
config: .licenserc.yaml

.gitignore

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
polaris-server
2+
polaris-server-*
3+
polaris-server-release*
4+
polaris-server-release.tar.gz
5+
6+
log/
7+
/statis/
8+
/discover-statis/
9+
/discover-event/
10+
/build_resource/**
11+
12+
.idea
13+
.DS_Store
14+
coverage*
15+
16+
*.swp
17+
*.code-workspace
18+
19+
__debug_bin
20+
21+
.vscode
22+
*.bolt
23+
*.bolt.lock
24+
/vendor
25+
.codecc
26+
*.log
27+
28+
style_tool/
29+
goimports-reviser

0 commit comments

Comments
 (0)