Skip to content
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

feat: Introducing Tracing with OpenTelemetry API #1537

Closed
wants to merge 41 commits into from
Closed
Changes from 1 commit
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 May 8, 2024
77810da
feat: Adding Lookup RPC OpenTelemetry Tracing (#1437)
jimit-j-shah May 15, 2024
730aa42
feat: Adding Commit RPC Trace Instrumentation (#1440)
jimit-j-shah May 20, 2024
602c5e3
feat: RunQuery trace instrumentation (#1441)
jimit-j-shah May 23, 2024
1e4e7ca
feat: RunAggregationQuery instrumentation (#1447)
jimit-j-shah May 23, 2024
52329e4
feat: RunQuery trace instrumentation
jimit-j-shah May 15, 2024
de05e49
Formatting
jimit-j-shah May 15, 2024
a9965db
Formatting
jimit-j-shah May 15, 2024
3fef66f
Refactor: s/RUNQUERY/RUN_QUERY
jimit-j-shah May 16, 2024
fb8a28e
feat: RunAggregationQuery Trace Instrumentation
jimit-j-shah May 16, 2024
02d178d
Build: retiring test assertions for OpenCensus spans - will be replac…
jimit-j-shah May 16, 2024
a2a2f03
Formatting
jimit-j-shah May 17, 2024
73241a2
Fixing @Test annotation missed after merge
jimit-j-shah May 20, 2024
75a98b4
Formatting
jimit-j-shah May 20, 2024
585181f
feat: Add Transaction tracing
jimit-j-shah May 21, 2024
4edc2ef
test: Transaction test for RunInTransaction - need to fix trace instr…
jimit-j-shah May 21, 2024
22571ea
Adding transaction span names
jimit-j-shah May 23, 2024
3076735
TransactionLookupTest
jimit-j-shah May 23, 2024
8dca867
feat: support for transactional operations
jimit-j-shah May 30, 2024
66cebbb
Revert "feat: support for transactional operations"
jimit-j-shah May 30, 2024
24779b9
feat: support for transactional operations (#1468)
jimit-j-shah Jun 7, 2024
552d04e
feat: Allocateid tracing (#1488)
jimit-j-shah Jun 19, 2024
975464a
feat: Add tracing for ReserveIds operation (#1490)
jimit-j-shah Jun 25, 2024
27caf81
fix: Fixed Span nesting for `ReadWriteTransactionCallable` by using p…
jimit-j-shah Jun 27, 2024
31a6f4a
test: Additional Transaction Testing and cleanup OpenCensus usage (#1…
jimit-j-shah Jul 2, 2024
536c2d9
test: Adding ITTracingTest to verify events and span attributes (whic…
jimit-j-shah Jul 10, 2024
6944e1b
test: Additional Transaction tests and AggregationQuery test (#1518)
jimit-j-shah Jul 19, 2024
5652dd4
fix: Undelete gRPC upgrade docs
jimit-j-shah Aug 5, 2024
aa00fe2
fix: Undo merge mistakes
jimit-j-shah Aug 5, 2024
3a3d7b8
fix: Updating span event strings (#1539)
jimit-j-shah Aug 6, 2024
3640051
Fix: typo in test causing integration test failure (#1556)
jimit-j-shah Sep 4, 2024
f787871
chore(main): release 2.21.0 (#1517)
release-please[bot] Aug 5, 2024
a880548
deps: update dependency com.google.cloud:sdk-platform-java-config to …
renovate-bot Aug 6, 2024
fb43b23
chore(main): release 2.21.1-SNAPSHOT (#1538)
release-please[bot] Aug 6, 2024
2fdc90a
chore(deps): update dependency com.google.cloud:libraries-bom to v26.…
renovate-bot Aug 6, 2024
1706dd5
chore(main): release 2.21.1 (#1540)
release-please[bot] Aug 6, 2024
0b496ba
chore(main): release 2.21.2-SNAPSHOT (#1541)
release-please[bot] Aug 20, 2024
16b3515
chore: secure hermetic_library_generation workflow (#1552)
diegomarquezp Aug 20, 2024
ea98972
deps: update dependency com.google.cloud:sdk-platform-java-config to …
renovate-bot Aug 22, 2024
fb4bd08
chore(main): release 2.21.2 (#1553)
release-please[bot] Aug 23, 2024
3be4fb7
chore: remove datastore native image sample in favor of sample hosted…
mpeddada1 Aug 27, 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
Prev Previous commit
Next Next commit
Fix: typo in test causing integration test failure (#1556)
  • Loading branch information
jimit-j-shah authored Sep 4, 2024
commit 3640051cf45a350125758bbf6cc4f4daa1d47363
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public void before() throws Exception {
.setNamespace(options.getNamespace())
.build();
KEY3 =
Key.newBuilder(projectId, kind1, "key4", options.getDatabaseId())
Key.newBuilder(projectId, kind1, "key3", options.getDatabaseId())
.setNamespace(options.getNamespace())
.build();
KEY4 =
Expand Down Expand Up @@ -381,9 +381,6 @@ public void after() throws Exception {
@AfterClass
public static void teardown() throws Exception {
traceClient_v1.close();
CompletableResultCode completableResultCode =
openTelemetrySdk.getSdkTracerProvider().shutdown();
completableResultCode.join(TRACE_PROVIDER_SHUTDOWN_MILLIS, TimeUnit.MILLISECONDS);
}

// Generates a random hex string of length `numBytes`
Expand Down
Loading