xref: /aosp_15_r20/external/google-cloud-java/java-trace/README.md (revision 55e87721aa1bc457b326496a7ca40f3ea1a63287)
1*55e87721SMatt Gilbride# Google Stackdriver Trace Client for Java
2*55e87721SMatt Gilbride
3*55e87721SMatt GilbrideJava idiomatic client for [Stackdriver Trace][product-docs].
4*55e87721SMatt Gilbride
5*55e87721SMatt Gilbride[![Maven][maven-version-image]][maven-version-link]
6*55e87721SMatt Gilbride![Stability][stability-image]
7*55e87721SMatt Gilbride
8*55e87721SMatt Gilbride- [Product Documentation][product-docs]
9*55e87721SMatt Gilbride- [Client Library Documentation][javadocs]
10*55e87721SMatt Gilbride
11*55e87721SMatt Gilbride
12*55e87721SMatt Gilbride## Quickstart
13*55e87721SMatt Gilbride
14*55e87721SMatt Gilbride
15*55e87721SMatt GilbrideIf you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
16*55e87721SMatt Gilbride
17*55e87721SMatt Gilbride```xml
18*55e87721SMatt Gilbride<dependencyManagement>
19*55e87721SMatt Gilbride  <dependencies>
20*55e87721SMatt Gilbride    <dependency>
21*55e87721SMatt Gilbride      <groupId>com.google.cloud</groupId>
22*55e87721SMatt Gilbride      <artifactId>libraries-bom</artifactId>
23*55e87721SMatt Gilbride      <version>26.12.0</version>
24*55e87721SMatt Gilbride      <type>pom</type>
25*55e87721SMatt Gilbride      <scope>import</scope>
26*55e87721SMatt Gilbride    </dependency>
27*55e87721SMatt Gilbride  </dependencies>
28*55e87721SMatt Gilbride</dependencyManagement>
29*55e87721SMatt Gilbride
30*55e87721SMatt Gilbride<dependencies>
31*55e87721SMatt Gilbride  <dependency>
32*55e87721SMatt Gilbride    <groupId>com.google.cloud</groupId>
33*55e87721SMatt Gilbride    <artifactId>google-cloud-trace</artifactId>
34*55e87721SMatt Gilbride  </dependency>
35*55e87721SMatt Gilbride```
36*55e87721SMatt Gilbride
37*55e87721SMatt GilbrideIf you are using Maven without the BOM, add this to your dependencies:
38*55e87721SMatt Gilbride
39*55e87721SMatt Gilbride<!-- {x-version-update-start:google-cloud-trace:released} -->
40*55e87721SMatt Gilbride
41*55e87721SMatt Gilbride```xml
42*55e87721SMatt Gilbride<dependency>
43*55e87721SMatt Gilbride  <groupId>com.google.cloud</groupId>
44*55e87721SMatt Gilbride  <artifactId>google-cloud-trace</artifactId>
45*55e87721SMatt Gilbride  <version>2.17.0</version>
46*55e87721SMatt Gilbride</dependency>
47*55e87721SMatt Gilbride```
48*55e87721SMatt Gilbride
49*55e87721SMatt GilbrideIf you are using Gradle without BOM, add this to your dependencies:
50*55e87721SMatt Gilbride
51*55e87721SMatt Gilbride```Groovy
52*55e87721SMatt Gilbrideimplementation 'com.google.cloud:google-cloud-trace:2.17.0'
53*55e87721SMatt Gilbride```
54*55e87721SMatt Gilbride
55*55e87721SMatt GilbrideIf you are using SBT, add this to your dependencies:
56*55e87721SMatt Gilbride
57*55e87721SMatt Gilbride```Scala
58*55e87721SMatt GilbridelibraryDependencies += "com.google.cloud" % "google-cloud-trace" % "2.17.0"
59*55e87721SMatt Gilbride```
60*55e87721SMatt Gilbride<!-- {x-version-update-end} -->
61*55e87721SMatt Gilbride
62*55e87721SMatt Gilbride## Authentication
63*55e87721SMatt Gilbride
64*55e87721SMatt GilbrideSee the [Authentication][authentication] section in the base directory's README.
65*55e87721SMatt Gilbride
66*55e87721SMatt Gilbride## Authorization
67*55e87721SMatt Gilbride
68*55e87721SMatt GilbrideThe client application making API calls must be granted [authorization scopes][auth-scopes] required for the desired Stackdriver Trace APIs, and the authenticated principal must have the [IAM role(s)][predefined-iam-roles] required to access GCP resources using the Stackdriver Trace API calls.
69*55e87721SMatt Gilbride
70*55e87721SMatt Gilbride## Getting Started
71*55e87721SMatt Gilbride
72*55e87721SMatt Gilbride### Prerequisites
73*55e87721SMatt Gilbride
74*55e87721SMatt GilbrideYou will need a [Google Cloud Platform Console][developer-console] project with the Stackdriver Trace [API enabled][enable-api].
75*55e87721SMatt Gilbride
76*55e87721SMatt Gilbride[Follow these instructions][create-project] to get your project set up. You will also need to set up the local development environment by
77*55e87721SMatt Gilbride[installing the Google Cloud Command Line Interface][cloud-cli] and running the following commands in command line:
78*55e87721SMatt Gilbride`gcloud auth login` and `gcloud config set project [YOUR PROJECT ID]`.
79*55e87721SMatt Gilbride
80*55e87721SMatt Gilbride### Installation and setup
81*55e87721SMatt Gilbride
82*55e87721SMatt GilbrideYou'll need to obtain the `google-cloud-trace` library.  See the [Quickstart](#quickstart) section
83*55e87721SMatt Gilbrideto add `google-cloud-trace` as a dependency in your code.
84*55e87721SMatt Gilbride
85*55e87721SMatt Gilbride## About Stackdriver Trace
86*55e87721SMatt Gilbride
87*55e87721SMatt Gilbride
88*55e87721SMatt Gilbride[Stackdriver Trace][product-docs] is a distributed tracing system that collects latency data from your applications and displays it in the Google Cloud Platform Console. You can track how requests propagate through your application and receive detailed near real-time performance insights.
89*55e87721SMatt Gilbride
90*55e87721SMatt GilbrideSee the [Stackdriver Trace client library docs][javadocs] to learn how to
91*55e87721SMatt Gilbrideuse this Stackdriver Trace Client Library.
92*55e87721SMatt Gilbride
93*55e87721SMatt Gilbride
94*55e87721SMatt Gilbride
95*55e87721SMatt Gilbride
96*55e87721SMatt Gilbride
97*55e87721SMatt Gilbride
98*55e87721SMatt Gilbride## Troubleshooting
99*55e87721SMatt Gilbride
100*55e87721SMatt GilbrideTo get help, follow the instructions in the [shared Troubleshooting document][troubleshooting].
101*55e87721SMatt Gilbride
102*55e87721SMatt Gilbride## Transport
103*55e87721SMatt Gilbride
104*55e87721SMatt GilbrideStackdriver Trace uses gRPC for the transport layer.
105*55e87721SMatt Gilbride
106*55e87721SMatt Gilbride## Supported Java Versions
107*55e87721SMatt Gilbride
108*55e87721SMatt GilbrideJava 8 or above is required for using this client.
109*55e87721SMatt Gilbride
110*55e87721SMatt GilbrideGoogle's Java client libraries,
111*55e87721SMatt Gilbride[Google Cloud Client Libraries][cloudlibs]
112*55e87721SMatt Gilbrideand
113*55e87721SMatt Gilbride[Google Cloud API Libraries][apilibs],
114*55e87721SMatt Gilbridefollow the
115*55e87721SMatt Gilbride[Oracle Java SE support roadmap][oracle]
116*55e87721SMatt Gilbride(see the Oracle Java SE Product Releases section).
117*55e87721SMatt Gilbride
118*55e87721SMatt Gilbride### For new development
119*55e87721SMatt Gilbride
120*55e87721SMatt GilbrideIn general, new feature development occurs with support for the lowest Java
121*55e87721SMatt GilbrideLTS version covered by  Oracle's Premier Support (which typically lasts 5 years
122*55e87721SMatt Gilbridefrom initial General Availability). If the minimum required JVM for a given
123*55e87721SMatt Gilbridelibrary is changed, it is accompanied by a [semver][semver] major release.
124*55e87721SMatt Gilbride
125*55e87721SMatt GilbrideJava 11 and (in September 2021) Java 17 are the best choices for new
126*55e87721SMatt Gilbridedevelopment.
127*55e87721SMatt Gilbride
128*55e87721SMatt Gilbride### Keeping production systems current
129*55e87721SMatt Gilbride
130*55e87721SMatt GilbrideGoogle tests its client libraries with all current LTS versions covered by
131*55e87721SMatt GilbrideOracle's Extended Support (which typically lasts 8 years from initial
132*55e87721SMatt GilbrideGeneral Availability).
133*55e87721SMatt Gilbride
134*55e87721SMatt Gilbride#### Legacy support
135*55e87721SMatt Gilbride
136*55e87721SMatt GilbrideGoogle's client libraries support legacy versions of Java runtimes with long
137*55e87721SMatt Gilbrideterm stable libraries that don't receive feature updates on a best efforts basis
138*55e87721SMatt Gilbrideas it may not be possible to backport all patches.
139*55e87721SMatt Gilbride
140*55e87721SMatt GilbrideGoogle provides updates on a best efforts basis to apps that continue to use
141*55e87721SMatt GilbrideJava 7, though apps might need to upgrade to current versions of the library
142*55e87721SMatt Gilbridethat supports their JVM.
143*55e87721SMatt Gilbride
144*55e87721SMatt Gilbride#### Where to find specific information
145*55e87721SMatt Gilbride
146*55e87721SMatt GilbrideThe latest versions and the supported Java versions are identified on
147*55e87721SMatt Gilbridethe individual GitHub repository `github.com/GoogleAPIs/java-SERVICENAME`
148*55e87721SMatt Gilbrideand on [google-cloud-java][g-c-j].
149*55e87721SMatt Gilbride
150*55e87721SMatt Gilbride## Versioning
151*55e87721SMatt Gilbride
152*55e87721SMatt Gilbride
153*55e87721SMatt GilbrideThis library follows [Semantic Versioning](http://semver.org/).
154*55e87721SMatt Gilbride
155*55e87721SMatt Gilbride
156*55e87721SMatt Gilbride
157*55e87721SMatt Gilbride## Contributing
158*55e87721SMatt Gilbride
159*55e87721SMatt Gilbride
160*55e87721SMatt GilbrideContributions to this library are always welcome and highly encouraged.
161*55e87721SMatt Gilbride
162*55e87721SMatt GilbrideSee [CONTRIBUTING][contributing] for more information how to get started.
163*55e87721SMatt Gilbride
164*55e87721SMatt GilbridePlease note that this project is released with a Contributor Code of Conduct. By participating in
165*55e87721SMatt Gilbridethis project you agree to abide by its terms. See [Code of Conduct][code-of-conduct] for more
166*55e87721SMatt Gilbrideinformation.
167*55e87721SMatt Gilbride
168*55e87721SMatt Gilbride
169*55e87721SMatt Gilbride## License
170*55e87721SMatt Gilbride
171*55e87721SMatt GilbrideApache 2.0 - See [LICENSE][license] for more information.
172*55e87721SMatt Gilbride
173*55e87721SMatt Gilbride## CI Status
174*55e87721SMatt Gilbride
175*55e87721SMatt GilbrideJava Version | Status
176*55e87721SMatt Gilbride------------ | ------
177*55e87721SMatt GilbrideJava 8 | [![Kokoro CI][kokoro-badge-image-2]][kokoro-badge-link-2]
178*55e87721SMatt GilbrideJava 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3]
179*55e87721SMatt GilbrideJava 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4]
180*55e87721SMatt GilbrideJava 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5]
181*55e87721SMatt Gilbride
182*55e87721SMatt GilbrideJava is a registered trademark of Oracle and/or its affiliates.
183*55e87721SMatt Gilbride
184*55e87721SMatt Gilbride[product-docs]: https://cloud.google.com/trace/docs/
185*55e87721SMatt Gilbride[javadocs]: https://cloud.google.com/java/docs/reference/google-cloud-trace/latest/overview
186*55e87721SMatt Gilbride[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.svg
187*55e87721SMatt Gilbride[kokoro-badge-link-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java7.html
188*55e87721SMatt Gilbride[kokoro-badge-image-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.svg
189*55e87721SMatt Gilbride[kokoro-badge-link-2]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8.html
190*55e87721SMatt Gilbride[kokoro-badge-image-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.svg
191*55e87721SMatt Gilbride[kokoro-badge-link-3]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-osx.html
192*55e87721SMatt Gilbride[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.svg
193*55e87721SMatt Gilbride[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java8-win.html
194*55e87721SMatt Gilbride[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.svg
195*55e87721SMatt Gilbride[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html
196*55e87721SMatt Gilbride[stability-image]: https://img.shields.io/badge/stability-stable-green
197*55e87721SMatt Gilbride[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-trace.svg
198*55e87721SMatt Gilbride[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-trace/2.14.0
199*55e87721SMatt Gilbride[authentication]: https://github.com/googleapis/google-cloud-java#authentication
200*55e87721SMatt Gilbride[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
201*55e87721SMatt Gilbride[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
202*55e87721SMatt Gilbride[iam-policy]: https://cloud.google.com/iam/docs/overview#cloud-iam-policy
203*55e87721SMatt Gilbride[developer-console]: https://console.developers.google.com/
204*55e87721SMatt Gilbride[create-project]: https://cloud.google.com/resource-manager/docs/creating-managing-projects
205*55e87721SMatt Gilbride[cloud-cli]: https://cloud.google.com/cli
206*55e87721SMatt Gilbride[troubleshooting]: https://github.com/googleapis/google-cloud-java/blob/main/TROUBLESHOOTING.md
207*55e87721SMatt Gilbride[contributing]: https://github.com/googleapis/google-cloud-java/blob/main/CONTRIBUTING.md
208*55e87721SMatt Gilbride[code-of-conduct]: https://github.com/googleapis/google-cloud-java/blob/main/CODE_OF_CONDUCT.md#contributor-code-of-conduct
209*55e87721SMatt Gilbride[license]: https://github.com/googleapis/google-cloud-java/blob/main/LICENSE
210*55e87721SMatt Gilbride
211*55e87721SMatt Gilbride[enable-api]: https://console.cloud.google.com/flows/enableapi?apiid=cloudtrace.googleapis.com
212*55e87721SMatt Gilbride[libraries-bom]: https://github.com/GoogleCloudPlatform/cloud-opensource-java/wiki/The-Google-Cloud-Platform-Libraries-BOM
213*55e87721SMatt Gilbride[shell_img]: https://gstatic.com/cloudssh/images/open-btn.png
214*55e87721SMatt Gilbride
215*55e87721SMatt Gilbride[semver]: https://semver.org/
216*55e87721SMatt Gilbride[cloudlibs]: https://cloud.google.com/apis/docs/client-libraries-explained
217*55e87721SMatt Gilbride[apilibs]: https://cloud.google.com/apis/docs/client-libraries-explained#google_api_client_libraries
218*55e87721SMatt Gilbride[oracle]: https://www.oracle.com/java/technologies/java-se-support-roadmap.html
219*55e87721SMatt Gilbride[g-c-j]: http://github.com/googleapis/google-cloud-java
220