File tree 3 files changed +5
-6
lines changed
exporters/trace/src/main/java/com/google/cloud/opentelemetry/trace
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 42
42
import java .util .Map ;
43
43
44
44
/**
45
- * This class encapsulates internal implementation details for exporting spans for applications
46
- * running on Google cloud environment. This class should not be exposed to the end user for direct
47
- * usage.
45
+ * This class encapsulates internal implementation details for exporting spans to Google Cloud
46
+ * Platform. This class should not be exposed to the end user for direct usage.
48
47
*/
49
48
class InternalTraceExporter implements SpanExporter {
50
49
Original file line number Diff line number Diff line change @@ -65,10 +65,10 @@ public abstract class TraceConfiguration {
65
65
* Package private method to get a {@link Supplier} for the project ID. The value supplied depends
66
66
* on the user-provided value via {@link TraceConfiguration.Builder#setProjectId(String)}. If user
67
67
* does not provide a project ID via {@link TraceConfiguration.Builder#setProjectId(String)}, this
68
- * supplier returns a {@link Supplier} that supplies the default Project ID.
68
+ * method returns a {@link Supplier} that supplies the default Project ID.
69
69
*
70
70
* @see ServiceOptions#getDefaultProjectId()
71
- * @return a {@link Supplier} for the project ID to be used.
71
+ * @return a {@link Supplier} for the GCP project ID to be used.
72
72
*/
73
73
abstract Supplier <String > getProjectIdSupplier ();
74
74
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ public static SpanExporter createWithDefaultConfiguration() {
76
76
* generate the actual {@link TraceExporter}.
77
77
*
78
78
* @param configuration The {@link TraceConfiguration} object that determines the user preferences
79
- * for Trace .
79
+ * for trace .
80
80
* @return An instance of {@link TraceExporter} as a {@link SpanExporter} object
81
81
*/
82
82
public static SpanExporter createWithConfiguration (TraceConfiguration configuration ) {
You can’t perform that action at this time.
0 commit comments