Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions opentelemetry-exporter-gcp-logging/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Add deprecation warning to README
- Update `opentelemetry-resourcedetector-gcp` dependency to `< 1.15`
- Add `force_flush` method to `CloudLoggingExporter` (#559)

## Version 1.13.0a0
Expand Down
8 changes: 8 additions & 0 deletions opentelemetry-exporter-gcp-logging/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ OpenTelemetry Google Cloud Logging Exporter
:target: https://google-cloud-opentelemetry.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

.. warning::

**This exporter is deprecated.**

Google Cloud supports native OpenTelemetry Protocol (OTLP) ingestion for Cloud Trace, Cloud Monitoring, and Cloud Logging via the `Telemetry API <https://docs.cloud.google.com/stackdriver/docs/reference/telemetry/overview>`_.

Please refer to the `Migration Guide <https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/blob/main/MIGRATION.md>`_ for detailed instructions on migrating your application to standard OpenTelemetry OTLP exporters.

This library provides support for exporting logs to Google Cloud
Logging.

Expand Down
2 changes: 1 addition & 1 deletion opentelemetry-exporter-gcp-logging/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ install_requires =
opentelemetry-sdk >= 1.39.0
opentelemetry-api >= 1.39.0

opentelemetry-resourcedetector-gcp >= 1.5.0dev0, == 1.*
opentelemetry-resourcedetector-gcp >= 1.5.0dev0, < 1.15
typing-extensions


Expand Down
3 changes: 3 additions & 0 deletions opentelemetry-exporter-gcp-monitoring/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Add deprecation warning to README
- Update `opentelemetry-resourcedetector-gcp` dependency to `< 1.15`

## Version 1.13.0a0

Released 2026-07-29
Expand Down
8 changes: 8 additions & 0 deletions opentelemetry-exporter-gcp-monitoring/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ OpenTelemetry Google Cloud Monitoring Exporter
:target: https://google-cloud-opentelemetry.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

.. warning::

**This exporter is deprecated.**

Google Cloud supports native OpenTelemetry Protocol (OTLP) ingestion for Cloud Trace, Cloud Monitoring, and Cloud Logging via the `Telemetry API <https://docs.cloud.google.com/stackdriver/docs/reference/telemetry/overview>`_.

Please refer to the `Migration Guide <https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/blob/main/MIGRATION.md>`_ for detailed instructions on migrating your application to standard OpenTelemetry OTLP exporters.

This library provides support for exporting metrics to Google Cloud
Monitoring.

Expand Down
2 changes: 1 addition & 1 deletion opentelemetry-exporter-gcp-monitoring/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ install_requires =
google-cloud-monitoring ~= 2.0
opentelemetry-api ~= 1.30
opentelemetry-sdk ~= 1.30
opentelemetry-resourcedetector-gcp >= 1.5.0dev0, == 1.*
opentelemetry-resourcedetector-gcp >= 1.5.0dev0, < 1.15
typing-extensions


Expand Down
3 changes: 3 additions & 0 deletions opentelemetry-exporter-gcp-trace/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Add deprecation warning to README
- Update `opentelemetry-resourcedetector-gcp` dependency to `< 1.15`

## Version 1.13.0

Released 2026-07-29
Expand Down
8 changes: 8 additions & 0 deletions opentelemetry-exporter-gcp-trace/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ OpenTelemetry Google Cloud Integration
:target: https://google-cloud-opentelemetry.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

.. warning::

**This exporter is deprecated.**

Google Cloud supports native OpenTelemetry Protocol (OTLP) ingestion for Cloud Trace, Cloud Monitoring, and Cloud Logging via the `Telemetry API <https://docs.cloud.google.com/stackdriver/docs/reference/telemetry/overview>`_.

Please refer to the `Migration Guide <https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/blob/main/MIGRATION.md>`_ for detailed instructions on migrating your application to standard OpenTelemetry OTLP exporters.

This library provides support for exporting traces to Google Cloud Trace.

To get started with instrumentation in Google Cloud, see `Generate traces and metrics with
Expand Down
2 changes: 1 addition & 1 deletion opentelemetry-exporter-gcp-trace/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ install_requires =
google-cloud-trace ~= 1.1
opentelemetry-api ~= 1.30
opentelemetry-sdk ~= 1.30
opentelemetry-resourcedetector-gcp >= 1.5.0dev0, == 1.*
opentelemetry-resourcedetector-gcp >= 1.5.0dev0, < 1.15
typing-extensions


Expand Down
Loading