-
Notifications
You must be signed in to change notification settings - Fork 307
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add experimental tracing using a native event collector
- Loading branch information
Showing
16 changed files
with
929 additions
and
36 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,40 @@ | ||
name: Collector | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: [master] | ||
schedule: | ||
- cron: '0 4 * * *' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
# TODO: upstream jobs | ||
|
||
jobs: | ||
express: | ||
runs-on: ubuntu-latest | ||
env: | ||
PLUGINS: express|body-parser|cookie-parser | ||
NODE_OPTIONS: -r ./libdatadog-nodejs/global | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4 | ||
with: | ||
- repository: https://github.com/DataDog/libdatadog-nodejs.git | ||
- path: libdatadog-nodejs | ||
- run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh | ||
- run: npm run build | ||
working-directory: ./libdatadog-nodejs | ||
- uses: ./.github/actions/testagent/start | ||
- uses: ./.github/actions/node/setup | ||
- run: yarn install | ||
- uses: ./.github/actions/node/oldest | ||
- run: yarn test:plugins:ci | ||
- uses: ./.github/actions/node/latest | ||
- run: yarn test:plugins:ci | ||
- if: always() | ||
uses: ./.github/actions/testagent/logs | ||
- uses: codecov/codecov-action@v3 |
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.