Skip to content

Commit bf8111f

Browse files
committed
chore: release main
0 parents  commit bf8111f

File tree

1,491 files changed

+239582
-0
lines changed

Some content is hidden

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

1,491 files changed

+239582
-0
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 2
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true

.gitattributes

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
## This .gitattributes file automatically formats the EOL character in certain filetypes within the repository
2+
3+
## Source code
4+
# JavaScript, TypeScript, c, and h source files
5+
*.js text eol=lf
6+
*.ts text eol=lf
7+
*.tsx text eol=lf
8+
*.h text eol=lf diff=cpp
9+
*.c text eol=lf diff=cpp
10+
11+
# Shell scripts
12+
*.sh text eol=lf
13+
*.bash text eol=lf
14+
15+
# Windows batch and PowerShell scripts
16+
*.bat text eol=crlf
17+
*.cmd text eol=crlf
18+
*.ps1 text eol=crlf
19+
20+
##### Other file types #####
21+
22+
## Text files and documentation
23+
*.txt text
24+
README* text
25+
RELEASING* text
26+
CHANGELOG* text
27+
CONTRIBUTING* text
28+
INSTALL* text
29+
LICENSE* text
30+
31+
## Non-text documentation
32+
*.html text diff=html
33+
*.pdf binary
34+
*.json text
35+
*.rtf binary
36+
37+
## Git Properties
38+
.gitignore text
39+
.gitmodules text
40+
.gitattributes text

