-
Notifications
You must be signed in to change notification settings - Fork 49
feat: Introducing Tracing with OpenTelemetry API #1537
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
d84aae4
feat: Adding TraceUtil interface and its implementation to enable Tra…
jimit-j-shah 77810da
feat: Adding Lookup RPC OpenTelemetry Tracing (#1437)
jimit-j-shah 730aa42
feat: Adding Commit RPC Trace Instrumentation (#1440)
jimit-j-shah 602c5e3
feat: RunQuery trace instrumentation (#1441)
jimit-j-shah 1e4e7ca
feat: RunAggregationQuery instrumentation (#1447)
jimit-j-shah 52329e4
feat: RunQuery trace instrumentation
jimit-j-shah de05e49
Formatting
jimit-j-shah a9965db
Formatting
jimit-j-shah 3fef66f
Refactor: s/RUNQUERY/RUN_QUERY
jimit-j-shah fb8a28e
feat: RunAggregationQuery Trace Instrumentation
jimit-j-shah 02d178d
Build: retiring test assertions for OpenCensus spans - will be replac…
jimit-j-shah a2a2f03
Formatting
jimit-j-shah 73241a2
Fixing @Test annotation missed after merge
jimit-j-shah 75a98b4
Formatting
jimit-j-shah 585181f
feat: Add Transaction tracing
jimit-j-shah 4edc2ef
test: Transaction test for RunInTransaction - need to fix trace instr…
jimit-j-shah 22571ea
Adding transaction span names
jimit-j-shah 3076735
TransactionLookupTest
jimit-j-shah 8dca867
feat: support for transactional operations
jimit-j-shah 66cebbb
Revert "feat: support for transactional operations"
jimit-j-shah 24779b9
feat: support for transactional operations (#1468)
jimit-j-shah 552d04e
feat: Allocateid tracing (#1488)
jimit-j-shah 975464a
feat: Add tracing for ReserveIds operation (#1490)
jimit-j-shah 27caf81
fix: Fixed Span nesting for `ReadWriteTransactionCallable` by using p…
jimit-j-shah 31a6f4a
test: Additional Transaction Testing and cleanup OpenCensus usage (#1…
jimit-j-shah 536c2d9
test: Adding ITTracingTest to verify events and span attributes (whic…
jimit-j-shah 6944e1b
test: Additional Transaction tests and AggregationQuery test (#1518)
jimit-j-shah 5652dd4
fix: Undelete gRPC upgrade docs
jimit-j-shah aa00fe2
fix: Undo merge mistakes
jimit-j-shah 3a3d7b8
fix: Updating span event strings (#1539)
jimit-j-shah 3640051
Fix: typo in test causing integration test failure (#1556)
jimit-j-shah f787871
chore(main): release 2.21.0 (#1517)
release-please[bot] a880548
deps: update dependency com.google.cloud:sdk-platform-java-config to …
renovate-bot fb43b23
chore(main): release 2.21.1-SNAPSHOT (#1538)
release-please[bot] 2fdc90a
chore(deps): update dependency com.google.cloud:libraries-bom to v26.…
renovate-bot 1706dd5
chore(main): release 2.21.1 (#1540)
release-please[bot] 0b496ba
chore(main): release 2.21.2-SNAPSHOT (#1541)
release-please[bot] 16b3515
chore: secure hermetic_library_generation workflow (#1552)
diegomarquezp ea98972
deps: update dependency com.google.cloud:sdk-platform-java-config to …
renovate-bot fb4bd08
chore(main): release 2.21.2 (#1553)
release-please[bot] 3be4fb7
chore: remove datastore native image sample in favor of sample hosted…
mpeddada1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -17,10 +17,14 @@ name: Hermetic library generation upon generation config change through pull req | |
| on: | ||
| pull_request: | ||
|
|
||
| env: | ||
| HEAD_REF: ${{ github.head_ref }} | ||
| REPO_FULL_NAME: ${{ github.event.pull_request.head.repo.full_name }} | ||
|
|
||
| jobs: | ||
| library_generation: | ||
| # skip pull requests coming from a forked repository | ||
| if: github.event.pull_request.head.repo.full_name == github.repository | ||
| if: github.env.REPO_FULL_NAME == github.repository | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
@@ -30,11 +34,11 @@ jobs: | |
| - name: Generate changed libraries | ||
| shell: bash | ||
| run: | | ||
| set -x | ||
| set -ex | ||
| [ -z "$(git config user.email)" ] && git config --global user.email "[email protected]" | ||
| [ -z "$(git config user.name)" ] && git config --global user.name "cloud-java-bot" | ||
| bash .github/scripts/hermetic_library_generation.sh \ | ||
| --target_branch ${{ github.base_ref }} \ | ||
| --current_branch ${{ github.head_ref }} | ||
| --current_branch $HEAD_REF | ||
| env: | ||
| GH_TOKEN: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }} | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.