diff --git a/writer/README.md b/writer/README.md index c48d36f..2d9f98f 100644 --- a/writer/README.md +++ b/writer/README.md @@ -3,6 +3,10 @@ See the [godoc](https://godoc.org/github.com/signalfx/signalfx-go/writer) for information on what they are and how to use them. +> [!WARNING] +> `writer` package is **deprecated** and will reach End of Support on October 18, 2024. +> Use OpenTelemetry Go instead. + ## Compiling The buffer and writer are generated from a common template in the [`template`](./template) @@ -13,4 +17,3 @@ install the code generation tool with `go get github.com/mauricelam/genny`. Also, `span_[writer|buffer]_test.go` is automatically generated from `datapoint_[writer|buffer]_test.go` by the same `go generate` command, so be sure to make changes in the datapoint test module. - diff --git a/writer/internal.go b/writer/internal.go index 0ac491a..f36eb9b 100644 --- a/writer/internal.go +++ b/writer/internal.go @@ -23,6 +23,8 @@ // request at a time to ingest/gateway is probably not going to get enough // throughput, as usually the network and HTTP RTT is the bottleneck at that // point. +// +// Deprecated: Use OpenTelemetry Go instead. package writer //go:generate sh -c "cd template && ./gen.sh"