Skip to content

Commit 66d21dc

Browse files
authored
doc(trace): Cloud Trace, not Stackdriver Trace (#11598)
1 parent f5c2fd0 commit 66d21dc

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ See each library's `README.md` file for more information about:
362362
- [Cloud TPU API](google/cloud/tpu/README.md)
363363
[\[quickstart\]](google/cloud/tpu/quickstart/README.md)
364364
[\[reference\]](https://googleapis.dev/cpp/google-cloud-tpu/latest)
365-
- [Stackdriver Trace API](google/cloud/trace/README.md)
365+
- [Cloud Trace API](google/cloud/trace/README.md)
366366
[\[quickstart\]](google/cloud/trace/quickstart/README.md)
367367
[\[reference\]](https://googleapis.dev/cpp/google-cloud-trace/latest)
368368
- [Cloud Translation API](google/cloud/translate/README.md)

google/cloud/trace/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
# ~~~
1616

1717
include(GoogleapisConfig)
18-
set(DOXYGEN_PROJECT_NAME "Stackdriver Trace API C++ Client")
19-
set(DOXYGEN_PROJECT_BRIEF "A C++ Client Library for the Stackdriver Trace API")
18+
set(DOXYGEN_PROJECT_NAME "Cloud Trace API C++ Client")
19+
set(DOXYGEN_PROJECT_BRIEF "A C++ Client Library for the Cloud Trace API")
2020
set(DOXYGEN_PROJECT_NUMBER "${PROJECT_VERSION}")
2121
set(DOXYGEN_EXCLUDE_SYMBOLS "internal")
2222
set(DOXYGEN_EXAMPLE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/quickstart")
@@ -169,8 +169,8 @@ google_cloud_cpp_install_headers("google_cloud_cpp_trace_mocks"
169169

170170
google_cloud_cpp_add_pkgconfig(
171171
trace
172-
"The Stackdriver Trace API C++ Client Library"
173-
"Provides C++ APIs to use the Stackdriver Trace API."
172+
"The Cloud Trace API C++ Client Library"
173+
"Provides C++ APIs to use the Cloud Trace API."
174174
"google_cloud_cpp_grpc_utils"
175175
" google_cloud_cpp_common"
176176
" google_cloud_cpp_trace_protos")

google/cloud/trace/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Stackdriver Trace API C++ Client Library
1+
# Cloud Trace API C++ Client Library
22

33
This directory contains an idiomatic C++ client library for the
4-
[Stackdriver Trace API][cloud-service-docs], a service to send application trace
5-
data to Stackdriver Trace for viewing. This library is used to interact with the
4+
[Cloud Trace API][cloud-service-docs], a service to send application trace
5+
data to Cloud Trace for viewing. This library is used to interact with the
66
Trace API directly. If you are looking to instrument your application for
7-
Stackdriver Trace, we recommend using [OpenTelemetry](https://opentelemetry.io)
7+
Cloud Trace, we recommend using [OpenTelemetry](https://opentelemetry.io)
88
or a similar framework.
99

1010
While this library is **GA**, please note that the Google Cloud C++ client libraries do **not** follow
@@ -79,7 +79,7 @@ int main(int argc, char* argv[]) try {
7979
8080
## More Information
8181
82-
- Official documentation about the [Stackdriver Trace API][cloud-service-docs] service
82+
- Official documentation about the [Cloud Trace API][cloud-service-docs] service
8383
- [Reference doxygen documentation][doxygen-link] for each release of this
8484
client library
8585
- Detailed header comments in our [public `.h`][source-link] files

google/cloud/trace/doc/main.dox

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
22

3-
@mainpage Stackdriver Trace API C++ Client Library
3+
@mainpage Cloud Trace API C++ Client Library
44

5-
An idiomatic C++ client library for the [Stackdriver Trace API][cloud-service-docs],
6-
a service to send application trace data to Stackdriver Trace for viewing. This
5+
An idiomatic C++ client library for the [Cloud Trace API][cloud-service-docs],
6+
a service to send application trace data to Cloud Trace for viewing. This
77
library is used to interact with the Trace API directly. If you are looking to
8-
instrument your application for Stackdriver Trace, we recommend using
8+
instrument your application for Cloud Trace, we recommend using
99
[OpenTelemetry](https://opentelemetry.io) or a similar framework.
1010

1111
While this library is **GA**, please note Google Cloud C++ client libraries do **not** follow [Semantic Versioning](https://semver.org/).
@@ -16,7 +16,7 @@ While this library is **GA**, please note Google Cloud C++ client libraries do *
1616

1717
The following shows the code that you'll run in the
1818
`google/cloud/trace/quickstart/` directory,
19-
which should give you a taste of the Stackdriver Trace API C++ client library API.
19+
which should give you a taste of the Cloud Trace API C++ client library API.
2020

2121
@snippet quickstart.cc all
2222

google/cloud/trace/doc/options.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
@defgroup google-cloud-trace-options Stackdriver Trace API Configuration Options
2+
@defgroup google-cloud-trace-options Cloud Trace API Configuration Options
33

44
This library uses the same mechanism (`google::cloud::Options`) and the common
55
[options](@ref options) as all other C++ client libraries for its configuration.

google/cloud/trace/quickstart/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# License for the specific language governing permissions and limitations under
1313
# the License.
1414

15-
# This file shows how to use the Stackdriver Trace API C++ client library from a
15+
# This file shows how to use the Cloud Trace API C++ client library from a
1616
# larger CMake project.
1717

1818
cmake_minimum_required(VERSION 3.10...3.24)

google/cloud/trace/quickstart/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# This is a minimal Makefile to show how to use the Stackdriver Trace API C++ client
15+
# This is a minimal Makefile to show how to use the Cloud Trace API C++ client
1616
# for developers who use make(1) as their build system.
1717

1818
# The CXX, CXXFLAGS and CXXLD variables are hard-coded. These values work for
@@ -24,7 +24,7 @@ BIN=.
2424

2525
all: $(BIN)/quickstart
2626

27-
# Configuration variables to compile and link against the Stackdriver Trace API C++
27+
# Configuration variables to compile and link against the Cloud Trace API C++
2828
# client library.
2929
CLIENT_MODULE := google_cloud_cpp_trace
3030
CLIENT_CXXFLAGS := $(shell pkg-config $(CLIENT_MODULE) --cflags)

google/cloud/trace/quickstart/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# HOWTO: using the Stackdriver Trace API C++ client in your project
1+
# HOWTO: using the Cloud Trace API C++ client in your project
22

3-
This directory contains small examples showing how to use the Stackdriver Trace API C++
3+
This directory contains small examples showing how to use the Cloud Trace API C++
44
client library in your own project. These instructions assume that you have
55
some experience as a C++ developer and that you have a working C++ toolchain
66
(compiler, linker, etc.) installed on your platform.
@@ -29,7 +29,7 @@ steps in detail.
2929

3030
## Configuring authentication for the C++ Client Library
3131

32-
Like most Google Cloud Platform (GCP) services, Stackdriver Trace API requires that
32+
Like most Google Cloud Platform (GCP) services, Cloud Trace API requires that
3333
your application authenticates with the service before accessing any data. If
3434
you are not familiar with GCP authentication please take this opportunity to
3535
review the [Authentication Overview][authentication-quickstart]. This library

google/cloud/trace/quickstart/WORKSPACE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# A minimal WORKSPACE file showing how to use the Stackdriver Trace API
15+
# A minimal WORKSPACE file showing how to use the Cloud Trace API
1616
# C++ client library in Bazel-based projects.
1717
workspace(name = "qs")
1818

0 commit comments

Comments
 (0)