.github/CODEOWNERS

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#####################################################
2+
#
3+
# List of approvers for OpenTelemetry JS SDK
4+
#
5+
#####################################################
6+
#
7+
# Learn about membership in OpenTelemetry community:
8+
# https://github.com/open-telemetry/community/blob/main/community-membership.md
9+
#
10+
#
11+
# Learn about CODEOWNERS file format:
12+
# https://help.github.com/en/articles/about-code-owners
13+
#
14+
15+
* @open-telemetry/javascript-approvers
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
labels: bug
5+
---
6+
7+
<!--
8+
Please answer these questions before submitting a bug report.
9+
-->
10+
11+
### What version of OpenTelemetry are you using?
12+
13+
14+
### What version of Node are you using?
15+
16+
17+
### What did you do?
18+
<!--
19+
If possible, provide a recipe for reproducing the error.
20+
-->
21+
22+
23+
### What did you expect to see?
24+
25+
26+
### What did you see instead?
27+
28+
29+
### Additional context
30+
<!--
31+
Add any other context about the problem here.
32+
-->
33+
34+
<sub>**Tip**: [React](https://github.blog/news-insights/product-news/add-reactions-to-pull-requests-issues-and-comments/) with 👍 to help prioritize this issue. Please use comments to provide useful context, avoiding `+1` or `me too`, to help us triage it. Learn more [here](https://opentelemetry.io/community/end-user/issue-participation/).</sub>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Discussion
3+
about: Ask a question or bring up points of consideration
4+
labels: discussion
5+
---
6+
7+
<!--
8+
**NB:** Before opening a discussion here, please consider whether it is JS specific, or if it should be considered in the [other OpenTelemetry client libraries](https://github.com/open-telemetry/). If so, please [open an issue on opentelemetry-specification](https://github.com/open-telemetry/opentelemetry-specification/issues/new) first.
9+
-->
10+
11+
- [ ] This only affects the JavaScript OpenTelemetry library
12+
- [ ] This may affect other libraries, but I would like to get opinions here first
13+
14+
<sub>**Tip**: [React](https://github.blog/news-insights/product-news/add-reactions-to-pull-requests-issues-and-comments/) with 👍 to help prioritize this issue. Please use comments to provide useful context, avoiding `+1` or `me too`, to help us triage it. Learn more [here](https://opentelemetry.io/community/end-user/issue-participation/).</sub>
15+
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
labels: feature-request
5+
---
6+
7+
<!--
8+
**NB:** Before opening a feature request against this repo, consider whether the feature should/could be implemented in the [other OpenTelemetry client libraries](https://github.com/open-telemetry/). If so, please [open an issue on opentelemetry-specification](https://github.com/open-telemetry/opentelemetry-specification/issues/new) first.
9+
-->
10+
11+
### Is your feature request related to a problem? Please describe
12+
<!--
13+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
14+
-->
15+
16+
17+
### Describe the solution you'd like to see
18+
<!--
19+
A clear and concise description of what you want to happen.
20+
-->
21+
22+
23+
### Describe alternatives you've considered
24+
<!--
25+
A clear and concise description of any alternative solutions or features you've considered.
26+
-->
27+
28+
29+
### Additional context
30+
<!--
31+
Add any other context or screenshots about the feature request here.
32+
-->
33+
34+
<sub>**Tip**: [React](https://github.blog/news-insights/product-news/add-reactions-to-pull-requests-issues-and-comments/) with 👍 to help prioritize this issue. Please use comments to provide useful context, avoiding `+1` or `me too`, to help us triage it. Learn more [here](https://opentelemetry.io/community/end-user/issue-participation/).</sub>
35+
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Instrumentation request
3+
about: Create a request to add a new instrumentation
4+
labels: instrumentation-request
5+
---
6+
7+
<!--
8+
**NB:** Before opening an instrumentation request against this repo, please read [the contributing guidelines for new instrumentation](../blob/main/CONTRIBUTING.md#new-instrumentation).
9+
-->
10+
11+
### Which library do you want to instrument?
12+
<!--
13+
A clear and concise description of why this library should be instrumented. Ex. I'm always frustrated when [...]
14+
-->
15+
16+
### Code Owners
17+
18+
<!--
19+
New Instrumentations MUST have at least 2 code-owners that will maintain the instrumentation long-term.
20+
Any code-owners listed MUST fulfill all criteria laid out in the checklist below.
21+
-->
22+
23+
- Owner 1
24+
- [ ] I am a [member of the OpenTelemetry Organization](https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md#member)
25+
- [ ] I have read [CONTRIBUTING.md](../blob/main/CONTRIBUTING.md) and understand the responsibilities of a component owner
26+
- [ ] I agree to follow and uphold the [mission, vision and values](https://github.com/open-telemetry/community/blob/main/mission-vision-values.md) of the OpenTelemetry project
27+
- [ ] I understand that the component may be subject to the [OpenTelemetry Semantic Conventions](https://github.com/open-telemetry/semantic-conventions) and agree to follow the rules set out therein
28+
- Owner 2
29+
<!-- instruct any co-owners to complete the checklist above and comment it on this issue -->
30+
- [ ] Commented on the issue confirming they have fulfilled all criteria for becoming a component owner
31+
<!-- continue listing co-owners if you have more than two -->
32+
33+
### Additional context
34+
<!--
35+
Add any other context or screenshots about the instrumentation request here. Is there a reference you could point for the well-defined lifecycle methods?
36+
-->
37+
38+
<sub>**Tip**: [React](https://github.blog/news-insights/product-news/add-reactions-to-pull-requests-issues-and-comments/) with 👍 to help prioritize this issue. Please use comments to provide useful context, avoiding `+1` or `me too`, to help us triage it. Learn more [here](https://opentelemetry.io/community/end-user/issue-participation/).</sub>
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
name: Component Ownership Request
3+
about: Request yourself being added as a component owner for a component in this repository
4+
labels: type:ownership-request
5+
---
6+
7+
<!--
8+
**NB:** Before opening a component ownership request against this repo, please read [CONTRIBUTING.md](../blob/main/CONTRIBUTING.md#component-ownership) and its subsections first.
9+
-->
10+
11+
### Which component are you requesting ownership of?
12+
13+
<!--
14+
Put a link to the component here.
15+
-->
16+
17+
### Related Work and Qualifications
18+
19+
<!--
20+
List here why you're qualified to take ownership of the component, see [CONTRIBUTING.md](../blob/main/CONTRIBUTING.md#becoming-a-component-owner) for details.
21+
22+
Examples:
23+
- I am working on <related open-source-project> and have deep knowledge of the instrumented package.
24+
- I am using the instrumented package on a regular basis and have deep knowledge of the instrumented package.
25+
- I am working on <similar package or system> and have deep knowledge of the concepts of the instrumented package.
26+
- I am an engineer at an observability vendor we would like to sponsor this component.
27+
-->
28+
29+
### Checklist
30+
31+
- [ ] I am a [member of the OpenTelemetry Organization](https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md#member)
32+
- [ ] I have read [CONTRIBUTING.md](../blob/main/CONTRIBUTING.md) and understand the responsibilities of a component owner.
33+
- [ ] I agree to follow and uphold the [mission, vision and values](https://github.com/open-telemetry/community/blob/main/mission-vision-values.md) of the OpenTelemetry project
34+
- [ ] I understand that the component I'm requesting ownership of may be subject to the [OpenTelemetry Semantic Conventions](https://github.com/open-telemetry/semantic-conventions) and agree to follow the rules set out therein.
35+
36+
### Additional context
37+
38+
<!--
39+
Add any other context that does not fit any of the above sections
40+
-->
41+
42+
<sub>**Tip**: [React](https://github.blog/news-insights/product-news/add-reactions-to-pull-requests-issues-and-comments/) with 👍 to help prioritize this issue. Please use comments to provide useful context, avoiding `+1` or `me too`, to help us triage it. Learn more [here](https://opentelemetry.io/community/end-user/issue-participation/).</sub>

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!--
2+
We appreciate your contribution to the OpenTelemetry project! 👋🎉
3+
4+
Before creating a pull request, please make sure:
5+
- Your PR is solving one problem
6+
- Please provide enough information so that others can review your pull request
7+
- You have read the guide for contributing
8+
- See https://github.com/open-telemetry/opentelemetry-js/blob/main/CONTRIBUTING.md
9+
- You signed all your commits (otherwise we won't be able to merge the PR)
10+
- See https://github.com/open-telemetry/community/blob/main/guides/contributor#sign-the-cla
11+
- You added unit tests for the new functionality
12+
- You mention in the PR description which issue it is addressing, e.g. "Fixes #xxx". This will auto-close
13+
the issue that your PR fixes (if such)
14+
-->
15+
16+
## Which problem is this PR solving?
17+
18+
-
19+
20+
## Short description of the changes
21+
22+
-

0 commit comments

Comments
 (0)