Skip to content
This repository was archived by the owner on Dec 23, 2023. It is now read-only.

Commit 5e60f5a

Browse files
authored
Remove warning about Stackdriver log correlation being experimental. (#1533)
opencensus-contrib-log-correlation-stackdriver is consistent with the log correlation spec, so it no longer needs to be labeled experimental.
1 parent f049c18 commit 5e60f5a

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@
1010
- Add an util artifact `opencensus-contrib-dropwizard` to translate Dropwizard metrics to
1111
OpenCensus.
1212
- Add Gauges (`DoubleGauge`, `LongGauge`, `DerivedDoubleGauge`, `DerivedLongGauge`) APIs.
13-
- Update `opencensus-contrib-log-correlation-log4j2` to match the
14-
[OpenCensus log correlation spec](https://github.com/census-instrumentation/opencensus-specs/blob/master/trace/LogCorrelation.md).
13+
- Update `opencensus-contrib-log-correlation-log4j2` and
14+
`opencensus-contrib-log-correlation-stackdriver` to match the
15+
[OpenCensus log correlation spec](https://github.com/census-instrumentation/opencensus-specs/blob/master/trace/LogCorrelation.md)
16+
and remove all `ExperimentalApi` annotations.
1517
- The histogram bucket boundaries (`BucketBoundaries`) and values (`Count` and `Sum`) are no longer
1618
supported for negative values. The Record API drops the negative `value` and logs the warning.
1719
This could be a breaking change if you are recording negative value for any `measure`.

contrib/log_correlation/stackdriver/README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
# OpenCensus Stackdriver Log Correlation
22

3-
This subproject is currently experimental, so it may be redesigned or removed in the future. It
4-
will remain experimental until we have a specification for a log correlation feature in
5-
[opencensus-specs](https://github.com/census-instrumentation/opencensus-specs/)
6-
(issue [#123](https://github.com/census-instrumentation/opencensus-specs/issues/123)).
7-
83
The `opencensus-contrib-log-correlation-stackdriver` artifact provides a
94
[Stackdriver Logging](https://cloud.google.com/logging/)
105
[`LoggingEnhancer`](http://googlecloudplatform.github.io/google-cloud-java/google-cloud-clients/apidocs/com/google/cloud/logging/LoggingEnhancer.html)

contrib/log_correlation/stackdriver/src/main/java/io/opencensus/contrib/logcorrelation/stackdriver/OpenCensusTraceLoggingEnhancer.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import com.google.cloud.ServiceOptions;
2020
import com.google.cloud.logging.LogEntry;
2121
import com.google.cloud.logging.LoggingEnhancer;
22-
import io.opencensus.common.ExperimentalApi;
2322
import io.opencensus.trace.Span;
2423
import io.opencensus.trace.SpanContext;
2524
import io.opencensus.trace.TraceId;
@@ -30,11 +29,8 @@
3029
/**
3130
* Stackdriver {@link LoggingEnhancer} that adds OpenCensus tracing data to log entries.
3231
*
33-
* <p>This feature is currently experimental.
34-
*
3532
* @since 0.15
3633
*/
37-
@ExperimentalApi
3834
public final class OpenCensusTraceLoggingEnhancer implements LoggingEnhancer {
3935

4036
/**

0 commit comments

Comments
 (0)