Skip to content

Commit

Permalink
Reveal the cunning plan of where to place java tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Nov 9, 2018
1 parent b1fbb3b commit 37ba6ab
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .idea/libraries/opencensus.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions java/client/client.iml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<orderEntry type="library" name="netty" level="project" />
<orderEntry type="library" name="objenesis" level="project" />
<orderEntry type="library" name="okhttp" level="project" />
<orderEntry type="library" name="opencensus" level="project" />
<orderEntry type="library" name="opentracing" level="project" />
<orderEntry type="library" name="servlet-api" level="project" />
<orderEntry type="library" scope="TEST" name="slf4j" level="project" />
Expand Down
2 changes: 2 additions & 0 deletions java/server/server.iml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
<orderEntry type="library" scope="TEST" name="jetty-orig" level="project" />
<orderEntry type="library" name="junit" level="project" />
<orderEntry type="library" name="objenesis" level="project" />
<orderEntry type="library" name="okhttp" level="project" />
<orderEntry type="library" name="opencensus" level="project" />
<orderEntry type="library" name="opentracing" level="project" />
<orderEntry type="library" name="mockito-core" level="project" />
<orderEntry type="library" name="servlet-api" level="project" />
Expand Down
10 changes: 10 additions & 0 deletions third_party/java/grpc/BUCK
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
prebuilt_jar(
name = 'grpc-context',
maven_coords = 'io.grpc:grpc-context:jar:1.14.0',
binary_jar = 'grpc-context-1.14.0.jar',
source_jar = 'grpc-context-1.14.0-sources.jar',
visibility = [
'//third_party/java/opencensus:opencensus-api'
],
)

Binary file not shown.
Binary file added third_party/java/grpc/grpc-context-1.14.0.jar
Binary file not shown.
13 changes: 13 additions & 0 deletions third_party/java/opencensus/BUCK
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
prebuilt_jar(
name = 'opencensus-api',
maven_coords = 'io.opencensus:opencensus-api:jar:0.16.1',
binary_jar = 'opencensus-api-0.16.1.jar',
source_jar = 'opencensus-api-0.16.1-sources.jar',
deps = [
'//third_party/java/grpc:grpc-context'
],
visibility = [
'//java/client/src/org/openqa/selenium/remote/tracing/opencensus:',
],
)

Binary file not shown.
Binary file not shown.
4 changes: 3 additions & 1 deletion third_party/java/opentracing/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ prebuilt_jar(
visibility = [
'//third_party/java/contrib:opentracing-concurrent',
'//third_party/java/contrib:opentracing-okhttp3'
'//java/client/src/org/openqa/selenium/remote/tracing/opentracing:',
],
)

Expand All @@ -19,7 +20,8 @@ prebuilt_jar(
],
visibility = [
'//third_party/java/contrib:opentracing-concurrent',
'//third_party/java/contrib:opentracing-okhttp3'
'//third_party/java/contrib:opentracing-okhttp3',
'//java/client/src/org/openqa/selenium/remote/tracing/opentracing:',
],
)

0 comments on commit 37ba6ab

Please sign in to comment.