-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from daidokoro/v0.1.0
Add support for Emit and Loggers and more...
- Loading branch information
Showing
19 changed files
with
483 additions
and
426 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: checks | ||
on: | ||
pull_request: | ||
paths-ignore: | ||
- ".github/**" | ||
|
||
jobs: | ||
check-changelog: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Check Changelog modified | ||
uses: dangoslen/changelog-enforcer@v3 | ||
with: | ||
changeLogPath: "./CHANGELOG.md" | ||
missingUpdateErrorMessage: | | ||
Please include an entry into `CHANGELOG.md` to describe what happened in the PR |
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,24 @@ | ||
name: distro component test | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
|
||
env: | ||
GO_VERSION: 1.22.x | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Go ${{ env.GO_VERSION }} | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
|
||
- name: test components | ||
run: find . -name go.mod -execdir go test -v ./... \; | ||
|
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 @@ | ||
## Otelity | ||
|
||
### v0.1.0 / 2024-12-15 (Breaking) | ||
- [Feat] add `emit` funciton to starlark processor | ||
- [Feat] added `log` module to starlark processor | ||
- [Feat] added `entrypoint` option to starlark config, allowing to specify the entry point of the starlark script/code | ||
- [Fix] `json.decode` no longer required to load telemetry events in starlark processor | ||
|
||
### v0.0.1 / 2024-12-07 | ||
- [Feat] initial release | ||
- starlark processor |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.