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(logging): OpenTelemetry trace/span ID integration for Java logging library #1596

Merged
merged 32 commits into from
Jun 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
da8bd86
Add Otel support
Mar 21, 2024
ab65496
Use overloading setCurrentContext function
Mar 26, 2024
246c1f5
Add logging handler test for traceEnhancer
Apr 25, 2024
107144b
"Add tracehandler test"
Apr 30, 2024
b4d3ee7
Add otel unit tests
Apr 30, 2024
4808c99
fix otel context unit test
Apr 30, 2024
8416b66
Remove comments
Apr 30, 2024
7ca6f19
fix test failures and dependency conflict
Apr 30, 2024
72aa518
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Apr 30, 2024
db7f163
Merge branch 'main' into cindy/span-fix-0320
cindy-peng May 2, 2024
e67c907
Add open-telemetry context dependency
May 2, 2024
42a49e1
Resolve otel context dependency
May 3, 2024
e4c3f06
Make otel-context as test dependency
May 3, 2024
9f09a85
make otel-context as compile dependency
May 3, 2024
cefcd73
Add span context import
May 4, 2024
c600f0d
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] May 4, 2024
1d48166
Add test and compile dependency
May 4, 2024
0e61c7d
Use transitive dependency
May 4, 2024
9cf24ab
Ignore otel context non-test warning
May 4, 2024
e59fd6b
comment otel-context
May 5, 2024
4ff6738
Add otel current context detection
May 5, 2024
d560806
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] May 5, 2024
c8e4eca
Add system tests
May 6, 2024
ae60311
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] May 6, 2024
43d69d0
Remove current priority null check
May 7, 2024
2d8345e
Add context handler unit tests
May 7, 2024
a8bba3c
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] May 7, 2024
e035733
Merge branch 'main' into cindy/span-fix-0320
cindy-peng May 29, 2024
4270847
Add otel bom to pom
Jun 3, 2024
e4b8de1
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jun 3, 2024
fe58cd8
Remove unused dependency
Jun 3, 2024
ba86d25
Remove comment
Jun 3, 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
Remove unused dependency
  • Loading branch information
cindy-peng committed Jun 3, 2024
commit fe58cd8614c09217aa27c2fb97f3be4d102d9dbe
15 changes: 0 additions & 15 deletions google-cloud-logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -164,21 +164,6 @@
<!-- </dependency>-->
<!-- END OpenTelemetry -->
<!-- OpenTelemetry -->
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-semconv</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-sdk-common</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.cloud.opentelemetry</groupId>
<artifactId>exporter-trace</artifactId>
<scope>test</scope>
</dependency>
<!-- END OpenTelemetry -->
<!-- Need testing utility classes for generated gRPC clients tests -->
<dependency>
Expand Down
Loading