-
Notifications
You must be signed in to change notification settings - Fork 436
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into inahga/fix-aggregation-validation
- Loading branch information
Showing
276 changed files
with
4,708 additions
and
22,757 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
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,51 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug", "triage:todo"] | ||
projects: ["open-telemetry/opentelemetry-rust"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us, what did you expect to happen? | ||
placeholder: Tell us what you see! | ||
value: "A bug happened!" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: api-version | ||
attributes: | ||
label: API Version | ||
description: What version of the OpenTelemetry API are you using? | ||
placeholder: 0.x, 1.x, etc. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: sdk-version | ||
attributes: | ||
label: SDK Version | ||
description: What version of the OpenTelemetry SDK are you using? | ||
placeholder: 0.x, 1.x, etc. | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What Exporters are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- OTLP | ||
- Zipkin | ||
- Jaeger (Deprecated) | ||
- N/A | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell |
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,48 @@ | ||
--- | ||
name: "Feature Request" | ||
description: Request a feature for the OpenTelemetry Rust implementation. | ||
title: "[Feature]: " | ||
labels: ["enhancement", "triage:todo"] | ||
projects: ["open-telemetry/opentelemetry-rust"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for using our library and trying to make it better! | ||
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. | ||
- type: textarea | ||
id: related-problem | ||
attributes: | ||
label: Related Problems? | ||
description: Is your feature request related to a problem? If so, provide a concise description of the problem. | ||
placeholder: Include the Issue ID from this or other repos. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: "Describe the solution you'd like:" | ||
description: What do you want to happen instead? What is the expected behavior? | ||
placeholder: I'd like the api to ... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Considered Alternatives | ||
description: Which alternative solutions or features have you considered? | ||
placeholder: Some potential solutions | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Context | ||
description: Add any other context about the feature request here. | ||
placeholder: Some related requests in other project or upstream spec proposals. | ||
validations: | ||
required: false |
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,11 @@ | ||
contact_links: | ||
- name: GitHub Discussions | ||
url: https://github.com/open-telemetry/opentelemetry-rust/discussions/new/choose | ||
about: Please ask questions here. | ||
- name: Slack | ||
url: https://cloud-native.slack.com/archives/C03GDP0H023 | ||
about: Or the `#otel-rust` channel in the CNCF Slack instance. (Not terribly responsive.) | ||
- name: "⚠️ Report a security vulnerability" | ||
url: "https://github.com/open-telemetry/opentelemetry-rust/security/advisories/new" | ||
about: "Report a security vulnerability." | ||
|
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 |
---|---|---|
|
@@ -6,6 +6,8 @@ on: | |
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- '**.md' | ||
jobs: | ||
test: | ||
strategy: | ||
|
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
*/target/ | ||
**/*.rs.bk | ||
Cargo.lock | ||
/.idea/ |
Validating CODEOWNERS rules …
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,7 @@ | ||
# Code owners file. | ||
# This file controls who is tagged for review for any given pull request. | ||
# Code owners file | ||
|
||
# For anything not explicitly taken by someone else: | ||
* @open-telemetry/rust-approvers | ||
## This file controls who is tagged for review for any given pull request. | ||
|
||
## For anything not explicitly taken by someone else: | ||
|
||
* @open-telemetry/rust-approvers |
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
Oops, something went wrong.