You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some first-party Google Cloud metrics, there can be a need to export to publicy writable metrics directly. This can cause issues when attaching instrumentation scope info as labels, as this will be rejected by the createTimeSeries call if mismatched labels are found. There is currently no way to disable this on a config-based level, which means writing to 1P metrics is currently infeasible without a custom code change.
Example error:
WARNING: Exporter threw an Exception
com.google.api.gax.rpc.InvalidArgumentException: io.grpc.StatusRuntimeException:
INVALID_ARGUMENT: One or more TimeSeries could not be written: Unrecognized metric
labels: [instrumentation_source], [instrumentation_version];
This is a feature on some other exporters as well:
For some first-party Google Cloud metrics, there can be a need to export to publicy writable metrics directly. This can cause issues when attaching instrumentation scope info as labels, as this will be rejected by the
createTimeSeries
call if mismatched labels are found. There is currently no way to disable this on a config-based level, which means writing to 1P metrics is currently infeasible without a custom code change.Example error:
This is a feature on some other exporters as well:
https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/blob/648a71ca81a051f32a3accc68c62f60c75469822/exporter/collector/config.go#L127
The text was updated successfully, but these errors were encountered: