-
Notifications
You must be signed in to change notification settings - Fork 812
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
all: Remove indirect dependency to github.com/prometheus/prometheus
#3312
Comments
When is the next tag/release for |
Al their repos are dead https://github.com/census-ecosystem/opencensus-go-exporter-stackdriver/ anyone know what’s happening? |
https://opentelemetry.io/blog/2023/sunsetting-opencensus/ It’s now in Otel basically |
are you going to port or bridge ? https://github.com/open-telemetry/opentelemetry-go/tree/main/bridge/opencensus Is the bridge. my 2 cents.. port . Don’t know if your insulated at an API level inside CDK |
I'm afraid that new tags won't be happening since OpenCensus is deprecated since OpenTelemetry released; just like @gedw99 wrote in the above messages. For all I care, I just want to remove the indirect dependency to Pardon that I don't really know how OpenCensus stackdriver library being used in this project, but I'm happy to help if there's another alternative to resolve this; as long as the alternative won't indirectly require large project such as Prometheus. |
The right answer here is to port to using OpenTelemetry. There is already an issue open for that (#2877) so I'm going to close this one; I don't think pointing to a |
Is your feature request related to a problem? Please describe.
Currently, this library requires
contrib.go.opencensus.io/exporter/stackdriver
in its go.mod file,however, the version used here (v0.13.14) imports
github.com/prometheus/prometheus
, while in reality it does not need to import the whole prometheus, just a little copy is OK which done by me via census-ecosystem/opencensus-go-exporter-stackdriver#316I think it's beneficial if this library upgrade its usage to the
master
branch ofcontrib.go.opencensus.io/exporter/stackdriver
.Describe the solution you'd like
Upgrade
contrib.go.opencensus.io/exporter/stackdriver
tomaster
branch, since that library is now deprecated and no new tag was created since the above MR was merged.Describe alternatives you've considered
Replace stackdriver exporter to similar library since OpenCensus is now deprecated anyway.
Additional context
https://github.com/google/go-cloud/blob/master/go.mod#L28C10-L28C10
The text was updated successfully, but these errors were encountered: