Skip to content

feat: add option to enable ApiTracer #3095

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

Merged
merged 26 commits into from
Jun 7, 2024
Merged
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
49e6ac3
feat: add option to enable ApiTracer
olavloite May 6, 2024
62a5492
feat: add gfe-latency as attribute to span
olavloite May 8, 2024
990850b
fix: get span at request start
olavloite May 8, 2024
6958173
test: add tests for ApiTracer
olavloite May 10, 2024
319e889
test: fix tests when using mux sessions
olavloite May 14, 2024
ce205a5
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] May 14, 2024
90752a1
chore: cleanup
olavloite May 14, 2024
ab5e2dd
Merge branch 'add-option-for-api-tracer' of github.com:googleapis/jav…
olavloite May 14, 2024
644e3d3
build: declare test dependency that is being used
olavloite May 14, 2024
e03f21b
Merge branch 'main' into add-option-for-api-tracer
olavloite May 15, 2024
3392074
chore: remove TODOs
olavloite May 15, 2024
1510a12
chore: add env var for enabling api tracing
olavloite May 15, 2024
bfa1aac
chore: add clirr ignored diff
olavloite May 15, 2024
aa2d4da
chore: address review comments
olavloite May 21, 2024
fc7c7f0
Merge branch 'main' into add-option-for-api-tracer
olavloite May 21, 2024
2318515
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] May 21, 2024
dc9d284
Merge branch 'main' into add-option-for-api-tracer
olavloite May 29, 2024
c40f434
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] May 29, 2024
b6e9018
Merge branch 'main' into add-option-for-api-tracer
olavloite Jun 5, 2024
2081efd
test: add OpenCensus ApiTracer tests
olavloite Jun 6, 2024
2e2798c
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jun 6, 2024
3b51a06
fix: clear spans after test
olavloite Jun 6, 2024
2ed8d2a
Merge branch 'add-option-for-api-tracer' of github.com:googleapis/jav…
olavloite Jun 6, 2024
1107a04
fix: ignore test traces coming from a previous test
olavloite Jun 6, 2024
715f209
test: skip OpenCensus ApiTracer test as OpenCensus is way too intrusive
olavloite Jun 6, 2024
52dfd06
test: increase timeout to reduce flakiness
olavloite Jun 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ implementation 'com.google.cloud:google-cloud-spanner'
If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-spanner:6.68.0'
implementation 'com.google.cloud:google-cloud-spanner:6.68.1'
```

If you are using SBT, add this to your dependencies:

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-spanner" % "6.68.0"
libraryDependencies += "com.google.cloud" % "google-cloud-spanner" % "6.68.1"
```
<!-- {x-version-update-end} -->

Expand Down Expand Up @@ -687,7 +687,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-spanner/java11.html
[stability-image]: https://img.shields.io/badge/stability-stable-green
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-spanner.svg
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-spanner/6.68.0
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-spanner/6.68.1
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
Expand Down
Loading