From beef35e89588556f49845611264ced0e5728633c Mon Sep 17 00:00:00 2001 From: Joshua MacDonald Date: Tue, 9 Apr 2024 01:31:53 -0700 Subject: [PATCH 01/21] API usability improvements in sampling package (#31940) **Description:** Several usability issues were ironed out while working on #31894. This PR is the pkg/sampling changes from that PR. Highlights: - Adds `NeverSampleThreshold` value, which is the exclusive upper-boundary of threshold values. This makes negative sampling decisions easier to manage, as shown in #31894. - Adds `AllProbabilitiesRandomness` value, which is the inclusive upper-boundary of Randomness values. This makes error handling more natural as shown in #31894. All thresholds except `NeverSampleThreshold` will be sampled at `AllProbabilitiesRandomness`. - Adds `UnsignedToThreshold` constructor for explicit threshold construction. This is useful in the case of #31894 because it constructs a 14-bit threshold value. - Adds `UnsignedToRandomness` constructor for explicit randomness construction. This is useful in the case of #31894 because it constructs randomness values from log records w/o use of TraceState. - Removes a parameter from `UpdateTValueWithSampling` to avoid the potential for an inconsistent update through mis-use (as identified in #31894, there is less optimization potential because sampling.threshold modifies thresholds in all modes). - Eliminates the `ErrPrecisionUnderflow` error condition and automatically corrects the problem by extending precision near 0.0 and 1.0 where there are obligatory leading `f` or `0` digits. **Link to tracking Issue:** #31918 **Testing:** New tests added for coverage. **Documentation:** New comments to explain. --------- Co-authored-by: Sean Marciniak <30928402+MovieStoreGuy@users.noreply.github.com> --- .chloggen/sampling-improvements.yaml | 27 ++++++++ pkg/sampling/doc.go | 93 +++++++++++++++------------- pkg/sampling/oteltracestate.go | 47 +++++++++----- pkg/sampling/oteltracestate_test.go | 6 +- pkg/sampling/probability.go | 84 +++++++++++-------------- pkg/sampling/probability_test.go | 7 ++- pkg/sampling/randomness.go | 27 ++++++++ pkg/sampling/randomness_test.go | 13 ++++ pkg/sampling/threshold.go | 48 ++++++++++++-- pkg/sampling/threshold_test.go | 19 ++++++ pkg/sampling/w3ctracestate_test.go | 2 +- 11 files changed, 258 insertions(+), 115 deletions(-) create mode 100644 .chloggen/sampling-improvements.yaml diff --git a/.chloggen/sampling-improvements.yaml b/.chloggen/sampling-improvements.yaml new file mode 100644 index 000000000000..e28b5eaa88f1 --- /dev/null +++ b/.chloggen/sampling-improvements.yaml @@ -0,0 +1,27 @@ +# Use this changelog template to create an entry for release notes. + +# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' +change_type: enhancement + +# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver) +component: pkg/sampling + +# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). +note: Usability improvements in the sampling API. + +# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists. +issues: [31918] + +# (Optional) One or more lines of additional information to render under the primary note. +# These lines will be padded with 2 spaces and then inserted directly into the document. +# Use pipe (|) for multiline entries. +subtext: + +# If your change doesn't affect end users or the exported elements of any package, +# you should instead start your pull request title with [chore] or use the "Skip Changelog" label. +# Optional: The change log or logs in which this entry should be included. +# e.g. '[user]' or '[user, api]' +# Include 'user' if the change is relevant to end users. +# Include 'api' if there is a change to a library API. +# Default: '[user]' +change_logs: [api] diff --git a/pkg/sampling/doc.go b/pkg/sampling/doc.go index 4b23f1fb85ba..0c5b1052bbc5 100644 --- a/pkg/sampling/doc.go +++ b/pkg/sampling/doc.go @@ -37,53 +37,58 @@ // conditioned on how much sampling has already taken place, use the // following pseudocode. // -// func Setup() { -// // Get a fixed probability value from the configuration, in -// // the range (0, 1]. -// probability := *FLAG_probability +// func Setup() { +// // Get a fixed probability value from the configuration, in +// // the range (0, 1]. +// probability := *FLAG_probability // -// // Calculate the sampling threshold from probability using 3 -// // hex digits of precision. -// fixedThreshold, err = ProbabilityToThresholdWithPrecision(probability, 3) -// if err != nil { -// // error case: Probability is not valid. -// } -// } +// // Calculate the sampling threshold from probability using 3 +// // hex digits of precision. +// fixedThreshold, err = ProbabilityToThresholdWithPrecision(probability, 3) +// if err != nil { +// // error case: Probability is not valid. +// } +// } // -// func MakeDecision(tracestate string, tid TraceID) bool { -// // Parse the incoming tracestate -// ts, err := NewW3CTraceState(tracestate) -// if err != nil { -// // error case: Tracestate is ill-formed. -// } -// // For an absolute probability sample, we check the incoming -// // tracestate to see whether it was already sampled enough. -// if len(ts.OTelValue().TValue()) != 0 { -// // If the incoming tracestate was already sampled at -// // least as much as our threshold implies, then its -// // (rejection) threshold is higher. If so, then no -// // further sampling is called for. -// if ThresholdGreater(ts.OTelValue().TValueThreshold(), fixedThreshold) { -// return true -// } -// } -// var rnd Randomness -// // If the R-value is present, use it. If not, rely on TraceID -// // randomness. Note that OTLP v1.1.0 introduces a new Span flag -// // to convey trace randomness correctly, and if the context has -// // neither the randomness bit set or the R-value set, we need a -// // fallback, which can be to synthesize an R-value or to assume -// // the TraceID has sufficient randomness. This detail is left -// // out of scope. -// if rval, hasRval := ts.OTelValue().RValueRandomness(); hasRv { -// rnd = rval -// } else { -// rnd = TraceIDToRandomness(tid) -// } -// -// return fixedThreshold.ShouldSample(rnd) -// } +// func MakeDecision(tracestate string, tid TraceID) bool { +// // Parse the incoming tracestate +// ts, err := NewW3CTraceState(tracestate) +// if err != nil { +// // error case: Tracestate is ill-formed. +// } +// // For an absolute probability sample, we check the incoming +// // tracestate to see whether it was already sampled enough. +// if threshold, hasThreshold := ts.OTelValue().TValueThreshold(); hasThreshold { +// // If the incoming tracestate was already sampled at +// // least as much as our threshold implies, then its +// // (rejection) threshold is higher. If so, then no +// // further sampling is called for. +// if ThresholdGreater(threshold, fixedThreshold) { +// // Do not update. +// return true +// } +// // The error below is ignored because we've tested +// // the equivalent condition above. This lowers the sampling +// // probability expressed in the tracestate T-value. +// _ = ts.OTelValue().UpdateThresholdWithSampling(fixedThreshold) +// } +// var rnd Randomness +// // If the R-value is present, use it. If not, rely on TraceID +// // randomness. Note that OTLP v1.1.0 introduces a new Span flag +// // to convey trace randomness correctly, and if the context has +// // neither the randomness bit set or the R-value set, we need a +// // fallback, which can be to synthesize an R-value or to assume +// // the TraceID has sufficient randomness. This detail is left +// // out of scope. +// if rv, hasRand := ts.OTelValue().RValueRandomness(); hasRand { +// rnd = rv +// } else { +// rnd = TraceIDToRandomness(tid) +// } +// return fixedThreshold.ShouldSample(rnd) +// } // // [W3C tracecontext specification]: https://www.w3.org/TR/trace-context/#tracestate-header // [Tracestate handling]: https://opentelemetry.io/docs/specs/otel/trace/tracestate-handling/ + package sampling // import "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/sampling" diff --git a/pkg/sampling/oteltracestate.go b/pkg/sampling/oteltracestate.go index 22babccda627..fbd277347175 100644 --- a/pkg/sampling/oteltracestate.go +++ b/pkg/sampling/oteltracestate.go @@ -97,9 +97,8 @@ func NewOpenTelemetryTraceState(input string) (OpenTelemetryTraceState, error) { if otts.rnd, err = RValueToRandomness(value); err == nil { otts.rvalue = value } else { - // The zero-value for randomness implies always-sample; - // the threshold test is R < T, but T is not meaningful - // at zero, and this value implies zero adjusted count. + // RValueRandomness() will return false, the error + // accumulates and is returned below. otts.rvalue = "" otts.rnd = Randomness{} } @@ -107,6 +106,8 @@ func NewOpenTelemetryTraceState(input string) (OpenTelemetryTraceState, error) { if otts.threshold, err = TValueToThreshold(value); err == nil { otts.tvalue = value } else { + // TValueThreshold() will return false, the error + // accumulates and is returned below. otts.tvalue = "" otts.threshold = AlwaysSampleThreshold } @@ -148,29 +149,47 @@ func (otts *OpenTelemetryTraceState) TValueThreshold() (Threshold, bool) { } // UpdateTValueWithSampling modifies the TValue of this object, which -// changes its adjusted count. If the change of TValue leads to -// inconsistency (i.e., raising sampling probability), an error is -// returned. -func (otts *OpenTelemetryTraceState) UpdateTValueWithSampling(sampledThreshold Threshold, encodedTValue string) error { +// changes its adjusted count. It is not logical to modify a sampling +// probability in the direction of larger probability. This prevents +// accidental loss of adjusted count. +// +// If the change of TValue leads to inconsistency, an error is returned. +func (otts *OpenTelemetryTraceState) UpdateTValueWithSampling(sampledThreshold Threshold) error { + // Note: there was once a code path here that optimized for + // cases where a static threshold is used, in which case the + // call to TValue() causes an unnecessary allocation per data + // item (w/ a constant result). We have eliminated that + // parameter, due to the significant potential for mis-use. + // Therefore, this method always recomputes TValue() of the + // sampledThreshold (on success). A future method such as + // UpdateTValueWithSamplingFixedTValue() could extend this + // API to address this allocation, although it is probably + // not significant. if len(otts.TValue()) != 0 && ThresholdGreater(otts.threshold, sampledThreshold) { return ErrInconsistentSampling } + // Note NeverSampleThreshold is the (exclusive) upper boundary + // of valid thresholds, so the test above permits never- + // sampled updates, in which case the TValue() here is empty. otts.threshold = sampledThreshold - otts.tvalue = encodedTValue + otts.tvalue = sampledThreshold.TValue() return nil } -// AdjustedCount returns the adjusted count implied by this TValue. -// This term is defined here: -// https://opentelemetry.io/docs/specs/otel/trace/tracestate-probability-sampling/ +// AdjustedCount returns the adjusted count for this item. If the +// TValue string is empty, this returns 0, otherwise returns +// Threshold.AdjustedCount(). func (otts *OpenTelemetryTraceState) AdjustedCount() float64 { - if len(otts.TValue()) == 0 { + if len(otts.tvalue) == 0 { + // Note: this case covers the zero state, where + // len(tvalue) == 0 and threshold == AlwaysSampleThreshold. + // We return 0 to indicate that no information is available. return 0 } - return 1.0 / otts.threshold.Probability() + return otts.threshold.AdjustedCount() } -// ClearTValue is used to unset TValue, in cases where it is +// ClearTValue is used to unset TValue, for use in cases where it is // inconsistent on arrival. func (otts *OpenTelemetryTraceState) ClearTValue() { otts.tvalue = "" diff --git a/pkg/sampling/oteltracestate_test.go b/pkg/sampling/oteltracestate_test.go index b14c05690b53..4330c01466ab 100644 --- a/pkg/sampling/oteltracestate_test.go +++ b/pkg/sampling/oteltracestate_test.go @@ -105,7 +105,7 @@ func TestOpenTelemetryTraceStateTValueUpdate(t *testing.T) { require.NotEqual(t, "", otts.RValue()) th, _ := TValueToThreshold("3") - require.NoError(t, otts.UpdateTValueWithSampling(th, "3")) + require.NoError(t, otts.UpdateTValueWithSampling(th)) require.Equal(t, "3", otts.TValue()) tv, hasTv := otts.TValueThreshold() @@ -126,7 +126,7 @@ func TestOpenTelemetryTraceStateRTUpdate(t *testing.T) { require.True(t, otts.HasAnyValue()) th, _ := TValueToThreshold("3") - require.NoError(t, otts.UpdateTValueWithSampling(th, "3")) + require.NoError(t, otts.UpdateTValueWithSampling(th)) otts.SetRValue(must(RValueToRandomness("00000000000003"))) const updated = "rv:00000000000003;th:3;a:b" @@ -329,7 +329,7 @@ func TestUpdateTValueWithSampling(t *testing.T) { newTh, err := ProbabilityToThreshold(test.prob) require.NoError(t, err) - upErr := otts.UpdateTValueWithSampling(newTh, newTh.TValue()) + upErr := otts.UpdateTValueWithSampling(newTh) require.Equal(t, test.updateErr, upErr) diff --git a/pkg/sampling/probability.go b/pkg/sampling/probability.go index 4b3498b8596b..1aeebdd86021 100644 --- a/pkg/sampling/probability.go +++ b/pkg/sampling/probability.go @@ -11,12 +11,9 @@ import ( // ErrProbabilityRange is returned when a value should be in the range [1/MaxAdjustedCount, 1]. var ErrProbabilityRange = errors.New("sampling probability out of the range [1/MaxAdjustedCount, 1]") -// ErrPrecisionUnderflow is returned when a precision is too great for the range. -var ErrPrecisionUnderflow = errors.New("sampling precision is too great for the range") - // MinSamplingProbability is the smallest representable probability // and is the inverse of MaxAdjustedCount. -const MinSamplingProbability = 1.0 / MaxAdjustedCount +const MinSamplingProbability = 1.0 / float64(MaxAdjustedCount) // probabilityInRange tests MinSamplingProb <= prob <= 1. func probabilityInRange(prob float64) bool { @@ -26,67 +23,60 @@ func probabilityInRange(prob float64) bool { // ProbabilityToThreshold converts a probability to a Threshold. It // returns an error when the probability is out-of-range. func ProbabilityToThreshold(prob float64) (Threshold, error) { - // Probability cases - if !probabilityInRange(prob) { - return AlwaysSampleThreshold, ErrProbabilityRange - } - - scaled := uint64(math.Round(prob * MaxAdjustedCount)) - - return Threshold{ - unsigned: MaxAdjustedCount - scaled, - }, nil + return ProbabilityToThresholdWithPrecision(prob, NumHexDigits) } // ProbabilityToThresholdWithPrecision is like ProbabilityToThreshold -// with support for reduced precision. The `prec` argument determines +// with support for reduced precision. The `precision` argument determines // how many significant hex digits will be used to encode the exact // probability. -func ProbabilityToThresholdWithPrecision(prob float64, prec uint8) (Threshold, error) { +func ProbabilityToThresholdWithPrecision(fraction float64, precision int) (Threshold, error) { // Assume full precision at 0. - if prec == 0 { - return ProbabilityToThreshold(prob) + if precision == 0 { + precision = NumHexDigits } - if !probabilityInRange(prob) { + if !probabilityInRange(fraction) { return AlwaysSampleThreshold, ErrProbabilityRange } - // Special case for prob == 1. The logic for revising precision - // that follows requires 0 < 1 - prob < 1. - if prob == 1 { + // Special case for prob == 1. + if fraction == 1 { return AlwaysSampleThreshold, nil } - // Adjust precision considering the significance of leading - // zeros. If we can multiply the rejection probability by 16 - // and still be less than 1, then there is a leading zero of - // obligatory precision. - for reject := 1 - prob; reject*16 < 1; { - reject *= 16 - prec++ - } - - // Check if leading zeros plus precision is above the maximum. - // This is called underflow because the requested precision - // leads to complete no significant figures. - if prec > NumHexDigits { - return AlwaysSampleThreshold, ErrPrecisionUnderflow + // Calculate the amount of precision needed to encode the + // threshold with reasonable precision. Here, we count the + // number of leading `0` or `f` characters and automatically + // add precision to preserve relative error near the extremes. + // + // Frexp() normalizes both the fraction and one-minus the + // fraction, because more digits of precision are needed if + // either value is near zero. Frexp returns an exponent <= 0. + // + // If `exp <= -4`, there will be a leading hex `0` or `f`. + // For every multiple of -4, another leading `0` or `f` + // appears, so this raises precision accordingly. + _, expF := math.Frexp(fraction) + _, expR := math.Frexp(1 - fraction) + precision = min(NumHexDigits, max(precision+expF/-hexBits, precision+expR/-hexBits)) + + // Compute the threshold + scaled := uint64(math.Round(fraction * float64(MaxAdjustedCount))) + threshold := MaxAdjustedCount - scaled + + // Round to the specified precision, if less than the maximum. + if shift := hexBits * (NumHexDigits - precision); shift != 0 { + half := uint64(1) << (shift - 1) + threshold += half + threshold >>= shift + threshold <<= shift } - scaled := uint64(math.Round(prob * MaxAdjustedCount)) - rscaled := MaxAdjustedCount - scaled - shift := 4 * (14 - prec) - half := uint64(1) << (shift - 1) - - rscaled += half - rscaled >>= shift - rscaled <<= shift - return Threshold{ - unsigned: rscaled, + unsigned: threshold, }, nil } // Probability is the sampling ratio in the range [MinSamplingProb, 1]. func (t Threshold) Probability() float64 { - return float64(MaxAdjustedCount-t.unsigned) / MaxAdjustedCount + return float64(MaxAdjustedCount-t.unsigned) / float64(MaxAdjustedCount) } diff --git a/pkg/sampling/probability_test.go b/pkg/sampling/probability_test.go index 33b38d9deec7..1d843753af69 100644 --- a/pkg/sampling/probability_test.go +++ b/pkg/sampling/probability_test.go @@ -171,7 +171,10 @@ func ExampleProbabilityToThreshold_verysmall() { 0x8p-56, // Skip 8 out of 2**56 0x10p-56, // Skip 0x10 out of 2**56 } { - tval, _ := ProbabilityToThreshold(prob) + // Note that precision is automatically raised for + // such small probabilities, because leading 'f' and + // '0' digits are discounted. + tval, _ := ProbabilityToThresholdWithPrecision(prob, 3) fmt.Println(tval.TValue()) } @@ -279,7 +282,7 @@ func TestProbabilityToThresholdWithPrecision(t *testing.T) { for len(strip) > 0 && strip[0] == '0' { strip = strip[1:] } - rth, err := ProbabilityToThresholdWithPrecision(test.prob, uint8(len(strip))) + rth, err := ProbabilityToThresholdWithPrecision(test.prob, len(strip)) require.NoError(t, err) require.Equal(t, round, rth.TValue()) }) diff --git a/pkg/sampling/randomness.go b/pkg/sampling/randomness.go index 1cda0da8cc87..8e1cac2f0fcb 100644 --- a/pkg/sampling/randomness.go +++ b/pkg/sampling/randomness.go @@ -30,6 +30,9 @@ var ErrRValueSize = errors.New("r-value must have 14 hex digits") // the TraceID, as specified in https://www.w3.org/TR/trace-context-2/#randomness-of-trace-id const leastHalfTraceIDThresholdMask = MaxAdjustedCount - 1 +// AllProbabilitiesRandomness is sampled at all probabilities. +var AllProbabilitiesRandomness = Randomness{unsigned: numRandomnessValues - 1} + // Randomness may be derived from R-value or TraceID. // // Randomness contains 56 bits of randomness, derived in one of two ways, see: @@ -85,5 +88,29 @@ func (rnd Randomness) RValue() string { // numRandomnessValues is 2^56: 100000000000000 // randomness+numRandomnessValues: 100aabbccddeeff // strip the leading "1": 00aabbccddeeff + // + // If the value is out-of-range, the empty string will be + // returned. + if rnd.unsigned >= numRandomnessValues { + return "" + } return strconv.FormatUint(numRandomnessValues+rnd.unsigned, hexBase)[1:] } + +// Unsigned returns the unsigned representation of the random value. +// Items of data SHOULD be sampled when: +// +// Threshold.Unsigned() <= // Randomness.Unsigned(). +func (rnd Randomness) Unsigned() uint64 { + return rnd.unsigned +} + +// UnsignedToRandomness constructs a randomness using 56 random bits +// of unsigned number. If the input is out of range, an invalid value +// will be returned with an error. +func UnsignedToRandomness(x uint64) (Randomness, error) { + if x >= MaxAdjustedCount { + return AllProbabilitiesRandomness, ErrRValueSize + } + return Randomness{unsigned: x}, nil +} diff --git a/pkg/sampling/randomness_test.go b/pkg/sampling/randomness_test.go index 542629ca12ba..9d4a164b6509 100644 --- a/pkg/sampling/randomness_test.go +++ b/pkg/sampling/randomness_test.go @@ -5,10 +5,23 @@ package sampling // import "github.com/open-telemetry/opentelemetry-collector-co import ( "fmt" + "testing" + "github.com/stretchr/testify/require" "go.opentelemetry.io/collector/pdata/pcommon" ) +func TestExplicitRandomness(t *testing.T) { + const val uint64 = 0x80000000000000 + rv, err := UnsignedToRandomness(val) + require.NoError(t, err) + require.Equal(t, val, rv.Unsigned()) + + rv, err = UnsignedToRandomness(MaxAdjustedCount) + require.Equal(t, err, ErrRValueSize) + require.Equal(t, AllProbabilitiesRandomness.Unsigned(), rv.Unsigned()) +} + func ExampleTraceIDToRandomness() { // TraceID represented in hex as "abababababababababd29d6a7215ced0" var exampleTid = pcommon.TraceID{ diff --git a/pkg/sampling/threshold.go b/pkg/sampling/threshold.go index af39be34cddf..044fef736d5b 100644 --- a/pkg/sampling/threshold.go +++ b/pkg/sampling/threshold.go @@ -11,7 +11,7 @@ import ( const ( // MaxAdjustedCount is 2^56 i.e. 0x100000000000000 i.e., 1<<56. - MaxAdjustedCount = 1 << 56 + MaxAdjustedCount uint64 = 1 << 56 // NumHexDigits is the number of hex digits equalling 56 bits. // This is the limit of sampling precision. @@ -51,6 +51,10 @@ var ( // AlwaysSampleThreshold represents 100% sampling. AlwaysSampleThreshold = Threshold{unsigned: 0} + + // NeverSampledThreshold is a threshold value that will always not sample. + // The TValue() corresponding with this threshold is an empty string. + NeverSampleThreshold = Threshold{unsigned: MaxAdjustedCount} ) // TValueToThreshold returns a Threshold. Because TValue strings @@ -79,14 +83,27 @@ func TValueToThreshold(s string) (Threshold, error) { }, nil } +// UnsignedToThreshold constructs a threshold expressed in terms +// defined by number of rejections out of MaxAdjustedCount, which +// equals the number of randomness values. +func UnsignedToThreshold(unsigned uint64) (Threshold, error) { + if unsigned >= MaxAdjustedCount { + return NeverSampleThreshold, ErrTValueSize + } + return Threshold{unsigned: unsigned}, nil +} + // TValue encodes a threshold, which is a variable-length hex string // up to 14 characters. The empty string is returned for 100% // sampling. func (th Threshold) TValue() string { // Always-sample is a special case because TrimRight() below // will trim it to the empty string, which represents no t-value. - if th == AlwaysSampleThreshold { + switch th { + case AlwaysSampleThreshold: return "0" + case NeverSampleThreshold: + return "" } // For thresholds other than the extremes, format a full-width // (14 digit) unsigned value with leading zeros, then, remove @@ -98,9 +115,32 @@ func (th Threshold) TValue() string { } // ShouldSample returns true when the span passes this sampler's -// consistent sampling decision. +// consistent sampling decision. The sampling decision can be +// expressed as a T <= R. func (th Threshold) ShouldSample(rnd Randomness) bool { - return rnd.unsigned >= th.unsigned + return th.unsigned <= rnd.unsigned +} + +// Unsigned expresses the number of Randomness values (out of +// MaxAdjustedCount) that are rejected or not sampled. 0 means 100% +// sampling. +func (th Threshold) Unsigned() uint64 { + return th.unsigned +} + +// AdjustedCount returns the adjusted count for this item, which is +// the representativity of the item due to sampling, equal to the +// inverse of sampling probability. If the threshold equals +// NeverSampleThreshold, the item should not have been sampled, in +// which case the Adjusted count is zero. +// +// This term is defined here: +// https://opentelemetry.io/docs/specs/otel/trace/tracestate-probability-sampling/ +func (th Threshold) AdjustedCount() float64 { + if th == NeverSampleThreshold { + return 0 + } + return 1.0 / th.Probability() } // ThresholdGreater allows direct comparison of Threshold values. diff --git a/pkg/sampling/threshold_test.go b/pkg/sampling/threshold_test.go index bada76904874..f05fb1033f23 100644 --- a/pkg/sampling/threshold_test.go +++ b/pkg/sampling/threshold_test.go @@ -6,10 +6,29 @@ package sampling // import "github.com/open-telemetry/opentelemetry-collector-co import ( "encoding/hex" "fmt" + "testing" + "github.com/stretchr/testify/require" "go.opentelemetry.io/collector/pdata/pcommon" ) +func TestExplicitThreshold(t *testing.T) { + const val uint64 = 0x80000000000000 + th, err := UnsignedToThreshold(val) + require.NoError(t, err) + require.Equal(t, val, th.Unsigned()) + + th, err = UnsignedToThreshold(MaxAdjustedCount) + require.Equal(t, err, ErrTValueSize) + require.Equal(t, MaxAdjustedCount, th.Unsigned()) + + // Note: the input is more out-of-range than above, test th == + // NeverSampleThreshold. + th, err = UnsignedToThreshold(MaxAdjustedCount + 10) + require.Equal(t, err, ErrTValueSize) + require.Equal(t, NeverSampleThreshold, th) +} + // ExampleTValueToThreshold demonstrates how to convert a T-value // string to a Threshold value. func ExampleTValueToThreshold() { diff --git a/pkg/sampling/w3ctracestate_test.go b/pkg/sampling/w3ctracestate_test.go index ec12774b9771..02eccf35c01b 100644 --- a/pkg/sampling/w3ctracestate_test.go +++ b/pkg/sampling/w3ctracestate_test.go @@ -55,7 +55,7 @@ func ExampleW3CTraceState_Serialize() { // value, since in some code paths the Threshold will have // just been parsed from a T-value, and in other code paths // the T-value will be precalculated. - err = w3c.OTelValue().UpdateTValueWithSampling(th, th.TValue()) + err = w3c.OTelValue().UpdateTValueWithSampling(th) if err != nil { panic(err) } From ccec96cda525bcbb98e87ff7abb6f34c048c7082 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 10:54:25 +0200 Subject: [PATCH 02/21] Update All github.com/aws packages (#32228) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/aws/aws-sdk-go](https://togithub.com/aws/aws-sdk-go) | `v1.51.13` -> `v1.51.17` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go/v1.51.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go/v1.51.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go/v1.51.13/v1.51.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go/v1.51.13/v1.51.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/aws-sdk-go-v2/config](https://togithub.com/aws/aws-sdk-go-v2) | `v1.27.10` -> `v1.27.11` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.10/v1.27.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.10/v1.27.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/aws-sdk-go-v2/credentials](https://togithub.com/aws/aws-sdk-go-v2) | `v1.17.10` -> `v1.17.11` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.17.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.17.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.17.10/v1.17.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.17.10/v1.17.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/aws-sdk-go-v2/service/servicediscovery](https://togithub.com/aws/aws-sdk-go-v2) | `v1.29.4` -> `v1.29.5` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.29.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.29.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.29.4/v1.29.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.29.4/v1.29.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes
aws/aws-sdk-go (github.com/aws/aws-sdk-go) ### [`v1.51.17`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15117-2024-04-08) [Compare Source](https://togithub.com/aws/aws-sdk-go/compare/v1.51.16...v1.51.17) \=== ##### Service Client Updates - `service/controlcatalog`: Adds new service - `service/mgn`: Updates service API and documentation - `service/networkmonitor`: Updates service API and documentation ### [`v1.51.16`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15116-2024-04-05) [Compare Source](https://togithub.com/aws/aws-sdk-go/compare/v1.51.15...v1.51.16) \=== ##### Service Client Updates - `service/quicksight`: Updates service API and documentation - Adding IAMIdentityCenterInstanceArn parameter to CreateAccountSubscription - `service/resource-groups`: Updates service API and documentation - `service/verifiedpermissions`: Updates service API and documentation ### [`v1.51.15`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15115-2024-04-04) [Compare Source](https://togithub.com/aws/aws-sdk-go/compare/v1.51.14...v1.51.15) \=== ##### Service Client Updates - `service/b2bi`: Updates service API - `service/cleanrooms`: Updates service API and documentation - `service/ec2`: Updates service API - Amazon EC2 G6 instances powered by NVIDIA L4 Tensor Core GPUs can be used for a wide range of graphics-intensive and machine learning use cases. Gr6 instances also feature NVIDIA L4 GPUs and can be used for graphics workloads with higher memory requirements. - `service/emr-containers`: Updates service API and documentation - `service/ivs`: Updates service API and documentation - `service/verifiedpermissions`: Updates service API and documentation ### [`v1.51.14`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15114-2024-04-03) [Compare Source](https://togithub.com/aws/aws-sdk-go/compare/v1.51.13...v1.51.14) \=== ##### Service Client Updates - `service/cleanroomsml`: Updates service API and documentation - `service/cloudformation`: Updates service API and documentation - This release would return a new field - PolicyAction in cloudformation's existed DescribeChangeSetResponse, showing actions we are going to apply on the physical resource (e.g., Delete, Retain) according to the user's template - `service/datazone`: Updates service API, documentation, and paginators - `service/docdb`: Updates service API and documentation - This release adds Global Cluster Switchover capability which enables you to change your global cluster's primary AWS Region, the region that serves writes, while preserving the replication between all regions in the global cluster. - `service/groundstation`: Updates service API and documentation - `service/lambda`: Updates service API and documentation - Add Ruby 3.3 (ruby3.3) support to AWS Lambda - `service/medialive`: Updates service API and documentation - Cmaf Ingest outputs are now supported in Media Live - `service/medical-imaging`: Updates service API and documentation - `service/transfer`: Updates service API and documentation - Add ability to specify Security Policies for SFTP Connectors
--- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- cmd/configschema/go.mod | 10 +++++----- cmd/configschema/go.sum | 20 +++++++++---------- cmd/otelcontribcol/go.mod | 10 +++++----- cmd/otelcontribcol/go.sum | 20 +++++++++---------- confmap/provider/s3provider/go.mod | 6 +++--- confmap/provider/s3provider/go.sum | 12 +++++------ connector/datadogconnector/go.mod | 2 +- connector/datadogconnector/go.sum | 4 ++-- exporter/awscloudwatchlogsexporter/go.mod | 2 +- exporter/awscloudwatchlogsexporter/go.sum | 4 ++-- exporter/awsemfexporter/go.mod | 2 +- exporter/awsemfexporter/go.sum | 4 ++-- exporter/awskinesisexporter/go.mod | 6 +++--- exporter/awskinesisexporter/go.sum | 12 +++++------ exporter/awss3exporter/go.mod | 2 +- exporter/awss3exporter/go.sum | 4 ++-- exporter/awsxrayexporter/go.mod | 2 +- exporter/awsxrayexporter/go.sum | 4 ++-- exporter/datadogexporter/go.mod | 2 +- exporter/datadogexporter/go.sum | 4 ++-- .../datadogexporter/integrationtest/go.mod | 2 +- .../datadogexporter/integrationtest/go.sum | 4 ++-- exporter/kafkaexporter/go.mod | 2 +- exporter/kafkaexporter/go.sum | 4 ++-- exporter/loadbalancingexporter/go.mod | 8 ++++---- exporter/loadbalancingexporter/go.sum | 16 +++++++-------- extension/awsproxy/go.mod | 2 +- extension/awsproxy/go.sum | 4 ++-- extension/observer/ecsobserver/go.mod | 2 +- extension/observer/ecsobserver/go.sum | 4 ++-- extension/sigv4authextension/go.mod | 6 +++--- extension/sigv4authextension/go.sum | 12 +++++------ go.mod | 10 +++++----- go.sum | 20 +++++++++---------- internal/aws/awsutil/go.mod | 2 +- internal/aws/awsutil/go.sum | 4 ++-- internal/aws/cwlogs/go.mod | 2 +- internal/aws/cwlogs/go.sum | 4 ++-- internal/aws/k8s/go.mod | 2 +- internal/aws/k8s/go.sum | 4 ++-- internal/aws/proxy/go.mod | 2 +- internal/aws/proxy/go.sum | 4 ++-- internal/aws/xray/go.mod | 2 +- internal/aws/xray/go.sum | 4 ++-- internal/aws/xray/testdata/sampleapp/go.mod | 2 +- internal/aws/xray/testdata/sampleapp/go.sum | 4 ++-- internal/kafka/go.mod | 2 +- internal/kafka/go.sum | 4 ++-- internal/metadataproviders/go.mod | 2 +- internal/metadataproviders/go.sum | 4 ++-- processor/resourcedetectionprocessor/go.mod | 2 +- processor/resourcedetectionprocessor/go.sum | 4 ++-- receiver/awscloudwatchreceiver/go.mod | 2 +- receiver/awscloudwatchreceiver/go.sum | 4 ++-- receiver/awscontainerinsightreceiver/go.mod | 2 +- receiver/awscontainerinsightreceiver/go.sum | 4 ++-- .../awsecscontainermetricsreceiver/go.mod | 2 +- .../awsecscontainermetricsreceiver/go.sum | 4 ++-- receiver/awsxrayreceiver/go.mod | 2 +- receiver/awsxrayreceiver/go.sum | 4 ++-- receiver/kafkametricsreceiver/go.mod | 2 +- receiver/kafkametricsreceiver/go.sum | 4 ++-- receiver/kafkareceiver/go.mod | 2 +- receiver/kafkareceiver/go.sum | 4 ++-- 64 files changed, 159 insertions(+), 159 deletions(-) diff --git a/cmd/configschema/go.mod b/cmd/configschema/go.mod index 3172c638f8f7..509435981917 100644 --- a/cmd/configschema/go.mod +++ b/cmd/configschema/go.mod @@ -260,11 +260,11 @@ require ( github.com/apache/thrift v0.20.0 // indirect github.com/ardielle/ardielle-go v1.5.2 // indirect github.com/armon/go-metrics v0.4.1 // indirect - github.com/aws/aws-sdk-go v1.51.13 // indirect + github.com/aws/aws-sdk-go v1.51.17 // indirect github.com/aws/aws-sdk-go-v2 v1.26.1 // indirect github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 // indirect - github.com/aws/aws-sdk-go-v2/config v1.27.10 // indirect - github.com/aws/aws-sdk-go-v2/credentials v1.17.10 // indirect + github.com/aws/aws-sdk-go-v2/config v1.27.11 // indirect + github.com/aws/aws-sdk-go-v2/credentials v1.17.11 // indirect github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 // indirect github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.59 // indirect github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 // indirect @@ -277,8 +277,8 @@ require ( github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.14.0 // indirect github.com/aws/aws-sdk-go-v2/service/kinesis v1.27.4 // indirect github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0 // indirect - github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.4 // indirect - github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 // indirect + github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.5 // indirect + github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 // indirect github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 // indirect github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 // indirect github.com/aws/smithy-go v1.20.2 // indirect diff --git a/cmd/configschema/go.sum b/cmd/configschema/go.sum index 387ae45adc40..1570c66d0124 100644 --- a/cmd/configschema/go.sum +++ b/cmd/configschema/go.sum @@ -333,8 +333,8 @@ github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN github.com/aws/aws-sdk-go v1.32.6/go.mod h1:5zCpMtNQVjRREroY7sYe8lOMRSxkhG6MZveU8YkpAk0= github.com/aws/aws-sdk-go v1.38.35/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= github.com/aws/aws-sdk-go v1.44.263/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= github.com/aws/aws-sdk-go-v2 v1.17.7/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= github.com/aws/aws-sdk-go-v2 v1.18.0/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= @@ -345,12 +345,12 @@ github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 h1:x6xsQXGSmW6frevw github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2/go.mod h1:lPprDr1e6cJdyYeGXnRaJoP4Md+cDBvi2eOj00BlGmg= github.com/aws/aws-sdk-go-v2/config v1.18.19/go.mod h1:XvTmGMY8d52ougvakOv1RpiTLPz9dlG/OQHsKU/cMmY= github.com/aws/aws-sdk-go-v2/config v1.18.25/go.mod h1:dZnYpD5wTW/dQF0rRNLVypB396zWCcPiBIvdvSWHEg4= -github.com/aws/aws-sdk-go-v2/config v1.27.10 h1:PS+65jThT0T/snC5WjyfHHyUgG+eBoupSDV+f838cro= -github.com/aws/aws-sdk-go-v2/config v1.27.10/go.mod h1:BePM7Vo4OBpHreKRUMuDXX+/+JWP38FLkzl5m27/Jjs= +github.com/aws/aws-sdk-go-v2/config v1.27.11 h1:f47rANd2LQEYHda2ddSCKYId18/8BhSRM4BULGmfgNA= +github.com/aws/aws-sdk-go-v2/config v1.27.11/go.mod h1:SMsV78RIOYdve1vf36z8LmnszlRWkwMQtomCAI0/mIE= github.com/aws/aws-sdk-go-v2/credentials v1.13.18/go.mod h1:vnwlwjIe+3XJPBYKu1et30ZPABG3VaXJYr8ryohpIyM= github.com/aws/aws-sdk-go-v2/credentials v1.13.24/go.mod h1:jYPYi99wUOPIFi0rhiOvXeSEReVOzBqFNOX5bXYoG2o= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10 h1:qDZ3EA2lv1KangvQB6y258OssCHD0xvaGiEDkG4X/10= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10/go.mod h1:6t3sucOaYDwDssHQa0ojH1RpmVmF5/jArkye1b2FKMI= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11 h1:YuIB1dJNf1Re822rriUOTxopaHHvIq0l/pX3fwO+Tzs= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11/go.mod h1:AQtFPsDH9bI2O+71anW6EKL+NcD7LG3dpKGMV4SShgo= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.1/go.mod h1:lfUx8puBRdM5lVVMQlwt2v+ofiG/X6Ms+dy0UkG/kXw= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.3/go.mod h1:4Q0UFP0YJf0NrsEuEYHpM9fTSEVnD16Z3uyEF7J9JGM= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 h1:FVJ0r5XTHSmIHJV6KuDmdYhEpvlHpiSd38RQWhut5J4= @@ -386,12 +386,12 @@ github.com/aws/aws-sdk-go-v2/service/kinesis v1.27.4 h1:Oe8awBiS/iitcsRJB5+DHa3i github.com/aws/aws-sdk-go-v2/service/kinesis v1.27.4/go.mod h1:RCZCSFbieSgNG1RKegO26opXV4EXyef/vNBVJsUyHuw= github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0 h1:B1G2pSPvbAtQjilPq+Y7jLIzCOwKzuVEl+aBBaNG0AQ= github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0/go.mod h1:ncltU6n4Nof5uJttDtcNQ537uNuwYqsZZQcpkd2/GUQ= -github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.4 h1:NkeK09CJZcPwQZicMNObg+/DgZW9h/ib6I9VDETfSiQ= -github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.4/go.mod h1:3pzLFJnbjkymz6RdZ963DuvMR9rzrKMXrlbteSk4Sxc= +github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.5 h1:a3nFS1TFNTH9TVizItnHz3BgPCk5/7ygrZQZAoUV3GA= +github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.5/go.mod h1:3pzLFJnbjkymz6RdZ963DuvMR9rzrKMXrlbteSk4Sxc= github.com/aws/aws-sdk-go-v2/service/sso v1.12.6/go.mod h1:Y1VOmit/Fn6Tz1uFAeCO6Q7M2fmfXSCLeL5INVYsLuY= github.com/aws/aws-sdk-go-v2/service/sso v1.12.10/go.mod h1:ouy2P4z6sJN70fR3ka3wD3Ro3KezSxU6eKGQI2+2fjI= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 h1:WzFol5Cd+yDxPAdnzTA5LmpHYSWinhmSj4rQChV0ee8= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 h1:vN8hEbpRnL7+Hopy9dzmRle1xmDc7o8tmY0klsr175w= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.6/go.mod h1:Lh/bc9XUf8CfOY6Jp5aIkQtN+j1mc+nExc+KXj9jx2s= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.10/go.mod h1:AFvkxc8xfBe8XA+5St5XIHHrQQtkxqrRincx4hmMHOk= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 h1:Jux+gDDyi1Lruk+KHF91tK2KCuY61kzoCpvtvJJBtOE= diff --git a/cmd/otelcontribcol/go.mod b/cmd/otelcontribcol/go.mod index c54b24895882..43cee8ee3247 100644 --- a/cmd/otelcontribcol/go.mod +++ b/cmd/otelcontribcol/go.mod @@ -314,11 +314,11 @@ require ( github.com/apache/thrift v0.20.0 // indirect github.com/ardielle/ardielle-go v1.5.2 // indirect github.com/armon/go-metrics v0.4.1 // indirect - github.com/aws/aws-sdk-go v1.51.13 // indirect + github.com/aws/aws-sdk-go v1.51.17 // indirect github.com/aws/aws-sdk-go-v2 v1.26.1 // indirect github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 // indirect - github.com/aws/aws-sdk-go-v2/config v1.27.10 // indirect - github.com/aws/aws-sdk-go-v2/credentials v1.17.10 // indirect + github.com/aws/aws-sdk-go-v2/config v1.27.11 // indirect + github.com/aws/aws-sdk-go-v2/credentials v1.17.11 // indirect github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 // indirect github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.59 // indirect github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 // indirect @@ -331,8 +331,8 @@ require ( github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.14.0 // indirect github.com/aws/aws-sdk-go-v2/service/kinesis v1.27.4 // indirect github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0 // indirect - github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.4 // indirect - github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 // indirect + github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.5 // indirect + github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 // indirect github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 // indirect github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 // indirect github.com/aws/smithy-go v1.20.2 // indirect diff --git a/cmd/otelcontribcol/go.sum b/cmd/otelcontribcol/go.sum index 67f76ccdddf0..cd616b91ada3 100644 --- a/cmd/otelcontribcol/go.sum +++ b/cmd/otelcontribcol/go.sum @@ -331,8 +331,8 @@ github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN github.com/aws/aws-sdk-go v1.32.6/go.mod h1:5zCpMtNQVjRREroY7sYe8lOMRSxkhG6MZveU8YkpAk0= github.com/aws/aws-sdk-go v1.38.35/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= github.com/aws/aws-sdk-go v1.44.263/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= github.com/aws/aws-sdk-go-v2 v1.17.7/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= github.com/aws/aws-sdk-go-v2 v1.18.0/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= @@ -343,12 +343,12 @@ github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 h1:x6xsQXGSmW6frevw github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2/go.mod h1:lPprDr1e6cJdyYeGXnRaJoP4Md+cDBvi2eOj00BlGmg= github.com/aws/aws-sdk-go-v2/config v1.18.19/go.mod h1:XvTmGMY8d52ougvakOv1RpiTLPz9dlG/OQHsKU/cMmY= github.com/aws/aws-sdk-go-v2/config v1.18.25/go.mod h1:dZnYpD5wTW/dQF0rRNLVypB396zWCcPiBIvdvSWHEg4= -github.com/aws/aws-sdk-go-v2/config v1.27.10 h1:PS+65jThT0T/snC5WjyfHHyUgG+eBoupSDV+f838cro= -github.com/aws/aws-sdk-go-v2/config v1.27.10/go.mod h1:BePM7Vo4OBpHreKRUMuDXX+/+JWP38FLkzl5m27/Jjs= +github.com/aws/aws-sdk-go-v2/config v1.27.11 h1:f47rANd2LQEYHda2ddSCKYId18/8BhSRM4BULGmfgNA= +github.com/aws/aws-sdk-go-v2/config v1.27.11/go.mod h1:SMsV78RIOYdve1vf36z8LmnszlRWkwMQtomCAI0/mIE= github.com/aws/aws-sdk-go-v2/credentials v1.13.18/go.mod h1:vnwlwjIe+3XJPBYKu1et30ZPABG3VaXJYr8ryohpIyM= github.com/aws/aws-sdk-go-v2/credentials v1.13.24/go.mod h1:jYPYi99wUOPIFi0rhiOvXeSEReVOzBqFNOX5bXYoG2o= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10 h1:qDZ3EA2lv1KangvQB6y258OssCHD0xvaGiEDkG4X/10= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10/go.mod h1:6t3sucOaYDwDssHQa0ojH1RpmVmF5/jArkye1b2FKMI= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11 h1:YuIB1dJNf1Re822rriUOTxopaHHvIq0l/pX3fwO+Tzs= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11/go.mod h1:AQtFPsDH9bI2O+71anW6EKL+NcD7LG3dpKGMV4SShgo= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.1/go.mod h1:lfUx8puBRdM5lVVMQlwt2v+ofiG/X6Ms+dy0UkG/kXw= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.3/go.mod h1:4Q0UFP0YJf0NrsEuEYHpM9fTSEVnD16Z3uyEF7J9JGM= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 h1:FVJ0r5XTHSmIHJV6KuDmdYhEpvlHpiSd38RQWhut5J4= @@ -384,12 +384,12 @@ github.com/aws/aws-sdk-go-v2/service/kinesis v1.27.4 h1:Oe8awBiS/iitcsRJB5+DHa3i github.com/aws/aws-sdk-go-v2/service/kinesis v1.27.4/go.mod h1:RCZCSFbieSgNG1RKegO26opXV4EXyef/vNBVJsUyHuw= github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0 h1:B1G2pSPvbAtQjilPq+Y7jLIzCOwKzuVEl+aBBaNG0AQ= github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0/go.mod h1:ncltU6n4Nof5uJttDtcNQ537uNuwYqsZZQcpkd2/GUQ= -github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.4 h1:NkeK09CJZcPwQZicMNObg+/DgZW9h/ib6I9VDETfSiQ= -github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.4/go.mod h1:3pzLFJnbjkymz6RdZ963DuvMR9rzrKMXrlbteSk4Sxc= +github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.5 h1:a3nFS1TFNTH9TVizItnHz3BgPCk5/7ygrZQZAoUV3GA= +github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.5/go.mod h1:3pzLFJnbjkymz6RdZ963DuvMR9rzrKMXrlbteSk4Sxc= github.com/aws/aws-sdk-go-v2/service/sso v1.12.6/go.mod h1:Y1VOmit/Fn6Tz1uFAeCO6Q7M2fmfXSCLeL5INVYsLuY= github.com/aws/aws-sdk-go-v2/service/sso v1.12.10/go.mod h1:ouy2P4z6sJN70fR3ka3wD3Ro3KezSxU6eKGQI2+2fjI= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 h1:WzFol5Cd+yDxPAdnzTA5LmpHYSWinhmSj4rQChV0ee8= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 h1:vN8hEbpRnL7+Hopy9dzmRle1xmDc7o8tmY0klsr175w= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.6/go.mod h1:Lh/bc9XUf8CfOY6Jp5aIkQtN+j1mc+nExc+KXj9jx2s= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.10/go.mod h1:AFvkxc8xfBe8XA+5St5XIHHrQQtkxqrRincx4hmMHOk= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 h1:Jux+gDDyi1Lruk+KHF91tK2KCuY61kzoCpvtvJJBtOE= diff --git a/confmap/provider/s3provider/go.mod b/confmap/provider/s3provider/go.mod index 28c2f8f45c24..2113d2f551af 100644 --- a/confmap/provider/s3provider/go.mod +++ b/confmap/provider/s3provider/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/aws/aws-sdk-go-v2 v1.26.1 - github.com/aws/aws-sdk-go-v2/config v1.27.10 + github.com/aws/aws-sdk-go-v2/config v1.27.11 github.com/aws/aws-sdk-go-v2/service/s3 v1.53.1 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b @@ -14,7 +14,7 @@ require ( require ( github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 // indirect - github.com/aws/aws-sdk-go-v2/credentials v1.17.10 // indirect + github.com/aws/aws-sdk-go-v2/credentials v1.17.11 // indirect github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 // indirect github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 // indirect github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.5 // indirect @@ -24,7 +24,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.7 // indirect github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7 // indirect github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.5 // indirect - github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 // indirect + github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 // indirect github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 // indirect github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 // indirect github.com/aws/smithy-go v1.20.2 // indirect diff --git a/confmap/provider/s3provider/go.sum b/confmap/provider/s3provider/go.sum index c4db122aa803..bdf0f8b40935 100644 --- a/confmap/provider/s3provider/go.sum +++ b/confmap/provider/s3provider/go.sum @@ -2,10 +2,10 @@ github.com/aws/aws-sdk-go-v2 v1.26.1 h1:5554eUqIYVWpU0YmeeYZ0wU64H2VLBs8TlhRB2L+ github.com/aws/aws-sdk-go-v2 v1.26.1/go.mod h1:ffIFB97e2yNsv4aTSGkqtHnppsIJzw7G7BReUZ3jCXM= github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 h1:x6xsQXGSmW6frevwDA+vi/wqhp1ct18mVXYN08/93to= github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2/go.mod h1:lPprDr1e6cJdyYeGXnRaJoP4Md+cDBvi2eOj00BlGmg= -github.com/aws/aws-sdk-go-v2/config v1.27.10 h1:PS+65jThT0T/snC5WjyfHHyUgG+eBoupSDV+f838cro= -github.com/aws/aws-sdk-go-v2/config v1.27.10/go.mod h1:BePM7Vo4OBpHreKRUMuDXX+/+JWP38FLkzl5m27/Jjs= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10 h1:qDZ3EA2lv1KangvQB6y258OssCHD0xvaGiEDkG4X/10= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10/go.mod h1:6t3sucOaYDwDssHQa0ojH1RpmVmF5/jArkye1b2FKMI= +github.com/aws/aws-sdk-go-v2/config v1.27.11 h1:f47rANd2LQEYHda2ddSCKYId18/8BhSRM4BULGmfgNA= +github.com/aws/aws-sdk-go-v2/config v1.27.11/go.mod h1:SMsV78RIOYdve1vf36z8LmnszlRWkwMQtomCAI0/mIE= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11 h1:YuIB1dJNf1Re822rriUOTxopaHHvIq0l/pX3fwO+Tzs= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11/go.mod h1:AQtFPsDH9bI2O+71anW6EKL+NcD7LG3dpKGMV4SShgo= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 h1:FVJ0r5XTHSmIHJV6KuDmdYhEpvlHpiSd38RQWhut5J4= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1/go.mod h1:zusuAeqezXzAB24LGuzuekqMAEgWkVYukBec3kr3jUg= github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 h1:aw39xVGeRWlWx9EzGVnhOR4yOjQDHPQ6o6NmBlscyQg= @@ -26,8 +26,8 @@ github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.5 h1:f9RyWNtS8oH7cZ github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.5/go.mod h1:h5CoMZV2VF297/VLhRhO1WF+XYWOzXo+4HsObA4HjBQ= github.com/aws/aws-sdk-go-v2/service/s3 v1.53.1 h1:6cnno47Me9bRykw9AEv9zkXE+5or7jz8TsskTTccbgc= github.com/aws/aws-sdk-go-v2/service/s3 v1.53.1/go.mod h1:qmdkIIAC+GCLASF7R2whgNrJADz0QZPX+Seiw/i4S3o= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 h1:WzFol5Cd+yDxPAdnzTA5LmpHYSWinhmSj4rQChV0ee8= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 h1:vN8hEbpRnL7+Hopy9dzmRle1xmDc7o8tmY0klsr175w= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 h1:Jux+gDDyi1Lruk+KHF91tK2KCuY61kzoCpvtvJJBtOE= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4/go.mod h1:mUYPBhaF2lGiukDEjJX2BLRRKTmoUSitGDUgM4tRxak= github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 h1:cwIxeBttqPN3qkaAjcEcsh8NYr8n2HZPkcKgPAi1phU= diff --git a/connector/datadogconnector/go.mod b/connector/datadogconnector/go.mod index b56151e9b8ab..2a23773d2547 100644 --- a/connector/datadogconnector/go.mod +++ b/connector/datadogconnector/go.mod @@ -54,7 +54,7 @@ require ( github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.22.0 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/alecthomas/participle/v2 v2.1.1 // indirect - github.com/aws/aws-sdk-go v1.51.13 // indirect + github.com/aws/aws-sdk-go v1.51.17 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff v2.2.1+incompatible // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect diff --git a/connector/datadogconnector/go.sum b/connector/datadogconnector/go.sum index 50944285fd82..5521819ea448 100644 --- a/connector/datadogconnector/go.sum +++ b/connector/datadogconnector/go.sum @@ -113,8 +113,8 @@ github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9/go.mod h1:OMCwj8V github.com/armon/go-metrics v0.4.1 h1:hR91U9KYmb6bLBYLQjyM+3j+rcd/UhE+G78SFnF8gJA= github.com/armon/go-metrics v0.4.1/go.mod h1:E6amYzXo6aW1tqzoZGT755KkbgrJsSdpwZ+3JqfkOG4= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bmatcuk/doublestar/v4 v4.6.1 h1:FH9SifrbvJhnlQpztAx++wlkk70QBf0iBWDwNy7PA4I= diff --git a/exporter/awscloudwatchlogsexporter/go.mod b/exporter/awscloudwatchlogsexporter/go.mod index 24c634641d78..b678f9e9ffa1 100644 --- a/exporter/awscloudwatchlogsexporter/go.mod +++ b/exporter/awscloudwatchlogsexporter/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awsclo go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/cenkalti/backoff/v4 v4.3.0 github.com/google/uuid v1.6.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/awsutil v0.97.0 diff --git a/exporter/awscloudwatchlogsexporter/go.sum b/exporter/awscloudwatchlogsexporter/go.sum index b21e58f08f6b..32e6fe4df613 100644 --- a/exporter/awscloudwatchlogsexporter/go.sum +++ b/exporter/awscloudwatchlogsexporter/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= diff --git a/exporter/awsemfexporter/go.mod b/exporter/awsemfexporter/go.mod index caadac811cfc..c8f8db7d4064 100644 --- a/exporter/awsemfexporter/go.mod +++ b/exporter/awsemfexporter/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awsemf go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/google/uuid v1.6.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/awsutil v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/cwlogs v0.97.0 diff --git a/exporter/awsemfexporter/go.sum b/exporter/awsemfexporter/go.sum index fd06391d82f1..89961d956e72 100644 --- a/exporter/awsemfexporter/go.sum +++ b/exporter/awsemfexporter/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= diff --git a/exporter/awskinesisexporter/go.mod b/exporter/awskinesisexporter/go.mod index 652512dcc556..56285812b3f7 100644 --- a/exporter/awskinesisexporter/go.mod +++ b/exporter/awskinesisexporter/go.mod @@ -4,8 +4,8 @@ go 1.21 require ( github.com/aws/aws-sdk-go-v2 v1.26.1 - github.com/aws/aws-sdk-go-v2/config v1.27.10 - github.com/aws/aws-sdk-go-v2/credentials v1.17.10 + github.com/aws/aws-sdk-go-v2/config v1.27.11 + github.com/aws/aws-sdk-go-v2/credentials v1.17.11 github.com/aws/aws-sdk-go-v2/service/kinesis v1.27.4 github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 github.com/cenkalti/backoff/v4 v4.3.0 @@ -37,7 +37,7 @@ require ( github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 // indirect github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7 // indirect - github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 // indirect + github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 // indirect github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 // indirect github.com/aws/smithy-go v1.20.2 // indirect github.com/beorn7/perks v1.0.1 // indirect diff --git a/exporter/awskinesisexporter/go.sum b/exporter/awskinesisexporter/go.sum index 6fed3ebeea2f..a0ee21d5d564 100644 --- a/exporter/awskinesisexporter/go.sum +++ b/exporter/awskinesisexporter/go.sum @@ -4,10 +4,10 @@ github.com/aws/aws-sdk-go-v2 v1.26.1 h1:5554eUqIYVWpU0YmeeYZ0wU64H2VLBs8TlhRB2L+ github.com/aws/aws-sdk-go-v2 v1.26.1/go.mod h1:ffIFB97e2yNsv4aTSGkqtHnppsIJzw7G7BReUZ3jCXM= github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 h1:x6xsQXGSmW6frevwDA+vi/wqhp1ct18mVXYN08/93to= github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2/go.mod h1:lPprDr1e6cJdyYeGXnRaJoP4Md+cDBvi2eOj00BlGmg= -github.com/aws/aws-sdk-go-v2/config v1.27.10 h1:PS+65jThT0T/snC5WjyfHHyUgG+eBoupSDV+f838cro= -github.com/aws/aws-sdk-go-v2/config v1.27.10/go.mod h1:BePM7Vo4OBpHreKRUMuDXX+/+JWP38FLkzl5m27/Jjs= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10 h1:qDZ3EA2lv1KangvQB6y258OssCHD0xvaGiEDkG4X/10= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10/go.mod h1:6t3sucOaYDwDssHQa0ojH1RpmVmF5/jArkye1b2FKMI= +github.com/aws/aws-sdk-go-v2/config v1.27.11 h1:f47rANd2LQEYHda2ddSCKYId18/8BhSRM4BULGmfgNA= +github.com/aws/aws-sdk-go-v2/config v1.27.11/go.mod h1:SMsV78RIOYdve1vf36z8LmnszlRWkwMQtomCAI0/mIE= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11 h1:YuIB1dJNf1Re822rriUOTxopaHHvIq0l/pX3fwO+Tzs= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11/go.mod h1:AQtFPsDH9bI2O+71anW6EKL+NcD7LG3dpKGMV4SShgo= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 h1:FVJ0r5XTHSmIHJV6KuDmdYhEpvlHpiSd38RQWhut5J4= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1/go.mod h1:zusuAeqezXzAB24LGuzuekqMAEgWkVYukBec3kr3jUg= github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 h1:aw39xVGeRWlWx9EzGVnhOR4yOjQDHPQ6o6NmBlscyQg= @@ -22,8 +22,8 @@ github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7 h1:ogRAwT1/g github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7/go.mod h1:YCsIZhXfRPLFFCl5xxY+1T9RKzOKjCut+28JSX2DnAk= github.com/aws/aws-sdk-go-v2/service/kinesis v1.27.4 h1:Oe8awBiS/iitcsRJB5+DHa3iCxoA0KwJJf0JNrYMINY= github.com/aws/aws-sdk-go-v2/service/kinesis v1.27.4/go.mod h1:RCZCSFbieSgNG1RKegO26opXV4EXyef/vNBVJsUyHuw= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 h1:WzFol5Cd+yDxPAdnzTA5LmpHYSWinhmSj4rQChV0ee8= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 h1:vN8hEbpRnL7+Hopy9dzmRle1xmDc7o8tmY0klsr175w= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 h1:Jux+gDDyi1Lruk+KHF91tK2KCuY61kzoCpvtvJJBtOE= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4/go.mod h1:mUYPBhaF2lGiukDEjJX2BLRRKTmoUSitGDUgM4tRxak= github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 h1:cwIxeBttqPN3qkaAjcEcsh8NYr8n2HZPkcKgPAi1phU= diff --git a/exporter/awss3exporter/go.mod b/exporter/awss3exporter/go.mod index 687249376ce1..0eda82efd2ea 100644 --- a/exporter/awss3exporter/go.mod +++ b/exporter/awss3exporter/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awss3e go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b diff --git a/exporter/awss3exporter/go.sum b/exporter/awss3exporter/go.sum index 633bbeac2caf..a11da9c58478 100644 --- a/exporter/awss3exporter/go.sum +++ b/exporter/awss3exporter/go.sum @@ -1,7 +1,7 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= diff --git a/exporter/awsxrayexporter/go.mod b/exporter/awsxrayexporter/go.mod index ae0e94abeb7a..473dbd501945 100644 --- a/exporter/awsxrayexporter/go.mod +++ b/exporter/awsxrayexporter/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awsxra go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/awsutil v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/xray v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 diff --git a/exporter/awsxrayexporter/go.sum b/exporter/awsxrayexporter/go.sum index d47091564c83..f3f2cb581128 100644 --- a/exporter/awsxrayexporter/go.sum +++ b/exporter/awsxrayexporter/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= diff --git a/exporter/datadogexporter/go.mod b/exporter/datadogexporter/go.mod index b0373621fe85..fd45d6ef7465 100644 --- a/exporter/datadogexporter/go.mod +++ b/exporter/datadogexporter/go.mod @@ -16,7 +16,7 @@ require ( github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.13.4 github.com/DataDog/sketches-go v1.4.4 github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.22.0 - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/cenkalti/backoff/v4 v4.3.0 github.com/google/go-cmp v0.6.0 github.com/open-telemetry/opentelemetry-collector-contrib/connector/datadogconnector v0.97.0 diff --git a/exporter/datadogexporter/go.sum b/exporter/datadogexporter/go.sum index 44db138bec51..9aa9fdd1a1c8 100644 --- a/exporter/datadogexporter/go.sum +++ b/exporter/datadogexporter/go.sum @@ -144,8 +144,8 @@ github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= github.com/aws/aws-sdk-go v1.38.35/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/bboreham/go-loser v0.0.0-20230920113527-fcc2c21820a3 h1:6df1vn4bBlDDo4tARvBm7l6KA9iVMnE3NWizDeWSrps= github.com/bboreham/go-loser v0.0.0-20230920113527-fcc2c21820a3/go.mod h1:CIWtjkly68+yqLPbvwwR/fjNJA/idrtULjZWh2v1ys0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= diff --git a/exporter/datadogexporter/integrationtest/go.mod b/exporter/datadogexporter/integrationtest/go.mod index a2d31e00770c..d8a8b15a2c73 100644 --- a/exporter/datadogexporter/integrationtest/go.mod +++ b/exporter/datadogexporter/integrationtest/go.mod @@ -53,7 +53,7 @@ require ( github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.22.0 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/alecthomas/participle/v2 v2.1.1 // indirect - github.com/aws/aws-sdk-go v1.51.13 // indirect + github.com/aws/aws-sdk-go v1.51.17 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff v2.2.1+incompatible // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect diff --git a/exporter/datadogexporter/integrationtest/go.sum b/exporter/datadogexporter/integrationtest/go.sum index 50944285fd82..5521819ea448 100644 --- a/exporter/datadogexporter/integrationtest/go.sum +++ b/exporter/datadogexporter/integrationtest/go.sum @@ -113,8 +113,8 @@ github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9/go.mod h1:OMCwj8V github.com/armon/go-metrics v0.4.1 h1:hR91U9KYmb6bLBYLQjyM+3j+rcd/UhE+G78SFnF8gJA= github.com/armon/go-metrics v0.4.1/go.mod h1:E6amYzXo6aW1tqzoZGT755KkbgrJsSdpwZ+3JqfkOG4= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bmatcuk/doublestar/v4 v4.6.1 h1:FH9SifrbvJhnlQpztAx++wlkk70QBf0iBWDwNy7PA4I= diff --git a/exporter/kafkaexporter/go.mod b/exporter/kafkaexporter/go.mod index c764aba9d030..c76ccf803658 100644 --- a/exporter/kafkaexporter/go.mod +++ b/exporter/kafkaexporter/go.mod @@ -31,7 +31,7 @@ require ( require ( github.com/apache/thrift v0.19.0 // indirect - github.com/aws/aws-sdk-go v1.51.13 // indirect + github.com/aws/aws-sdk-go v1.51.17 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect diff --git a/exporter/kafkaexporter/go.sum b/exporter/kafkaexporter/go.sum index 185cdb3a01e2..6979ba924933 100644 --- a/exporter/kafkaexporter/go.sum +++ b/exporter/kafkaexporter/go.sum @@ -2,8 +2,8 @@ github.com/IBM/sarama v1.43.1 h1:Z5uz65Px7f4DhI/jQqEm/tV9t8aU+JUdTyW/K/fCXpA= github.com/IBM/sarama v1.43.1/go.mod h1:GG5q1RURtDNPz8xxJs3mgX6Ytak8Z9eLhAkJPObe2xE= github.com/apache/thrift v0.19.0 h1:sOqkWPzMj7w6XaYbJQG7m4sGqVolaW/0D28Ln7yPzMk= github.com/apache/thrift v0.19.0/go.mod h1:SUALL216IiaOw2Oy+5Vs9lboJ/t9g40C+G07Dc0QC1I= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= diff --git a/exporter/loadbalancingexporter/go.mod b/exporter/loadbalancingexporter/go.mod index 23bd30644f4d..1b34b2605980 100644 --- a/exporter/loadbalancingexporter/go.mod +++ b/exporter/loadbalancingexporter/go.mod @@ -3,8 +3,8 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/exporter/loadba go 1.21 require ( - github.com/aws/aws-sdk-go-v2/config v1.27.10 - github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.4 + github.com/aws/aws-sdk-go-v2/config v1.27.11 + github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.5 github.com/aws/smithy-go v1.20.2 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/batchpersignal v0.97.0 github.com/stretchr/testify v1.9.0 @@ -31,14 +31,14 @@ require ( require ( github.com/aws/aws-sdk-go-v2 v1.26.1 // indirect - github.com/aws/aws-sdk-go-v2/credentials v1.17.10 // indirect + github.com/aws/aws-sdk-go-v2/credentials v1.17.11 // indirect github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 // indirect github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 // indirect github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.5 // indirect github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 // indirect github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7 // indirect - github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 // indirect + github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 // indirect github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 // indirect github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 // indirect github.com/beorn7/perks v1.0.1 // indirect diff --git a/exporter/loadbalancingexporter/go.sum b/exporter/loadbalancingexporter/go.sum index 7dfb3f861bc8..b13716109d2c 100644 --- a/exporter/loadbalancingexporter/go.sum +++ b/exporter/loadbalancingexporter/go.sum @@ -2,10 +2,10 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMT github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/aws/aws-sdk-go-v2 v1.26.1 h1:5554eUqIYVWpU0YmeeYZ0wU64H2VLBs8TlhRB2L+EkA= github.com/aws/aws-sdk-go-v2 v1.26.1/go.mod h1:ffIFB97e2yNsv4aTSGkqtHnppsIJzw7G7BReUZ3jCXM= -github.com/aws/aws-sdk-go-v2/config v1.27.10 h1:PS+65jThT0T/snC5WjyfHHyUgG+eBoupSDV+f838cro= -github.com/aws/aws-sdk-go-v2/config v1.27.10/go.mod h1:BePM7Vo4OBpHreKRUMuDXX+/+JWP38FLkzl5m27/Jjs= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10 h1:qDZ3EA2lv1KangvQB6y258OssCHD0xvaGiEDkG4X/10= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10/go.mod h1:6t3sucOaYDwDssHQa0ojH1RpmVmF5/jArkye1b2FKMI= +github.com/aws/aws-sdk-go-v2/config v1.27.11 h1:f47rANd2LQEYHda2ddSCKYId18/8BhSRM4BULGmfgNA= +github.com/aws/aws-sdk-go-v2/config v1.27.11/go.mod h1:SMsV78RIOYdve1vf36z8LmnszlRWkwMQtomCAI0/mIE= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11 h1:YuIB1dJNf1Re822rriUOTxopaHHvIq0l/pX3fwO+Tzs= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11/go.mod h1:AQtFPsDH9bI2O+71anW6EKL+NcD7LG3dpKGMV4SShgo= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 h1:FVJ0r5XTHSmIHJV6KuDmdYhEpvlHpiSd38RQWhut5J4= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1/go.mod h1:zusuAeqezXzAB24LGuzuekqMAEgWkVYukBec3kr3jUg= github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 h1:aw39xVGeRWlWx9EzGVnhOR4yOjQDHPQ6o6NmBlscyQg= @@ -18,10 +18,10 @@ github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 h1:Ji0DY1x github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2/go.mod h1:5CsjAbs3NlGQyZNFACh+zztPDI7fU6eW9QsxjfnuBKg= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7 h1:ogRAwT1/gxJBcSWDMZlgyFUM962F51A5CRhDLbxLdmo= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7/go.mod h1:YCsIZhXfRPLFFCl5xxY+1T9RKzOKjCut+28JSX2DnAk= -github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.4 h1:NkeK09CJZcPwQZicMNObg+/DgZW9h/ib6I9VDETfSiQ= -github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.4/go.mod h1:3pzLFJnbjkymz6RdZ963DuvMR9rzrKMXrlbteSk4Sxc= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 h1:WzFol5Cd+yDxPAdnzTA5LmpHYSWinhmSj4rQChV0ee8= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= +github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.5 h1:a3nFS1TFNTH9TVizItnHz3BgPCk5/7ygrZQZAoUV3GA= +github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.5/go.mod h1:3pzLFJnbjkymz6RdZ963DuvMR9rzrKMXrlbteSk4Sxc= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 h1:vN8hEbpRnL7+Hopy9dzmRle1xmDc7o8tmY0klsr175w= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 h1:Jux+gDDyi1Lruk+KHF91tK2KCuY61kzoCpvtvJJBtOE= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4/go.mod h1:mUYPBhaF2lGiukDEjJX2BLRRKTmoUSitGDUgM4tRxak= github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 h1:cwIxeBttqPN3qkaAjcEcsh8NYr8n2HZPkcKgPAi1phU= diff --git a/extension/awsproxy/go.mod b/extension/awsproxy/go.mod index fd4f08044b0c..37782df057e0 100644 --- a/extension/awsproxy/go.mod +++ b/extension/awsproxy/go.mod @@ -17,7 +17,7 @@ require ( ) require ( - github.com/aws/aws-sdk-go v1.51.13 // indirect + github.com/aws/aws-sdk-go v1.51.17 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect diff --git a/extension/awsproxy/go.sum b/extension/awsproxy/go.sum index 760df45a975f..d12010f7e374 100644 --- a/extension/awsproxy/go.sum +++ b/extension/awsproxy/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= diff --git a/extension/observer/ecsobserver/go.mod b/extension/observer/ecsobserver/go.mod index 2adb9a034114..565271d7f6c3 100644 --- a/extension/observer/ecsobserver/go.mod +++ b/extension/observer/ecsobserver/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/extension/obser go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/hashicorp/golang-lru v1.0.2 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/extension/observer/ecsobserver/go.sum b/extension/observer/ecsobserver/go.sum index 0d4ae2b75b04..b358319103c7 100644 --- a/extension/observer/ecsobserver/go.sum +++ b/extension/observer/ecsobserver/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= diff --git a/extension/sigv4authextension/go.mod b/extension/sigv4authextension/go.mod index cb8b8168f5e8..98bfb16809cd 100644 --- a/extension/sigv4authextension/go.mod +++ b/extension/sigv4authextension/go.mod @@ -4,8 +4,8 @@ go 1.21 require ( github.com/aws/aws-sdk-go-v2 v1.26.1 - github.com/aws/aws-sdk-go-v2/config v1.27.10 - github.com/aws/aws-sdk-go-v2/credentials v1.17.10 + github.com/aws/aws-sdk-go-v2/config v1.27.11 + github.com/aws/aws-sdk-go-v2/credentials v1.17.11 github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b @@ -25,7 +25,7 @@ require ( github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 // indirect github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7 // indirect - github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 // indirect + github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 // indirect github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 // indirect github.com/aws/smithy-go v1.20.2 // indirect github.com/beorn7/perks v1.0.1 // indirect diff --git a/extension/sigv4authextension/go.sum b/extension/sigv4authextension/go.sum index be0b77fc43f0..408410c8852c 100644 --- a/extension/sigv4authextension/go.sum +++ b/extension/sigv4authextension/go.sum @@ -1,9 +1,9 @@ github.com/aws/aws-sdk-go-v2 v1.26.1 h1:5554eUqIYVWpU0YmeeYZ0wU64H2VLBs8TlhRB2L+EkA= github.com/aws/aws-sdk-go-v2 v1.26.1/go.mod h1:ffIFB97e2yNsv4aTSGkqtHnppsIJzw7G7BReUZ3jCXM= -github.com/aws/aws-sdk-go-v2/config v1.27.10 h1:PS+65jThT0T/snC5WjyfHHyUgG+eBoupSDV+f838cro= -github.com/aws/aws-sdk-go-v2/config v1.27.10/go.mod h1:BePM7Vo4OBpHreKRUMuDXX+/+JWP38FLkzl5m27/Jjs= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10 h1:qDZ3EA2lv1KangvQB6y258OssCHD0xvaGiEDkG4X/10= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10/go.mod h1:6t3sucOaYDwDssHQa0ojH1RpmVmF5/jArkye1b2FKMI= +github.com/aws/aws-sdk-go-v2/config v1.27.11 h1:f47rANd2LQEYHda2ddSCKYId18/8BhSRM4BULGmfgNA= +github.com/aws/aws-sdk-go-v2/config v1.27.11/go.mod h1:SMsV78RIOYdve1vf36z8LmnszlRWkwMQtomCAI0/mIE= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11 h1:YuIB1dJNf1Re822rriUOTxopaHHvIq0l/pX3fwO+Tzs= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11/go.mod h1:AQtFPsDH9bI2O+71anW6EKL+NcD7LG3dpKGMV4SShgo= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 h1:FVJ0r5XTHSmIHJV6KuDmdYhEpvlHpiSd38RQWhut5J4= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1/go.mod h1:zusuAeqezXzAB24LGuzuekqMAEgWkVYukBec3kr3jUg= github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 h1:aw39xVGeRWlWx9EzGVnhOR4yOjQDHPQ6o6NmBlscyQg= @@ -16,8 +16,8 @@ github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 h1:Ji0DY1x github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2/go.mod h1:5CsjAbs3NlGQyZNFACh+zztPDI7fU6eW9QsxjfnuBKg= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7 h1:ogRAwT1/gxJBcSWDMZlgyFUM962F51A5CRhDLbxLdmo= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7/go.mod h1:YCsIZhXfRPLFFCl5xxY+1T9RKzOKjCut+28JSX2DnAk= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 h1:WzFol5Cd+yDxPAdnzTA5LmpHYSWinhmSj4rQChV0ee8= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 h1:vN8hEbpRnL7+Hopy9dzmRle1xmDc7o8tmY0klsr175w= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 h1:Jux+gDDyi1Lruk+KHF91tK2KCuY61kzoCpvtvJJBtOE= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4/go.mod h1:mUYPBhaF2lGiukDEjJX2BLRRKTmoUSitGDUgM4tRxak= github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 h1:cwIxeBttqPN3qkaAjcEcsh8NYr8n2HZPkcKgPAi1phU= diff --git a/go.mod b/go.mod index 8ff9a4a0fb3d..88a9f157ddba 100644 --- a/go.mod +++ b/go.mod @@ -279,11 +279,11 @@ require ( github.com/apache/thrift v0.20.0 // indirect github.com/ardielle/ardielle-go v1.5.2 // indirect github.com/armon/go-metrics v0.4.1 // indirect - github.com/aws/aws-sdk-go v1.51.13 // indirect + github.com/aws/aws-sdk-go v1.51.17 // indirect github.com/aws/aws-sdk-go-v2 v1.26.1 // indirect github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 // indirect - github.com/aws/aws-sdk-go-v2/config v1.27.10 // indirect - github.com/aws/aws-sdk-go-v2/credentials v1.17.10 // indirect + github.com/aws/aws-sdk-go-v2/config v1.27.11 // indirect + github.com/aws/aws-sdk-go-v2/credentials v1.17.11 // indirect github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 // indirect github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.59 // indirect github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 // indirect @@ -296,8 +296,8 @@ require ( github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.14.0 // indirect github.com/aws/aws-sdk-go-v2/service/kinesis v1.27.4 // indirect github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0 // indirect - github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.4 // indirect - github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 // indirect + github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.5 // indirect + github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 // indirect github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 // indirect github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 // indirect github.com/aws/smithy-go v1.20.2 // indirect diff --git a/go.sum b/go.sum index 0e9ab87fe90b..b118351aeae8 100644 --- a/go.sum +++ b/go.sum @@ -335,8 +335,8 @@ github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN github.com/aws/aws-sdk-go v1.32.6/go.mod h1:5zCpMtNQVjRREroY7sYe8lOMRSxkhG6MZveU8YkpAk0= github.com/aws/aws-sdk-go v1.38.35/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= github.com/aws/aws-sdk-go v1.44.263/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= github.com/aws/aws-sdk-go-v2 v1.17.7/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= github.com/aws/aws-sdk-go-v2 v1.18.0/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= @@ -347,12 +347,12 @@ github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 h1:x6xsQXGSmW6frevw github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2/go.mod h1:lPprDr1e6cJdyYeGXnRaJoP4Md+cDBvi2eOj00BlGmg= github.com/aws/aws-sdk-go-v2/config v1.18.19/go.mod h1:XvTmGMY8d52ougvakOv1RpiTLPz9dlG/OQHsKU/cMmY= github.com/aws/aws-sdk-go-v2/config v1.18.25/go.mod h1:dZnYpD5wTW/dQF0rRNLVypB396zWCcPiBIvdvSWHEg4= -github.com/aws/aws-sdk-go-v2/config v1.27.10 h1:PS+65jThT0T/snC5WjyfHHyUgG+eBoupSDV+f838cro= -github.com/aws/aws-sdk-go-v2/config v1.27.10/go.mod h1:BePM7Vo4OBpHreKRUMuDXX+/+JWP38FLkzl5m27/Jjs= +github.com/aws/aws-sdk-go-v2/config v1.27.11 h1:f47rANd2LQEYHda2ddSCKYId18/8BhSRM4BULGmfgNA= +github.com/aws/aws-sdk-go-v2/config v1.27.11/go.mod h1:SMsV78RIOYdve1vf36z8LmnszlRWkwMQtomCAI0/mIE= github.com/aws/aws-sdk-go-v2/credentials v1.13.18/go.mod h1:vnwlwjIe+3XJPBYKu1et30ZPABG3VaXJYr8ryohpIyM= github.com/aws/aws-sdk-go-v2/credentials v1.13.24/go.mod h1:jYPYi99wUOPIFi0rhiOvXeSEReVOzBqFNOX5bXYoG2o= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10 h1:qDZ3EA2lv1KangvQB6y258OssCHD0xvaGiEDkG4X/10= -github.com/aws/aws-sdk-go-v2/credentials v1.17.10/go.mod h1:6t3sucOaYDwDssHQa0ojH1RpmVmF5/jArkye1b2FKMI= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11 h1:YuIB1dJNf1Re822rriUOTxopaHHvIq0l/pX3fwO+Tzs= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11/go.mod h1:AQtFPsDH9bI2O+71anW6EKL+NcD7LG3dpKGMV4SShgo= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.1/go.mod h1:lfUx8puBRdM5lVVMQlwt2v+ofiG/X6Ms+dy0UkG/kXw= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.3/go.mod h1:4Q0UFP0YJf0NrsEuEYHpM9fTSEVnD16Z3uyEF7J9JGM= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 h1:FVJ0r5XTHSmIHJV6KuDmdYhEpvlHpiSd38RQWhut5J4= @@ -388,12 +388,12 @@ github.com/aws/aws-sdk-go-v2/service/kinesis v1.27.4 h1:Oe8awBiS/iitcsRJB5+DHa3i github.com/aws/aws-sdk-go-v2/service/kinesis v1.27.4/go.mod h1:RCZCSFbieSgNG1RKegO26opXV4EXyef/vNBVJsUyHuw= github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0 h1:B1G2pSPvbAtQjilPq+Y7jLIzCOwKzuVEl+aBBaNG0AQ= github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0/go.mod h1:ncltU6n4Nof5uJttDtcNQ537uNuwYqsZZQcpkd2/GUQ= -github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.4 h1:NkeK09CJZcPwQZicMNObg+/DgZW9h/ib6I9VDETfSiQ= -github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.4/go.mod h1:3pzLFJnbjkymz6RdZ963DuvMR9rzrKMXrlbteSk4Sxc= +github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.5 h1:a3nFS1TFNTH9TVizItnHz3BgPCk5/7ygrZQZAoUV3GA= +github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.29.5/go.mod h1:3pzLFJnbjkymz6RdZ963DuvMR9rzrKMXrlbteSk4Sxc= github.com/aws/aws-sdk-go-v2/service/sso v1.12.6/go.mod h1:Y1VOmit/Fn6Tz1uFAeCO6Q7M2fmfXSCLeL5INVYsLuY= github.com/aws/aws-sdk-go-v2/service/sso v1.12.10/go.mod h1:ouy2P4z6sJN70fR3ka3wD3Ro3KezSxU6eKGQI2+2fjI= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 h1:WzFol5Cd+yDxPAdnzTA5LmpHYSWinhmSj4rQChV0ee8= -github.com/aws/aws-sdk-go-v2/service/sso v1.20.4/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 h1:vN8hEbpRnL7+Hopy9dzmRle1xmDc7o8tmY0klsr175w= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.6/go.mod h1:Lh/bc9XUf8CfOY6Jp5aIkQtN+j1mc+nExc+KXj9jx2s= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.10/go.mod h1:AFvkxc8xfBe8XA+5St5XIHHrQQtkxqrRincx4hmMHOk= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 h1:Jux+gDDyi1Lruk+KHF91tK2KCuY61kzoCpvtvJJBtOE= diff --git a/internal/aws/awsutil/go.mod b/internal/aws/awsutil/go.mod index d6a073f2710d..88ab8e63057c 100644 --- a/internal/aws/awsutil/go.mod +++ b/internal/aws/awsutil/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/aw go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/stretchr/testify v1.9.0 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 diff --git a/internal/aws/awsutil/go.sum b/internal/aws/awsutil/go.sum index 26214d1885c3..24f0457fabc4 100644 --- a/internal/aws/awsutil/go.sum +++ b/internal/aws/awsutil/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/internal/aws/cwlogs/go.mod b/internal/aws/cwlogs/go.mod index f5895c57a41d..3c41b3b74d8d 100644 --- a/internal/aws/cwlogs/go.mod +++ b/internal/aws/cwlogs/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/cw go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b go.uber.org/goleak v1.3.0 diff --git a/internal/aws/cwlogs/go.sum b/internal/aws/cwlogs/go.sum index 16d3eabf8935..0f1cd1b141a1 100644 --- a/internal/aws/cwlogs/go.sum +++ b/internal/aws/cwlogs/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/internal/aws/k8s/go.mod b/internal/aws/k8s/go.mod index aec736054b7d..5b7459da747e 100644 --- a/internal/aws/k8s/go.mod +++ b/internal/aws/k8s/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/k8 go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/stretchr/testify v1.9.0 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 diff --git a/internal/aws/k8s/go.sum b/internal/aws/k8s/go.sum index 1062e7164aee..8f0701bb6b2d 100644 --- a/internal/aws/k8s/go.sum +++ b/internal/aws/k8s/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/internal/aws/proxy/go.mod b/internal/aws/proxy/go.mod index e73c368cdea4..bb4dd9fa7cd4 100644 --- a/internal/aws/proxy/go.mod +++ b/internal/aws/proxy/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/pr go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/internal/aws/proxy/go.sum b/internal/aws/proxy/go.sum index 56ce2e60b9f9..102855eac505 100644 --- a/internal/aws/proxy/go.sum +++ b/internal/aws/proxy/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/internal/aws/xray/go.mod b/internal/aws/xray/go.mod index b735cd69d39e..22e8470ddeb0 100644 --- a/internal/aws/xray/go.mod +++ b/internal/aws/xray/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/xr go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/awsutil v0.97.0 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/internal/aws/xray/go.sum b/internal/aws/xray/go.sum index 88d62e686325..80e7fd4ccb18 100644 --- a/internal/aws/xray/go.sum +++ b/internal/aws/xray/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/internal/aws/xray/testdata/sampleapp/go.mod b/internal/aws/xray/testdata/sampleapp/go.mod index dd53c405ba97..2d624bce85e3 100644 --- a/internal/aws/xray/testdata/sampleapp/go.mod +++ b/internal/aws/xray/testdata/sampleapp/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/xr go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/aws/aws-xray-sdk-go v1.8.3 ) diff --git a/internal/aws/xray/testdata/sampleapp/go.sum b/internal/aws/xray/testdata/sampleapp/go.sum index c73ed0f4f230..4bbda2aa0e1e 100644 --- a/internal/aws/xray/testdata/sampleapp/go.sum +++ b/internal/aws/xray/testdata/sampleapp/go.sum @@ -2,8 +2,8 @@ github.com/DATA-DOG/go-sqlmock v1.4.1 h1:ThlnYciV1iM/V0OSF/dtkqWb6xo5qITT1TJBG1M github.com/DATA-DOG/go-sqlmock v1.4.1/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= github.com/andybalholm/brotli v1.0.6 h1:Yf9fFpf49Zrxb9NlQaluyE92/+X7UVHlhMNJN2sxfOI= github.com/andybalholm/brotli v1.0.6/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/aws/aws-xray-sdk-go v1.8.3 h1:S8GdgVncBRhzbNnNUgTPwhEqhwt2alES/9rLASyhxjU= github.com/aws/aws-xray-sdk-go v1.8.3/go.mod h1:tv8uLMOSCABolrIF8YCcp3ghyswArsan8dfLCA1ZATk= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/internal/kafka/go.mod b/internal/kafka/go.mod index c29d9be1e4ed..ffcc75091bdc 100644 --- a/internal/kafka/go.mod +++ b/internal/kafka/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/IBM/sarama v1.43.1 - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/stretchr/testify v1.9.0 github.com/xdg-go/scram v1.1.2 go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/internal/kafka/go.sum b/internal/kafka/go.sum index a5b8ea6ef64f..1c4b87ed1b80 100644 --- a/internal/kafka/go.sum +++ b/internal/kafka/go.sum @@ -1,7 +1,7 @@ github.com/IBM/sarama v1.43.1 h1:Z5uz65Px7f4DhI/jQqEm/tV9t8aU+JUdTyW/K/fCXpA= github.com/IBM/sarama v1.43.1/go.mod h1:GG5q1RURtDNPz8xxJs3mgX6Ytak8Z9eLhAkJPObe2xE= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/internal/metadataproviders/go.mod b/internal/metadataproviders/go.mod index e02ed3004f68..9e5fbeef5c9b 100644 --- a/internal/metadataproviders/go.mod +++ b/internal/metadataproviders/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/Showmax/go-fqdn v1.0.0 - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/docker/docker v25.0.5+incompatible github.com/hashicorp/consul/api v1.28.2 github.com/open-telemetry/opentelemetry-collector-contrib/internal/k8sconfig v0.97.0 diff --git a/internal/metadataproviders/go.sum b/internal/metadataproviders/go.sum index 21cfba99073d..38bab2a37faf 100644 --- a/internal/metadataproviders/go.sum +++ b/internal/metadataproviders/go.sum @@ -51,8 +51,8 @@ github.com/armon/go-metrics v0.4.1/go.mod h1:E6amYzXo6aW1tqzoZGT755KkbgrJsSdpwZ+ github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= diff --git a/processor/resourcedetectionprocessor/go.mod b/processor/resourcedetectionprocessor/go.mod index cb463f1dd4e4..e70decb2c373 100644 --- a/processor/resourcedetectionprocessor/go.mod +++ b/processor/resourcedetectionprocessor/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( cloud.google.com/go/compute/metadata v0.2.3 github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.22.0 - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/google/go-cmp v0.6.0 github.com/hashicorp/consul/api v1.28.2 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/ecsutil v0.97.0 diff --git a/processor/resourcedetectionprocessor/go.sum b/processor/resourcedetectionprocessor/go.sum index 1735d5948eda..2c8c659a5e9b 100644 --- a/processor/resourcedetectionprocessor/go.sum +++ b/processor/resourcedetectionprocessor/go.sum @@ -57,8 +57,8 @@ github.com/armon/go-metrics v0.4.1/go.mod h1:E6amYzXo6aW1tqzoZGT755KkbgrJsSdpwZ+ github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= diff --git a/receiver/awscloudwatchreceiver/go.mod b/receiver/awscloudwatchreceiver/go.mod index a71ac24dfbf5..bec781c6a860 100644 --- a/receiver/awscloudwatchreceiver/go.mod +++ b/receiver/awscloudwatchreceiver/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awsclo go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 diff --git a/receiver/awscloudwatchreceiver/go.sum b/receiver/awscloudwatchreceiver/go.sum index 1bf06490f4b3..daca85b1949b 100644 --- a/receiver/awscloudwatchreceiver/go.sum +++ b/receiver/awscloudwatchreceiver/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= diff --git a/receiver/awscontainerinsightreceiver/go.mod b/receiver/awscontainerinsightreceiver/go.mod index e1d06f1b6902..d00c87886cc6 100644 --- a/receiver/awscontainerinsightreceiver/go.mod +++ b/receiver/awscontainerinsightreceiver/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awscon go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/google/cadvisor v0.49.1 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/awsutil v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/containerinsight v0.97.0 diff --git a/receiver/awscontainerinsightreceiver/go.sum b/receiver/awscontainerinsightreceiver/go.sum index bd1a60245716..337623cc586a 100644 --- a/receiver/awscontainerinsightreceiver/go.sum +++ b/receiver/awscontainerinsightreceiver/go.sum @@ -38,8 +38,8 @@ github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb0 github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM= diff --git a/receiver/awsecscontainermetricsreceiver/go.mod b/receiver/awsecscontainermetricsreceiver/go.mod index 390e2c4063ba..4a59cef69a41 100644 --- a/receiver/awsecscontainermetricsreceiver/go.mod +++ b/receiver/awsecscontainermetricsreceiver/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awsecs go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/ecsutil v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 diff --git a/receiver/awsecscontainermetricsreceiver/go.sum b/receiver/awsecscontainermetricsreceiver/go.sum index 5963ad6ffc2f..10c37ffe6ae9 100644 --- a/receiver/awsecscontainermetricsreceiver/go.sum +++ b/receiver/awsecscontainermetricsreceiver/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= diff --git a/receiver/awsxrayreceiver/go.mod b/receiver/awsxrayreceiver/go.mod index 6c2f4075b4d8..050c4906aa17 100644 --- a/receiver/awsxrayreceiver/go.mod +++ b/receiver/awsxrayreceiver/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awsxra go 1.21 require ( - github.com/aws/aws-sdk-go v1.51.13 + github.com/aws/aws-sdk-go v1.51.17 github.com/google/go-cmp v0.6.0 github.com/google/uuid v1.6.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/proxy v0.97.0 diff --git a/receiver/awsxrayreceiver/go.sum b/receiver/awsxrayreceiver/go.sum index 02dc065a5926..e205f07a057d 100644 --- a/receiver/awsxrayreceiver/go.sum +++ b/receiver/awsxrayreceiver/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= diff --git a/receiver/kafkametricsreceiver/go.mod b/receiver/kafkametricsreceiver/go.mod index 0c0eaa537654..01c4ae047f35 100644 --- a/receiver/kafkametricsreceiver/go.mod +++ b/receiver/kafkametricsreceiver/go.mod @@ -21,7 +21,7 @@ require ( ) require ( - github.com/aws/aws-sdk-go v1.51.13 // indirect + github.com/aws/aws-sdk-go v1.51.17 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect diff --git a/receiver/kafkametricsreceiver/go.sum b/receiver/kafkametricsreceiver/go.sum index b1e5ee3c5c9a..448f2b146994 100644 --- a/receiver/kafkametricsreceiver/go.sum +++ b/receiver/kafkametricsreceiver/go.sum @@ -1,7 +1,7 @@ github.com/IBM/sarama v1.43.1 h1:Z5uz65Px7f4DhI/jQqEm/tV9t8aU+JUdTyW/K/fCXpA= github.com/IBM/sarama v1.43.1/go.mod h1:GG5q1RURtDNPz8xxJs3mgX6Ytak8Z9eLhAkJPObe2xE= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= diff --git a/receiver/kafkareceiver/go.mod b/receiver/kafkareceiver/go.mod index fa4688a2f714..08499c6458cd 100644 --- a/receiver/kafkareceiver/go.mod +++ b/receiver/kafkareceiver/go.mod @@ -31,7 +31,7 @@ require ( ) require ( - github.com/aws/aws-sdk-go v1.51.13 // indirect + github.com/aws/aws-sdk-go v1.51.17 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect diff --git a/receiver/kafkareceiver/go.sum b/receiver/kafkareceiver/go.sum index 8c88561324a5..a74eea946954 100644 --- a/receiver/kafkareceiver/go.sum +++ b/receiver/kafkareceiver/go.sum @@ -4,8 +4,8 @@ github.com/IBM/sarama v1.43.1 h1:Z5uz65Px7f4DhI/jQqEm/tV9t8aU+JUdTyW/K/fCXpA= github.com/IBM/sarama v1.43.1/go.mod h1:GG5q1RURtDNPz8xxJs3mgX6Ytak8Z9eLhAkJPObe2xE= github.com/apache/thrift v0.20.0 h1:631+KvYbsBZxmuJjYwhezVsrfc/TbqtZV4QcxOX1fOI= github.com/apache/thrift v0.20.0/go.mod h1:hOk1BQqcp2OLzGsyVXdfMk7YFlMxK3aoEVhjD06QhB8= -github.com/aws/aws-sdk-go v1.51.13 h1:j6lgtz9E/XFRiYYnGNrAfWvyyTsuYvWvo2RCt0zqAIs= -github.com/aws/aws-sdk-go v1.51.13/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuWU= +github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= From fd18547db5a0ab59c15b1f91c2ec3d4e0fcf83b2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 11:26:45 +0200 Subject: [PATCH 03/21] Update All github.com/datadog packages (#32233) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/DataDog/agent-payload/v5](https://togithub.com/DataDog/agent-payload) | `v5.0.104` -> `v5.0.111` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fagent-payload%2fv5/v5.0.111?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fDataDog%2fagent-payload%2fv5/v5.0.111?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fDataDog%2fagent-payload%2fv5/v5.0.104/v5.0.111?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fagent-payload%2fv5/v5.0.104/v5.0.111?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/DataDog/datadog-api-client-go/v2](https://togithub.com/DataDog/datadog-api-client-go) | `v2.22.0` -> `v2.24.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-api-client-go%2fv2/v2.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fDataDog%2fdatadog-api-client-go%2fv2/v2.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fDataDog%2fdatadog-api-client-go%2fv2/v2.22.0/v2.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-api-client-go%2fv2/v2.22.0/v2.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes
DataDog/agent-payload (github.com/DataDog/agent-payload/v5) ### [`v5.0.111`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.111): [CWS] Udpate the CWS proto for the security profiles sliding window purpose [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.110...v5.0.111) This new proto version update the security profile proto, deprecating some fields and adding the version contexts PR needed for the [related work on security profile sliding window](https://togithub.com/DataDog/datadog-agent/pull/20506) #### What's Changed - \[CWS] Udpate the CWS proto for the security profiles sliding window purpose by [@​spikat](https://togithub.com/spikat) in [https://github.com/DataDog/agent-payload/pull/292](https://togithub.com/DataDog/agent-payload/pull/292) #### New Contributors - [@​spikat](https://togithub.com/spikat) made their first contribution in [https://github.com/DataDog/agent-payload/pull/292](https://togithub.com/DataDog/agent-payload/pull/292) **Full Changelog**: https://github.com/DataDog/agent-payload/compare/v5.0.110...v5.0.111 ### [`v5.0.110`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.110) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.109...v5.0.110) #### What's Changed - add TypeCollectorECSTask by [@​kangyili](https://togithub.com/kangyili) in [https://github.com/DataDog/agent-payload/pull/296](https://togithub.com/DataDog/agent-payload/pull/296) **Full Changelog**: https://github.com/DataDog/agent-payload/compare/v5.0.109...v5.0.110 ### [`v5.0.109`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.109) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.108...v5.0.109) #### What's Changed - cronjob status: add lastSuccessfultime by [@​aureleoules](https://togithub.com/aureleoules) in [https://github.com/DataDog/agent-payload/pull/295](https://togithub.com/DataDog/agent-payload/pull/295) **Full Changelog**: https://github.com/DataDog/agent-payload/compare/v5.0.108...v5.0.109 ### [`v5.0.108`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.108) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.107...v5.0.108) #### What's Changed - Add repo digest field to container payload by [@​badovm](https://togithub.com/badovm) in [https://github.com/DataDog/agent-payload/pull/293](https://togithub.com/DataDog/agent-payload/pull/293) - ecs task lifecycle event by [@​kangyili](https://togithub.com/kangyili) in [https://github.com/DataDog/agent-payload/pull/282](https://togithub.com/DataDog/agent-payload/pull/282) - add ecs task payload by [@​kangyili](https://togithub.com/kangyili) in [https://github.com/DataDog/agent-payload/pull/281](https://togithub.com/DataDog/agent-payload/pull/281) #### New Contributors - [@​badovm](https://togithub.com/badovm) made their first contribution in [https://github.com/DataDog/agent-payload/pull/293](https://togithub.com/DataDog/agent-payload/pull/293) **Full Changelog**: https://github.com/DataDog/agent-payload/compare/v5.0.107...v5.0.108 ### [`v5.0.107`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.107) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.106...v5.0.107) **Full Changelog**: https://github.com/DataDog/agent-payload/compare/v5.0.106...v5.0.107 #### What's Changed - Add repo digest field to container payload by [@​badovm](https://togithub.com/badovm) in [https://github.com/DataDog/agent-payload/pull/293](https://togithub.com/DataDog/agent-payload/pull/293) #### New Contributors - [@​badovm](https://togithub.com/badovm) made their first contribution in [https://github.com/DataDog/agent-payload/pull/293](https://togithub.com/DataDog/agent-payload/pull/293) **Full Changelog**: https://github.com/DataDog/agent-payload/compare/v5.0.106...v5.0.107 ### [`v5.0.106`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.106) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.105...v5.0.106) #### What's Changed - Add TRACE HTTP method to process payload by [@​vitkyrka](https://togithub.com/vitkyrka) in [https://github.com/DataDog/agent-payload/pull/291](https://togithub.com/DataDog/agent-payload/pull/291) #### New Contributors - [@​vitkyrka](https://togithub.com/vitkyrka) made their first contribution in [https://github.com/DataDog/agent-payload/pull/291](https://togithub.com/DataDog/agent-payload/pull/291) **Full Changelog**: https://github.com/DataDog/agent-payload/compare/v5.0.105...v5.0.106 ### [`v5.0.105`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.105) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.104...v5.0.105) #### What's Changed - Add NetworkPolicy protobuf definition by [@​aureleoules](https://togithub.com/aureleoules) in [https://github.com/DataDog/agent-payload/pull/290](https://togithub.com/DataDog/agent-payload/pull/290) #### New Contributors - [@​aureleoules](https://togithub.com/aureleoules) made their first contribution in [https://github.com/DataDog/agent-payload/pull/290](https://togithub.com/DataDog/agent-payload/pull/290) **Full Changelog**: https://github.com/DataDog/agent-payload/compare/v5.0.104...v5.0.105
DataDog/datadog-api-client-go (github.com/DataDog/datadog-api-client-go/v2) ### [`v2.24.0`](https://togithub.com/DataDog/datadog-api-client-go/releases/tag/v2.24.0) [Compare Source](https://togithub.com/DataDog/datadog-api-client-go/compare/v2.23.0...v2.24.0) ##### What's Changed ##### Fixed - Disable additionalProperties for Downtime Schedule UpdateRequest oneOfs by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2390](https://togithub.com/DataDog/datadog-api-client-go/pull/2390) - Fix ListServiceDefinitions pagination information by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2416](https://togithub.com/DataDog/datadog-api-client-go/pull/2416) ##### Added - Adds support for `ListMetricAssets` endpoint by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2404](https://togithub.com/DataDog/datadog-api-client-go/pull/2404) - Add support for new CRUD agent rules endpoints by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2410](https://togithub.com/DataDog/datadog-api-client-go/pull/2410) - Add documentation for workflow usage attribution by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2418](https://togithub.com/DataDog/datadog-api-client-go/pull/2418) - Add Custom Destinations Public API by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2422](https://togithub.com/DataDog/datadog-api-client-go/pull/2422) ##### Deprecated - Deprecate the pattern property for SDS Standard Pattern Attributes by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2411](https://togithub.com/DataDog/datadog-api-client-go/pull/2411) - Deprecate Incident Services endpoints by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2424](https://togithub.com/DataDog/datadog-api-client-go/pull/2424) ##### New Contributors - [@​antonio-ramadas-dd](https://togithub.com/antonio-ramadas-dd) made their first contribution in [https://github.com/DataDog/datadog-api-client-go/pull/2421](https://togithub.com/DataDog/datadog-api-client-go/pull/2421) **Full Changelog**: https://github.com/DataDog/datadog-api-client-go/compare/v2.23.0...v2.24.0 ### [`v2.23.0`](https://togithub.com/DataDog/datadog-api-client-go/releases/tag/v2.23.0) [Compare Source](https://togithub.com/DataDog/datadog-api-client-go/compare/v2.22.0...v2.23.0) #### What's Changed ##### Fixed - Move under common tag Case Management by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2385](https://togithub.com/DataDog/datadog-api-client-go/pull/2385) - Include user data with team membership resource by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2380](https://togithub.com/DataDog/datadog-api-client-go/pull/2380) ##### Added - Case Management Public API documentation by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2364](https://togithub.com/DataDog/datadog-api-client-go/pull/2364) - Make grpc steps available for synthetics api multisteps tests by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2384](https://togithub.com/DataDog/datadog-api-client-go/pull/2384) - Add cloud run filter to GCP v1 and v2 spec by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2361](https://togithub.com/DataDog/datadog-api-client-go/pull/2361) - add ASM serverless to usage metering API docs by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2393](https://togithub.com/DataDog/datadog-api-client-go/pull/2393) - Add new products to usage API docs by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2396](https://togithub.com/DataDog/datadog-api-client-go/pull/2396) ##### Changed - Update spec for DORA Metrics Incident endpoint by [@​api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2381](https://togithub.com/DataDog/datadog-api-client-go/pull/2381) **Full Changelog**: https://github.com/DataDog/datadog-api-client-go/compare/v2.22.0...v2.23.0
--- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- cmd/configschema/go.mod | 4 ++-- cmd/configschema/go.sum | 8 ++++---- cmd/otelcontribcol/go.mod | 4 ++-- cmd/otelcontribcol/go.sum | 8 ++++---- connector/datadogconnector/go.mod | 4 ++-- connector/datadogconnector/go.sum | 8 ++++---- exporter/datadogexporter/go.mod | 4 ++-- exporter/datadogexporter/go.sum | 8 ++++---- exporter/datadogexporter/integrationtest/go.mod | 4 ++-- exporter/datadogexporter/integrationtest/go.sum | 8 ++++---- go.mod | 4 ++-- go.sum | 8 ++++---- 12 files changed, 36 insertions(+), 36 deletions(-) diff --git a/cmd/configschema/go.mod b/cmd/configschema/go.mod index 509435981917..5f64faba4834 100644 --- a/cmd/configschema/go.mod +++ b/cmd/configschema/go.mod @@ -217,7 +217,7 @@ require ( github.com/ClickHouse/ch-go v0.61.5 // indirect github.com/ClickHouse/clickhouse-go/v2 v2.23.0 // indirect github.com/Code-Hex/go-generics-cache v1.3.1 // indirect - github.com/DataDog/agent-payload/v5 v5.0.104 // indirect + github.com/DataDog/agent-payload/v5 v5.0.111 // indirect github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/proto v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.52.1-0.20240321095122-a3c5dbb936ae // indirect @@ -226,7 +226,7 @@ require ( github.com/DataDog/datadog-agent/pkg/util/log v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae // indirect - github.com/DataDog/datadog-api-client-go/v2 v2.22.0 // indirect + github.com/DataDog/datadog-api-client-go/v2 v2.24.0 // indirect github.com/DataDog/datadog-go/v5 v5.5.0 // indirect github.com/DataDog/go-sqllexer v0.0.9 // indirect github.com/DataDog/go-tuf v1.0.2-0.5.2 // indirect diff --git a/cmd/configschema/go.sum b/cmd/configschema/go.sum index 1570c66d0124..e901653b58b1 100644 --- a/cmd/configschema/go.sum +++ b/cmd/configschema/go.sum @@ -161,8 +161,8 @@ github.com/Code-Hex/go-generics-cache v1.3.1 h1:i8rLwyhoyhaerr7JpjtYjJZUcCbWOdiY github.com/Code-Hex/go-generics-cache v1.3.1/go.mod h1:qxcC9kRVrct9rHeiYpFWSoW1vxyillCVzX13KZG8dl4= github.com/DATA-DOG/go-sqlmock v1.5.2 h1:OcvFkGmslmlZibjAjaHm3L//6LiuBgolP7OputlJIzU= github.com/DATA-DOG/go-sqlmock v1.5.2/go.mod h1:88MAG/4G7SMwSE3CeA0ZKzrT5CiOU3OJ+JlNzwDqpNU= -github.com/DataDog/agent-payload/v5 v5.0.104 h1:uxTIaLthyKB4CxBKe+2FeMgL6ca3KVxpeYxlJGNcoJg= -github.com/DataDog/agent-payload/v5 v5.0.104/go.mod h1:COngtbYYCncpIPiE5D93QlXDH/3VAKk10jDNwGHcMRE= +github.com/DataDog/agent-payload/v5 v5.0.111 h1:mM+4OBkXF9tjKV0VjwnNO5As9aKcNAEsagvKDSBaTyc= +github.com/DataDog/agent-payload/v5 v5.0.111/go.mod h1:COngtbYYCncpIPiE5D93QlXDH/3VAKk10jDNwGHcMRE= github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae h1:aVo1Uh2WQ8TvgbjqlbDvfP5AcUtnqXUUrc9pVP8MvKc= github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:AVPQWekk3h9AOC7+plBlNB68Sy6UIGFoMMVUDeSoNoI= github.com/DataDog/datadog-agent/pkg/proto v0.52.1-0.20240321095122-a3c5dbb936ae h1:b6lU79trCyadhkxhb51jXiqmZaHs1Z0fwWlWKFVCqJ4= @@ -179,8 +179,8 @@ github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5d github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:HgJEYNmnFTKIuBhWxYe1coqmzoJXMxQTfK+4wIG5G1Q= github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae h1:YZz6I8ym9P4MLytAdAJlafF3tgItgAGZrDqe4otbVUk= github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:EVETfdJCkqy0YEvSpQd9LZdcYQ7vrUomCm+bQ6h3lc4= -github.com/DataDog/datadog-api-client-go/v2 v2.22.0 h1:+DtWu4PjGxsJU8FESjPi7C2rTDMojNungejsIzNFe70= -github.com/DataDog/datadog-api-client-go/v2 v2.22.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= +github.com/DataDog/datadog-api-client-go/v2 v2.24.0 h1:7G+eyezFM8gHq5dOHcrQcGVxrXnwPqX2yYHxsLiq3iM= +github.com/DataDog/datadog-api-client-go/v2 v2.24.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/datadog-go/v5 v5.5.0 h1:G5KHeB8pWBNXT4Jtw0zAkhdxEAWSpWH00geHI6LDrKU= github.com/DataDog/datadog-go/v5 v5.5.0/go.mod h1:K9kcYBlxkcPP8tvvjZZKs/m1edNAUFzBbdpTUKfCsuw= diff --git a/cmd/otelcontribcol/go.mod b/cmd/otelcontribcol/go.mod index 43cee8ee3247..7a362d34e567 100644 --- a/cmd/otelcontribcol/go.mod +++ b/cmd/otelcontribcol/go.mod @@ -269,7 +269,7 @@ require ( github.com/ClickHouse/ch-go v0.61.5 // indirect github.com/ClickHouse/clickhouse-go/v2 v2.23.0 // indirect github.com/Code-Hex/go-generics-cache v1.3.1 // indirect - github.com/DataDog/agent-payload/v5 v5.0.104 // indirect + github.com/DataDog/agent-payload/v5 v5.0.111 // indirect github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/proto v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.52.1-0.20240321095122-a3c5dbb936ae // indirect @@ -278,7 +278,7 @@ require ( github.com/DataDog/datadog-agent/pkg/util/log v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae // indirect - github.com/DataDog/datadog-api-client-go/v2 v2.22.0 // indirect + github.com/DataDog/datadog-api-client-go/v2 v2.24.0 // indirect github.com/DataDog/datadog-go/v5 v5.5.0 // indirect github.com/DataDog/go-sqllexer v0.0.9 // indirect github.com/DataDog/go-tuf v1.0.2-0.5.2 // indirect diff --git a/cmd/otelcontribcol/go.sum b/cmd/otelcontribcol/go.sum index cd616b91ada3..aafe2df740dd 100644 --- a/cmd/otelcontribcol/go.sum +++ b/cmd/otelcontribcol/go.sum @@ -160,8 +160,8 @@ github.com/Code-Hex/go-generics-cache v1.3.1 h1:i8rLwyhoyhaerr7JpjtYjJZUcCbWOdiY github.com/Code-Hex/go-generics-cache v1.3.1/go.mod h1:qxcC9kRVrct9rHeiYpFWSoW1vxyillCVzX13KZG8dl4= github.com/DATA-DOG/go-sqlmock v1.5.2 h1:OcvFkGmslmlZibjAjaHm3L//6LiuBgolP7OputlJIzU= github.com/DATA-DOG/go-sqlmock v1.5.2/go.mod h1:88MAG/4G7SMwSE3CeA0ZKzrT5CiOU3OJ+JlNzwDqpNU= -github.com/DataDog/agent-payload/v5 v5.0.104 h1:uxTIaLthyKB4CxBKe+2FeMgL6ca3KVxpeYxlJGNcoJg= -github.com/DataDog/agent-payload/v5 v5.0.104/go.mod h1:COngtbYYCncpIPiE5D93QlXDH/3VAKk10jDNwGHcMRE= +github.com/DataDog/agent-payload/v5 v5.0.111 h1:mM+4OBkXF9tjKV0VjwnNO5As9aKcNAEsagvKDSBaTyc= +github.com/DataDog/agent-payload/v5 v5.0.111/go.mod h1:COngtbYYCncpIPiE5D93QlXDH/3VAKk10jDNwGHcMRE= github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae h1:aVo1Uh2WQ8TvgbjqlbDvfP5AcUtnqXUUrc9pVP8MvKc= github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:AVPQWekk3h9AOC7+plBlNB68Sy6UIGFoMMVUDeSoNoI= github.com/DataDog/datadog-agent/pkg/proto v0.52.1-0.20240321095122-a3c5dbb936ae h1:b6lU79trCyadhkxhb51jXiqmZaHs1Z0fwWlWKFVCqJ4= @@ -178,8 +178,8 @@ github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5d github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:HgJEYNmnFTKIuBhWxYe1coqmzoJXMxQTfK+4wIG5G1Q= github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae h1:YZz6I8ym9P4MLytAdAJlafF3tgItgAGZrDqe4otbVUk= github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:EVETfdJCkqy0YEvSpQd9LZdcYQ7vrUomCm+bQ6h3lc4= -github.com/DataDog/datadog-api-client-go/v2 v2.22.0 h1:+DtWu4PjGxsJU8FESjPi7C2rTDMojNungejsIzNFe70= -github.com/DataDog/datadog-api-client-go/v2 v2.22.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= +github.com/DataDog/datadog-api-client-go/v2 v2.24.0 h1:7G+eyezFM8gHq5dOHcrQcGVxrXnwPqX2yYHxsLiq3iM= +github.com/DataDog/datadog-api-client-go/v2 v2.24.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/datadog-go/v5 v5.5.0 h1:G5KHeB8pWBNXT4Jtw0zAkhdxEAWSpWH00geHI6LDrKU= github.com/DataDog/datadog-go/v5 v5.5.0/go.mod h1:K9kcYBlxkcPP8tvvjZZKs/m1edNAUFzBbdpTUKfCsuw= diff --git a/connector/datadogconnector/go.mod b/connector/datadogconnector/go.mod index 2a23773d2547..be6ceab0e5dc 100644 --- a/connector/datadogconnector/go.mod +++ b/connector/datadogconnector/go.mod @@ -35,14 +35,14 @@ require ( require ( cloud.google.com/go/compute v1.23.4 // indirect cloud.google.com/go/compute/metadata v0.2.4-0.20230617002413-005d2dfb6b68 // indirect - github.com/DataDog/agent-payload/v5 v5.0.104 // indirect + github.com/DataDog/agent-payload/v5 v5.0.111 // indirect github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/util/cgroups v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/util/log v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae // indirect - github.com/DataDog/datadog-api-client-go/v2 v2.22.0 // indirect + github.com/DataDog/datadog-api-client-go/v2 v2.24.0 // indirect github.com/DataDog/go-sqllexer v0.0.9 // indirect github.com/DataDog/go-tuf v1.0.2-0.5.2 // indirect github.com/DataDog/gohai v0.0.0-20230524154621-4316413895ee // indirect diff --git a/connector/datadogconnector/go.sum b/connector/datadogconnector/go.sum index 5521819ea448..49a5d1f17d42 100644 --- a/connector/datadogconnector/go.sum +++ b/connector/datadogconnector/go.sum @@ -48,8 +48,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03 github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/Code-Hex/go-generics-cache v1.3.1 h1:i8rLwyhoyhaerr7JpjtYjJZUcCbWOdiYO3fZXLiEC4g= github.com/Code-Hex/go-generics-cache v1.3.1/go.mod h1:qxcC9kRVrct9rHeiYpFWSoW1vxyillCVzX13KZG8dl4= -github.com/DataDog/agent-payload/v5 v5.0.104 h1:uxTIaLthyKB4CxBKe+2FeMgL6ca3KVxpeYxlJGNcoJg= -github.com/DataDog/agent-payload/v5 v5.0.104/go.mod h1:COngtbYYCncpIPiE5D93QlXDH/3VAKk10jDNwGHcMRE= +github.com/DataDog/agent-payload/v5 v5.0.111 h1:mM+4OBkXF9tjKV0VjwnNO5As9aKcNAEsagvKDSBaTyc= +github.com/DataDog/agent-payload/v5 v5.0.111/go.mod h1:COngtbYYCncpIPiE5D93QlXDH/3VAKk10jDNwGHcMRE= github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae h1:aVo1Uh2WQ8TvgbjqlbDvfP5AcUtnqXUUrc9pVP8MvKc= github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:AVPQWekk3h9AOC7+plBlNB68Sy6UIGFoMMVUDeSoNoI= github.com/DataDog/datadog-agent/pkg/proto v0.52.1-0.20240321095122-a3c5dbb936ae h1:b6lU79trCyadhkxhb51jXiqmZaHs1Z0fwWlWKFVCqJ4= @@ -66,8 +66,8 @@ github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5d github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:HgJEYNmnFTKIuBhWxYe1coqmzoJXMxQTfK+4wIG5G1Q= github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae h1:YZz6I8ym9P4MLytAdAJlafF3tgItgAGZrDqe4otbVUk= github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:EVETfdJCkqy0YEvSpQd9LZdcYQ7vrUomCm+bQ6h3lc4= -github.com/DataDog/datadog-api-client-go/v2 v2.22.0 h1:+DtWu4PjGxsJU8FESjPi7C2rTDMojNungejsIzNFe70= -github.com/DataDog/datadog-api-client-go/v2 v2.22.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= +github.com/DataDog/datadog-api-client-go/v2 v2.24.0 h1:7G+eyezFM8gHq5dOHcrQcGVxrXnwPqX2yYHxsLiq3iM= +github.com/DataDog/datadog-api-client-go/v2 v2.24.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= github.com/DataDog/datadog-go/v5 v5.5.0 h1:G5KHeB8pWBNXT4Jtw0zAkhdxEAWSpWH00geHI6LDrKU= github.com/DataDog/datadog-go/v5 v5.5.0/go.mod h1:K9kcYBlxkcPP8tvvjZZKs/m1edNAUFzBbdpTUKfCsuw= github.com/DataDog/go-sqllexer v0.0.9 h1:Cx2Cu1S0hfj4coCCA8hzjM9+UNFRkcu1avIV//RU5Qw= diff --git a/exporter/datadogexporter/go.mod b/exporter/datadogexporter/go.mod index fd45d6ef7465..a941e42388db 100644 --- a/exporter/datadogexporter/go.mod +++ b/exporter/datadogexporter/go.mod @@ -3,10 +3,10 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/exporter/datado go 1.21 require ( - github.com/DataDog/agent-payload/v5 v5.0.104 + github.com/DataDog/agent-payload/v5 v5.0.111 github.com/DataDog/datadog-agent/pkg/proto v0.52.1-0.20240321095122-a3c5dbb936ae github.com/DataDog/datadog-agent/pkg/trace v0.52.1-0.20240321095122-a3c5dbb936ae - github.com/DataDog/datadog-api-client-go/v2 v2.22.0 + github.com/DataDog/datadog-api-client-go/v2 v2.24.0 github.com/DataDog/datadog-go/v5 v5.5.0 github.com/DataDog/gohai v0.0.0-20230524154621-4316413895ee github.com/DataDog/opentelemetry-mapping-go/pkg/inframetadata v0.13.4 diff --git a/exporter/datadogexporter/go.sum b/exporter/datadogexporter/go.sum index 9aa9fdd1a1c8..fa708dda1a6f 100644 --- a/exporter/datadogexporter/go.sum +++ b/exporter/datadogexporter/go.sum @@ -66,8 +66,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03 github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/Code-Hex/go-generics-cache v1.3.1 h1:i8rLwyhoyhaerr7JpjtYjJZUcCbWOdiYO3fZXLiEC4g= github.com/Code-Hex/go-generics-cache v1.3.1/go.mod h1:qxcC9kRVrct9rHeiYpFWSoW1vxyillCVzX13KZG8dl4= -github.com/DataDog/agent-payload/v5 v5.0.104 h1:uxTIaLthyKB4CxBKe+2FeMgL6ca3KVxpeYxlJGNcoJg= -github.com/DataDog/agent-payload/v5 v5.0.104/go.mod h1:COngtbYYCncpIPiE5D93QlXDH/3VAKk10jDNwGHcMRE= +github.com/DataDog/agent-payload/v5 v5.0.111 h1:mM+4OBkXF9tjKV0VjwnNO5As9aKcNAEsagvKDSBaTyc= +github.com/DataDog/agent-payload/v5 v5.0.111/go.mod h1:COngtbYYCncpIPiE5D93QlXDH/3VAKk10jDNwGHcMRE= github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae h1:aVo1Uh2WQ8TvgbjqlbDvfP5AcUtnqXUUrc9pVP8MvKc= github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:AVPQWekk3h9AOC7+plBlNB68Sy6UIGFoMMVUDeSoNoI= github.com/DataDog/datadog-agent/pkg/proto v0.52.1-0.20240321095122-a3c5dbb936ae h1:b6lU79trCyadhkxhb51jXiqmZaHs1Z0fwWlWKFVCqJ4= @@ -84,8 +84,8 @@ github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5d github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:HgJEYNmnFTKIuBhWxYe1coqmzoJXMxQTfK+4wIG5G1Q= github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae h1:YZz6I8ym9P4MLytAdAJlafF3tgItgAGZrDqe4otbVUk= github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:EVETfdJCkqy0YEvSpQd9LZdcYQ7vrUomCm+bQ6h3lc4= -github.com/DataDog/datadog-api-client-go/v2 v2.22.0 h1:+DtWu4PjGxsJU8FESjPi7C2rTDMojNungejsIzNFe70= -github.com/DataDog/datadog-api-client-go/v2 v2.22.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= +github.com/DataDog/datadog-api-client-go/v2 v2.24.0 h1:7G+eyezFM8gHq5dOHcrQcGVxrXnwPqX2yYHxsLiq3iM= +github.com/DataDog/datadog-api-client-go/v2 v2.24.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/datadog-go/v5 v5.5.0 h1:G5KHeB8pWBNXT4Jtw0zAkhdxEAWSpWH00geHI6LDrKU= github.com/DataDog/datadog-go/v5 v5.5.0/go.mod h1:K9kcYBlxkcPP8tvvjZZKs/m1edNAUFzBbdpTUKfCsuw= diff --git a/exporter/datadogexporter/integrationtest/go.mod b/exporter/datadogexporter/integrationtest/go.mod index d8a8b15a2c73..c697490c0a30 100644 --- a/exporter/datadogexporter/integrationtest/go.mod +++ b/exporter/datadogexporter/integrationtest/go.mod @@ -30,7 +30,7 @@ require ( require ( cloud.google.com/go/compute v1.23.4 // indirect cloud.google.com/go/compute/metadata v0.2.4-0.20230617002413-005d2dfb6b68 // indirect - github.com/DataDog/agent-payload/v5 v5.0.104 // indirect + github.com/DataDog/agent-payload/v5 v5.0.111 // indirect github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/trace v0.52.1-0.20240321095122-a3c5dbb936ae // indirect @@ -38,7 +38,7 @@ require ( github.com/DataDog/datadog-agent/pkg/util/log v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae // indirect - github.com/DataDog/datadog-api-client-go/v2 v2.22.0 // indirect + github.com/DataDog/datadog-api-client-go/v2 v2.24.0 // indirect github.com/DataDog/datadog-go/v5 v5.5.0 // indirect github.com/DataDog/go-sqllexer v0.0.9 // indirect github.com/DataDog/go-tuf v1.0.2-0.5.2 // indirect diff --git a/exporter/datadogexporter/integrationtest/go.sum b/exporter/datadogexporter/integrationtest/go.sum index 5521819ea448..49a5d1f17d42 100644 --- a/exporter/datadogexporter/integrationtest/go.sum +++ b/exporter/datadogexporter/integrationtest/go.sum @@ -48,8 +48,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03 github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/Code-Hex/go-generics-cache v1.3.1 h1:i8rLwyhoyhaerr7JpjtYjJZUcCbWOdiYO3fZXLiEC4g= github.com/Code-Hex/go-generics-cache v1.3.1/go.mod h1:qxcC9kRVrct9rHeiYpFWSoW1vxyillCVzX13KZG8dl4= -github.com/DataDog/agent-payload/v5 v5.0.104 h1:uxTIaLthyKB4CxBKe+2FeMgL6ca3KVxpeYxlJGNcoJg= -github.com/DataDog/agent-payload/v5 v5.0.104/go.mod h1:COngtbYYCncpIPiE5D93QlXDH/3VAKk10jDNwGHcMRE= +github.com/DataDog/agent-payload/v5 v5.0.111 h1:mM+4OBkXF9tjKV0VjwnNO5As9aKcNAEsagvKDSBaTyc= +github.com/DataDog/agent-payload/v5 v5.0.111/go.mod h1:COngtbYYCncpIPiE5D93QlXDH/3VAKk10jDNwGHcMRE= github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae h1:aVo1Uh2WQ8TvgbjqlbDvfP5AcUtnqXUUrc9pVP8MvKc= github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:AVPQWekk3h9AOC7+plBlNB68Sy6UIGFoMMVUDeSoNoI= github.com/DataDog/datadog-agent/pkg/proto v0.52.1-0.20240321095122-a3c5dbb936ae h1:b6lU79trCyadhkxhb51jXiqmZaHs1Z0fwWlWKFVCqJ4= @@ -66,8 +66,8 @@ github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5d github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:HgJEYNmnFTKIuBhWxYe1coqmzoJXMxQTfK+4wIG5G1Q= github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae h1:YZz6I8ym9P4MLytAdAJlafF3tgItgAGZrDqe4otbVUk= github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:EVETfdJCkqy0YEvSpQd9LZdcYQ7vrUomCm+bQ6h3lc4= -github.com/DataDog/datadog-api-client-go/v2 v2.22.0 h1:+DtWu4PjGxsJU8FESjPi7C2rTDMojNungejsIzNFe70= -github.com/DataDog/datadog-api-client-go/v2 v2.22.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= +github.com/DataDog/datadog-api-client-go/v2 v2.24.0 h1:7G+eyezFM8gHq5dOHcrQcGVxrXnwPqX2yYHxsLiq3iM= +github.com/DataDog/datadog-api-client-go/v2 v2.24.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= github.com/DataDog/datadog-go/v5 v5.5.0 h1:G5KHeB8pWBNXT4Jtw0zAkhdxEAWSpWH00geHI6LDrKU= github.com/DataDog/datadog-go/v5 v5.5.0/go.mod h1:K9kcYBlxkcPP8tvvjZZKs/m1edNAUFzBbdpTUKfCsuw= github.com/DataDog/go-sqllexer v0.0.9 h1:Cx2Cu1S0hfj4coCCA8hzjM9+UNFRkcu1avIV//RU5Qw= diff --git a/go.mod b/go.mod index 88a9f157ddba..c1403f530a4b 100644 --- a/go.mod +++ b/go.mod @@ -233,7 +233,7 @@ require ( github.com/ClickHouse/ch-go v0.61.5 // indirect github.com/ClickHouse/clickhouse-go/v2 v2.23.0 // indirect github.com/Code-Hex/go-generics-cache v1.3.1 // indirect - github.com/DataDog/agent-payload/v5 v5.0.104 // indirect + github.com/DataDog/agent-payload/v5 v5.0.111 // indirect github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/proto v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.52.1-0.20240321095122-a3c5dbb936ae // indirect @@ -242,7 +242,7 @@ require ( github.com/DataDog/datadog-agent/pkg/util/log v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5dbb936ae // indirect github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae // indirect - github.com/DataDog/datadog-api-client-go/v2 v2.22.0 // indirect + github.com/DataDog/datadog-api-client-go/v2 v2.24.0 // indirect github.com/DataDog/datadog-go/v5 v5.5.0 // indirect github.com/DataDog/go-sqllexer v0.0.9 // indirect github.com/DataDog/go-tuf v1.0.2-0.5.2 // indirect diff --git a/go.sum b/go.sum index b118351aeae8..a59eed2897f9 100644 --- a/go.sum +++ b/go.sum @@ -163,8 +163,8 @@ github.com/Code-Hex/go-generics-cache v1.3.1 h1:i8rLwyhoyhaerr7JpjtYjJZUcCbWOdiY github.com/Code-Hex/go-generics-cache v1.3.1/go.mod h1:qxcC9kRVrct9rHeiYpFWSoW1vxyillCVzX13KZG8dl4= github.com/DATA-DOG/go-sqlmock v1.5.2 h1:OcvFkGmslmlZibjAjaHm3L//6LiuBgolP7OputlJIzU= github.com/DATA-DOG/go-sqlmock v1.5.2/go.mod h1:88MAG/4G7SMwSE3CeA0ZKzrT5CiOU3OJ+JlNzwDqpNU= -github.com/DataDog/agent-payload/v5 v5.0.104 h1:uxTIaLthyKB4CxBKe+2FeMgL6ca3KVxpeYxlJGNcoJg= -github.com/DataDog/agent-payload/v5 v5.0.104/go.mod h1:COngtbYYCncpIPiE5D93QlXDH/3VAKk10jDNwGHcMRE= +github.com/DataDog/agent-payload/v5 v5.0.111 h1:mM+4OBkXF9tjKV0VjwnNO5As9aKcNAEsagvKDSBaTyc= +github.com/DataDog/agent-payload/v5 v5.0.111/go.mod h1:COngtbYYCncpIPiE5D93QlXDH/3VAKk10jDNwGHcMRE= github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae h1:aVo1Uh2WQ8TvgbjqlbDvfP5AcUtnqXUUrc9pVP8MvKc= github.com/DataDog/datadog-agent/pkg/obfuscate v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:AVPQWekk3h9AOC7+plBlNB68Sy6UIGFoMMVUDeSoNoI= github.com/DataDog/datadog-agent/pkg/proto v0.52.1-0.20240321095122-a3c5dbb936ae h1:b6lU79trCyadhkxhb51jXiqmZaHs1Z0fwWlWKFVCqJ4= @@ -181,8 +181,8 @@ github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5d github.com/DataDog/datadog-agent/pkg/util/pointer v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:HgJEYNmnFTKIuBhWxYe1coqmzoJXMxQTfK+4wIG5G1Q= github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae h1:YZz6I8ym9P4MLytAdAJlafF3tgItgAGZrDqe4otbVUk= github.com/DataDog/datadog-agent/pkg/util/scrubber v0.52.1-0.20240321095122-a3c5dbb936ae/go.mod h1:EVETfdJCkqy0YEvSpQd9LZdcYQ7vrUomCm+bQ6h3lc4= -github.com/DataDog/datadog-api-client-go/v2 v2.22.0 h1:+DtWu4PjGxsJU8FESjPi7C2rTDMojNungejsIzNFe70= -github.com/DataDog/datadog-api-client-go/v2 v2.22.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= +github.com/DataDog/datadog-api-client-go/v2 v2.24.0 h1:7G+eyezFM8gHq5dOHcrQcGVxrXnwPqX2yYHxsLiq3iM= +github.com/DataDog/datadog-api-client-go/v2 v2.24.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/datadog-go/v5 v5.5.0 h1:G5KHeB8pWBNXT4Jtw0zAkhdxEAWSpWH00geHI6LDrKU= github.com/DataDog/datadog-go/v5 v5.5.0/go.mod h1:K9kcYBlxkcPP8tvvjZZKs/m1edNAUFzBbdpTUKfCsuw= From b4cf660cd36c4cf9995025ff1a0642a6f104bb29 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 11:53:54 +0200 Subject: [PATCH 04/21] Update module github.com/prometheus/client_model to v0.6.1 (#32239) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/prometheus/client_model](https://togithub.com/prometheus/client_model) | `v0.6.0` -> `v0.6.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_model/v0.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_model/v0.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_model/v0.6.0/v0.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_model/v0.6.0/v0.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes
prometheus/client_model (github.com/prometheus/client_model) ### [`v0.6.1`](https://togithub.com/prometheus/client_model/releases/tag/v0.6.1) [Compare Source](https://togithub.com/prometheus/client_model/compare/v0.6.0...v0.6.1) #### What's Changed - Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/prometheus/client_model/pull/84](https://togithub.com/prometheus/client_model/pull/84) **Full Changelog**: https://github.com/prometheus/client_model/compare/v0.6.0...v0.6.1
--- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- cmd/configschema/go.mod | 2 +- cmd/configschema/go.sum | 4 ++-- cmd/otelcontribcol/go.mod | 2 +- cmd/otelcontribcol/go.sum | 4 ++-- cmd/oteltestbedcol/go.mod | 2 +- cmd/oteltestbedcol/go.sum | 4 ++-- exporter/prometheusexporter/go.mod | 2 +- exporter/prometheusexporter/go.sum | 4 ++-- go.mod | 2 +- go.sum | 4 ++-- testbed/go.mod | 2 +- testbed/go.sum | 4 ++-- 12 files changed, 18 insertions(+), 18 deletions(-) diff --git a/cmd/configschema/go.mod b/cmd/configschema/go.mod index 5f64faba4834..c0f99848791f 100644 --- a/cmd/configschema/go.mod +++ b/cmd/configschema/go.mod @@ -561,7 +561,7 @@ require ( github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect github.com/pquerna/cachecontrol v0.1.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.51.1 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.13.0 // indirect diff --git a/cmd/configschema/go.sum b/cmd/configschema/go.sum index e901653b58b1..47e96aa338da 100644 --- a/cmd/configschema/go.sum +++ b/cmd/configschema/go.sum @@ -1387,8 +1387,8 @@ github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1: github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= diff --git a/cmd/otelcontribcol/go.mod b/cmd/otelcontribcol/go.mod index 7a362d34e567..f52b6cf6fb70 100644 --- a/cmd/otelcontribcol/go.mod +++ b/cmd/otelcontribcol/go.mod @@ -596,7 +596,7 @@ require ( github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect github.com/pquerna/cachecontrol v0.1.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.51.1 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.13.0 // indirect diff --git a/cmd/otelcontribcol/go.sum b/cmd/otelcontribcol/go.sum index aafe2df740dd..6772f7a79217 100644 --- a/cmd/otelcontribcol/go.sum +++ b/cmd/otelcontribcol/go.sum @@ -1389,8 +1389,8 @@ github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1: github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= diff --git a/cmd/oteltestbedcol/go.mod b/cmd/oteltestbedcol/go.mod index df56d9a1cb9d..5b914fcdfcbc 100644 --- a/cmd/oteltestbedcol/go.mod +++ b/cmd/oteltestbedcol/go.mod @@ -194,7 +194,7 @@ require ( github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.51.1 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect diff --git a/cmd/oteltestbedcol/go.sum b/cmd/oteltestbedcol/go.sum index aeae85e91130..9e5eea6281ef 100644 --- a/cmd/oteltestbedcol/go.sum +++ b/cmd/oteltestbedcol/go.sum @@ -559,8 +559,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= diff --git a/exporter/prometheusexporter/go.mod b/exporter/prometheusexporter/go.mod index 3679958ba24c..c448e36baa2e 100644 --- a/exporter/prometheusexporter/go.mod +++ b/exporter/prometheusexporter/go.mod @@ -8,7 +8,7 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver v0.97.0 github.com/prometheus/client_golang v1.19.0 - github.com/prometheus/client_model v0.6.0 + github.com/prometheus/client_model v0.6.1 github.com/prometheus/common v0.51.1 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/exporter/prometheusexporter/go.sum b/exporter/prometheusexporter/go.sum index 050b4267e617..e023ad9a475f 100644 --- a/exporter/prometheusexporter/go.sum +++ b/exporter/prometheusexporter/go.sum @@ -471,8 +471,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= diff --git a/go.mod b/go.mod index c1403f530a4b..e3d68b70a5fe 100644 --- a/go.mod +++ b/go.mod @@ -560,7 +560,7 @@ require ( github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect github.com/pquerna/cachecontrol v0.1.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.51.1 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.13.0 // indirect diff --git a/go.sum b/go.sum index a59eed2897f9..c2b6dd1a6527 100644 --- a/go.sum +++ b/go.sum @@ -1387,8 +1387,8 @@ github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1: github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= diff --git a/testbed/go.mod b/testbed/go.mod index 4318c68b9ed6..bcda7ee8b0ee 100644 --- a/testbed/go.mod +++ b/testbed/go.mod @@ -197,7 +197,7 @@ require ( github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect diff --git a/testbed/go.sum b/testbed/go.sum index 0d1d1afd2f76..b927b492ee31 100644 --- a/testbed/go.sum +++ b/testbed/go.sum @@ -537,8 +537,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= From ff2b9d6eae9250c7a87db675340a89129d3e91a3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 11:54:06 +0200 Subject: [PATCH 05/21] Update module github.com/sijms/go-ora/v2 to v2.8.11 (#32240) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/sijms/go-ora/v2](https://togithub.com/sijms/go-ora) | `v2.8.10` -> `v2.8.11` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsijms%2fgo-ora%2fv2/v2.8.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsijms%2fgo-ora%2fv2/v2.8.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsijms%2fgo-ora%2fv2/v2.8.10/v2.8.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsijms%2fgo-ora%2fv2/v2.8.10/v2.8.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes
sijms/go-ora (github.com/sijms/go-ora/v2) ### [`v2.8.11`](https://togithub.com/sijms/go-ora/releases/tag/v2.8.11): : Fix regression in `encryption and data integrity [Compare Source](https://togithub.com/sijms/go-ora/compare/v2.8.10...v2.8.11) fix regression in encryption and data integrity when connection break/reset
--- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- cmd/configschema/go.mod | 2 +- cmd/configschema/go.sum | 4 ++-- cmd/otelcontribcol/go.mod | 2 +- cmd/otelcontribcol/go.sum | 4 ++-- go.mod | 2 +- go.sum | 4 ++-- internal/sqlquery/go.mod | 2 +- internal/sqlquery/go.sum | 4 ++-- receiver/oracledbreceiver/go.mod | 2 +- receiver/oracledbreceiver/go.sum | 4 ++-- receiver/sqlqueryreceiver/go.mod | 2 +- receiver/sqlqueryreceiver/go.sum | 4 ++-- 12 files changed, 18 insertions(+), 18 deletions(-) diff --git a/cmd/configschema/go.mod b/cmd/configschema/go.mod index c0f99848791f..1bff05945007 100644 --- a/cmd/configschema/go.mod +++ b/cmd/configschema/go.mod @@ -581,7 +581,7 @@ require ( github.com/shopspring/decimal v1.3.1 // indirect github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3 // indirect github.com/signalfx/sapm-proto v0.14.0 // indirect - github.com/sijms/go-ora/v2 v2.8.10 // indirect + github.com/sijms/go-ora/v2 v2.8.11 // indirect github.com/sirupsen/logrus v1.9.3 // indirect github.com/snowflakedb/gosnowflake v1.9.0 // indirect github.com/soheilhy/cmux v0.1.5 // indirect diff --git a/cmd/configschema/go.sum b/cmd/configschema/go.sum index 47e96aa338da..232790385933 100644 --- a/cmd/configschema/go.sum +++ b/cmd/configschema/go.sum @@ -1468,8 +1468,8 @@ github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3 h1:32k2QLgsKhcEs55q4REP github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3/go.mod h1:gJrXWi7wSGXfiC7+VheQaz+ypdCt5SmZNL+BRxUe7y4= github.com/signalfx/sapm-proto v0.14.0 h1:KWh3I5E4EkelB19aP1/54Ik8khSioC/RVRW/riOfRGg= github.com/signalfx/sapm-proto v0.14.0/go.mod h1:Km6PskZh966cqNoUn3AmRyGRix5VfwnxVBvn2vjRC9U= -github.com/sijms/go-ora/v2 v2.8.10 h1:Ekhx0I+A9qVBy1eOLa2eIhHWWYwVTa0MM78KS6h+5fg= -github.com/sijms/go-ora/v2 v2.8.10/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk= +github.com/sijms/go-ora/v2 v2.8.11 h1:oQtSX145kCYSjnrmWdtqp2LON9wOQW09wPJ5pIEn5Tg= +github.com/sijms/go-ora/v2 v2.8.11/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= diff --git a/cmd/otelcontribcol/go.mod b/cmd/otelcontribcol/go.mod index f52b6cf6fb70..d6cc11ba3e53 100644 --- a/cmd/otelcontribcol/go.mod +++ b/cmd/otelcontribcol/go.mod @@ -617,7 +617,7 @@ require ( github.com/shopspring/decimal v1.3.1 // indirect github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3 // indirect github.com/signalfx/sapm-proto v0.14.0 // indirect - github.com/sijms/go-ora/v2 v2.8.10 // indirect + github.com/sijms/go-ora/v2 v2.8.11 // indirect github.com/sirupsen/logrus v1.9.3 // indirect github.com/snowflakedb/gosnowflake v1.9.0 // indirect github.com/soheilhy/cmux v0.1.5 // indirect diff --git a/cmd/otelcontribcol/go.sum b/cmd/otelcontribcol/go.sum index 6772f7a79217..dfda4f925e60 100644 --- a/cmd/otelcontribcol/go.sum +++ b/cmd/otelcontribcol/go.sum @@ -1470,8 +1470,8 @@ github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3 h1:32k2QLgsKhcEs55q4REP github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3/go.mod h1:gJrXWi7wSGXfiC7+VheQaz+ypdCt5SmZNL+BRxUe7y4= github.com/signalfx/sapm-proto v0.14.0 h1:KWh3I5E4EkelB19aP1/54Ik8khSioC/RVRW/riOfRGg= github.com/signalfx/sapm-proto v0.14.0/go.mod h1:Km6PskZh966cqNoUn3AmRyGRix5VfwnxVBvn2vjRC9U= -github.com/sijms/go-ora/v2 v2.8.10 h1:Ekhx0I+A9qVBy1eOLa2eIhHWWYwVTa0MM78KS6h+5fg= -github.com/sijms/go-ora/v2 v2.8.10/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk= +github.com/sijms/go-ora/v2 v2.8.11 h1:oQtSX145kCYSjnrmWdtqp2LON9wOQW09wPJ5pIEn5Tg= +github.com/sijms/go-ora/v2 v2.8.11/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= diff --git a/go.mod b/go.mod index e3d68b70a5fe..5f161bffa49e 100644 --- a/go.mod +++ b/go.mod @@ -582,7 +582,7 @@ require ( github.com/shopspring/decimal v1.3.1 // indirect github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3 // indirect github.com/signalfx/sapm-proto v0.14.0 // indirect - github.com/sijms/go-ora/v2 v2.8.10 // indirect + github.com/sijms/go-ora/v2 v2.8.11 // indirect github.com/sirupsen/logrus v1.9.3 // indirect github.com/snowflakedb/gosnowflake v1.9.0 // indirect github.com/soheilhy/cmux v0.1.5 // indirect diff --git a/go.sum b/go.sum index c2b6dd1a6527..c7880c86202a 100644 --- a/go.sum +++ b/go.sum @@ -1468,8 +1468,8 @@ github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3 h1:32k2QLgsKhcEs55q4REP github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3/go.mod h1:gJrXWi7wSGXfiC7+VheQaz+ypdCt5SmZNL+BRxUe7y4= github.com/signalfx/sapm-proto v0.14.0 h1:KWh3I5E4EkelB19aP1/54Ik8khSioC/RVRW/riOfRGg= github.com/signalfx/sapm-proto v0.14.0/go.mod h1:Km6PskZh966cqNoUn3AmRyGRix5VfwnxVBvn2vjRC9U= -github.com/sijms/go-ora/v2 v2.8.10 h1:Ekhx0I+A9qVBy1eOLa2eIhHWWYwVTa0MM78KS6h+5fg= -github.com/sijms/go-ora/v2 v2.8.10/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk= +github.com/sijms/go-ora/v2 v2.8.11 h1:oQtSX145kCYSjnrmWdtqp2LON9wOQW09wPJ5pIEn5Tg= +github.com/sijms/go-ora/v2 v2.8.11/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= diff --git a/internal/sqlquery/go.mod b/internal/sqlquery/go.mod index d9a236dc1974..2e93ca26e8b0 100644 --- a/internal/sqlquery/go.mod +++ b/internal/sqlquery/go.mod @@ -7,7 +7,7 @@ require ( github.com/go-sql-driver/mysql v1.8.1 github.com/lib/pq v1.10.9 github.com/microsoft/go-mssqldb v1.7.0 - github.com/sijms/go-ora/v2 v2.8.10 + github.com/sijms/go-ora/v2 v2.8.11 github.com/snowflakedb/gosnowflake v1.9.0 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/internal/sqlquery/go.sum b/internal/sqlquery/go.sum index f14ace473417..e548ee5295e6 100644 --- a/internal/sqlquery/go.sum +++ b/internal/sqlquery/go.sum @@ -192,8 +192,8 @@ github.com/prometheus/procfs v0.13.0 h1:GqzLlQyfsPbaEHaQkO7tbDlriv/4o5Hudv6OXHGK github.com/prometheus/procfs v0.13.0/go.mod h1:cd4PFCR54QLnGKPaKGA6l+cfuNXtht43ZKY6tow0Y1g= github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= -github.com/sijms/go-ora/v2 v2.8.10 h1:Ekhx0I+A9qVBy1eOLa2eIhHWWYwVTa0MM78KS6h+5fg= -github.com/sijms/go-ora/v2 v2.8.10/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk= +github.com/sijms/go-ora/v2 v2.8.11 h1:oQtSX145kCYSjnrmWdtqp2LON9wOQW09wPJ5pIEn5Tg= +github.com/sijms/go-ora/v2 v2.8.11/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk= github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/snowflakedb/gosnowflake v1.9.0 h1:s2ZdwFxFfpqwa5CqlhnzRESnLmwU3fED6zyNOJHFBQA= diff --git a/receiver/oracledbreceiver/go.mod b/receiver/oracledbreceiver/go.mod index bd275c2a4618..6b8d17a33fcc 100644 --- a/receiver/oracledbreceiver/go.mod +++ b/receiver/oracledbreceiver/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/google/go-cmp v0.6.0 - github.com/sijms/go-ora/v2 v2.8.10 + github.com/sijms/go-ora/v2 v2.8.11 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/receiver/oracledbreceiver/go.sum b/receiver/oracledbreceiver/go.sum index 6b7c0ea7625e..0bec5d62443d 100644 --- a/receiver/oracledbreceiver/go.sum +++ b/receiver/oracledbreceiver/go.sum @@ -58,8 +58,8 @@ github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= -github.com/sijms/go-ora/v2 v2.8.10 h1:Ekhx0I+A9qVBy1eOLa2eIhHWWYwVTa0MM78KS6h+5fg= -github.com/sijms/go-ora/v2 v2.8.10/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk= +github.com/sijms/go-ora/v2 v2.8.11 h1:oQtSX145kCYSjnrmWdtqp2LON9wOQW09wPJ5pIEn5Tg= +github.com/sijms/go-ora/v2 v2.8.11/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= diff --git a/receiver/sqlqueryreceiver/go.mod b/receiver/sqlqueryreceiver/go.mod index 275cdd2b44ec..6aea79d11237 100644 --- a/receiver/sqlqueryreceiver/go.mod +++ b/receiver/sqlqueryreceiver/go.mod @@ -126,7 +126,7 @@ require ( github.com/prometheus/procfs v0.13.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect github.com/shoenig/go-m1cpu v0.1.6 // indirect - github.com/sijms/go-ora/v2 v2.8.10 // indirect + github.com/sijms/go-ora/v2 v2.8.11 // indirect github.com/sirupsen/logrus v1.9.3 // indirect github.com/snowflakedb/gosnowflake v1.9.0 // indirect github.com/tklauser/go-sysconf v0.3.12 // indirect diff --git a/receiver/sqlqueryreceiver/go.sum b/receiver/sqlqueryreceiver/go.sum index bc5eef6108ad..8a136341b179 100644 --- a/receiver/sqlqueryreceiver/go.sum +++ b/receiver/sqlqueryreceiver/go.sum @@ -276,8 +276,8 @@ github.com/shoenig/go-m1cpu v0.1.6 h1:nxdKQNcEB6vzgA2E2bvzKIYRuNj7XNJ4S/aRSwKzFt github.com/shoenig/go-m1cpu v0.1.6/go.mod h1:1JJMcUBvfNwpq05QDQVAnx3gUHr9IYF7GNg9SUEw2VQ= github.com/shoenig/test v0.6.4 h1:kVTaSd7WLz5WZ2IaoM0RSzRsUD+m8wRR+5qvntpn4LU= github.com/shoenig/test v0.6.4/go.mod h1:byHiCGXqrVaflBLAMq/srcZIHynQPQgeyvkvXnjqq0k= -github.com/sijms/go-ora/v2 v2.8.10 h1:Ekhx0I+A9qVBy1eOLa2eIhHWWYwVTa0MM78KS6h+5fg= -github.com/sijms/go-ora/v2 v2.8.10/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk= +github.com/sijms/go-ora/v2 v2.8.11 h1:oQtSX145kCYSjnrmWdtqp2LON9wOQW09wPJ5pIEn5Tg= +github.com/sijms/go-ora/v2 v2.8.11/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk= github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/snowflakedb/gosnowflake v1.9.0 h1:s2ZdwFxFfpqwa5CqlhnzRESnLmwU3fED6zyNOJHFBQA= From debbc9d76c15db2a495fc54c4cee7dd5afdc71c1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 12:18:14 +0200 Subject: [PATCH 06/21] Update module sigs.k8s.io/controller-runtime to v0.17.3 (#32243) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [sigs.k8s.io/controller-runtime](https://togithub.com/kubernetes-sigs/controller-runtime) | `v0.17.2` -> `v0.17.3` | [![age](https://developer.mend.io/api/mc/badges/age/go/sigs.k8s.io%2fcontroller-runtime/v0.17.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/sigs.k8s.io%2fcontroller-runtime/v0.17.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/sigs.k8s.io%2fcontroller-runtime/v0.17.2/v0.17.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/sigs.k8s.io%2fcontroller-runtime/v0.17.2/v0.17.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes
kubernetes-sigs/controller-runtime (sigs.k8s.io/controller-runtime) ### [`v0.17.3`](https://togithub.com/kubernetes-sigs/controller-runtime/releases/tag/v0.17.3) [Compare Source](https://togithub.com/kubernetes-sigs/controller-runtime/compare/v0.17.2...v0.17.3) ##### What's Changed - 🌱 Update to Kubernetes v1.29.2 by [@​sbueringer](https://togithub.com/sbueringer) in [https://github.com/kubernetes-sigs/controller-runtime/pull/2711](https://togithub.com/kubernetes-sigs/controller-runtime/pull/2711) - :bug: Cache: Keep selectors when byObject.Namespaces is defaulted by [@​k8s-infra-cherrypick-robot](https://togithub.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/2749](https://togithub.com/kubernetes-sigs/controller-runtime/pull/2749) - 🐛 Prevent leader election when shutting down a non-elected manager by [@​k8s-infra-cherrypick-robot](https://togithub.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/2752](https://togithub.com/kubernetes-sigs/controller-runtime/pull/2752) - :bug: Runnable group should check if stopped before enqueueing by [@​k8s-infra-cherrypick-robot](https://togithub.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/2761](https://togithub.com/kubernetes-sigs/controller-runtime/pull/2761) **Full Changelog**: https://github.com/kubernetes-sigs/controller-runtime/compare/v0.17.2...v0.17.3
--- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- cmd/configschema/go.mod | 2 +- cmd/configschema/go.sum | 4 ++-- cmd/otelcontribcol/go.mod | 2 +- cmd/otelcontribcol/go.sum | 4 ++-- exporter/loadbalancingexporter/go.mod | 2 +- exporter/loadbalancingexporter/go.sum | 8 ++++---- go.mod | 2 +- go.sum | 4 ++-- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/cmd/configschema/go.mod b/cmd/configschema/go.mod index 1bff05945007..493afb40ec37 100644 --- a/cmd/configschema/go.mod +++ b/cmd/configschema/go.mod @@ -712,7 +712,7 @@ require ( k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect k8s.io/kubelet v0.29.3 // indirect k8s.io/utils v0.0.0-20240102154912-e7106e64919e // indirect - sigs.k8s.io/controller-runtime v0.17.2 // indirect + sigs.k8s.io/controller-runtime v0.17.3 // indirect sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect sigs.k8s.io/yaml v1.4.0 // indirect diff --git a/cmd/configschema/go.sum b/cmd/configschema/go.sum index 232790385933..521ec2f38640 100644 --- a/cmd/configschema/go.sum +++ b/cmd/configschema/go.sum @@ -2385,8 +2385,8 @@ k8s.io/utils v0.0.0-20240102154912-e7106e64919e/go.mod h1:OLgZIPagt7ERELqWJFomSt rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= -sigs.k8s.io/controller-runtime v0.17.2 h1:FwHwD1CTUemg0pW2otk7/U5/i5m2ymzvOXdbeGOUvw0= -sigs.k8s.io/controller-runtime v0.17.2/go.mod h1:+MngTvIQQQhfXtwfdGw/UOQ/aIaqsYywfCINOtwMO/s= +sigs.k8s.io/controller-runtime v0.17.3 h1:65QmN7r3FWgTxDMz9fvGnO1kbf2nu+acg9p2R9oYYYk= +sigs.k8s.io/controller-runtime v0.17.3/go.mod h1:N0jpP5Lo7lMTF9aL56Z/B2oWBJjey6StQM0jRbKQXtY= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0= sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= diff --git a/cmd/otelcontribcol/go.mod b/cmd/otelcontribcol/go.mod index d6cc11ba3e53..71497f9396b3 100644 --- a/cmd/otelcontribcol/go.mod +++ b/cmd/otelcontribcol/go.mod @@ -732,7 +732,7 @@ require ( k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect k8s.io/kubelet v0.29.3 // indirect k8s.io/utils v0.0.0-20240102154912-e7106e64919e // indirect - sigs.k8s.io/controller-runtime v0.17.2 // indirect + sigs.k8s.io/controller-runtime v0.17.3 // indirect sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect sigs.k8s.io/yaml v1.4.0 // indirect diff --git a/cmd/otelcontribcol/go.sum b/cmd/otelcontribcol/go.sum index dfda4f925e60..b12239bcae15 100644 --- a/cmd/otelcontribcol/go.sum +++ b/cmd/otelcontribcol/go.sum @@ -2389,8 +2389,8 @@ k8s.io/utils v0.0.0-20240102154912-e7106e64919e/go.mod h1:OLgZIPagt7ERELqWJFomSt rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= -sigs.k8s.io/controller-runtime v0.17.2 h1:FwHwD1CTUemg0pW2otk7/U5/i5m2ymzvOXdbeGOUvw0= -sigs.k8s.io/controller-runtime v0.17.2/go.mod h1:+MngTvIQQQhfXtwfdGw/UOQ/aIaqsYywfCINOtwMO/s= +sigs.k8s.io/controller-runtime v0.17.3 h1:65QmN7r3FWgTxDMz9fvGnO1kbf2nu+acg9p2R9oYYYk= +sigs.k8s.io/controller-runtime v0.17.3/go.mod h1:N0jpP5Lo7lMTF9aL56Z/B2oWBJjey6StQM0jRbKQXtY= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0= sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= diff --git a/exporter/loadbalancingexporter/go.mod b/exporter/loadbalancingexporter/go.mod index 1b34b2605980..2ad82205d5f3 100644 --- a/exporter/loadbalancingexporter/go.mod +++ b/exporter/loadbalancingexporter/go.mod @@ -26,7 +26,7 @@ require ( k8s.io/apimachinery v0.29.3 k8s.io/client-go v0.29.3 k8s.io/utils v0.0.0-20240102154912-e7106e64919e - sigs.k8s.io/controller-runtime v0.17.2 + sigs.k8s.io/controller-runtime v0.17.3 ) require ( diff --git a/exporter/loadbalancingexporter/go.sum b/exporter/loadbalancingexporter/go.sum index b13716109d2c..24ed6257b19f 100644 --- a/exporter/loadbalancingexporter/go.sum +++ b/exporter/loadbalancingexporter/go.sum @@ -451,8 +451,8 @@ honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= k8s.io/api v0.29.3 h1:2ORfZ7+bGC3YJqGpV0KSDDEVf8hdGQ6A03/50vj8pmw= k8s.io/api v0.29.3/go.mod h1:y2yg2NTyHUUkIoTC+phinTnEa3KFM6RZ3szxt014a80= -k8s.io/apiextensions-apiserver v0.29.0 h1:0VuspFG7Hj+SxyF/Z/2T0uFbI5gb5LRgEyUVE3Q4lV0= -k8s.io/apiextensions-apiserver v0.29.0/go.mod h1:TKmpy3bTS0mr9pylH0nOt/QzQRrW7/h7yLdRForMZwc= +k8s.io/apiextensions-apiserver v0.29.2 h1:UK3xB5lOWSnhaCk0RFZ0LUacPZz9RY4wi/yt2Iu+btg= +k8s.io/apiextensions-apiserver v0.29.2/go.mod h1:aLfYjpA5p3OwtqNXQFkhJ56TB+spV8Gc4wfMhUA3/b8= k8s.io/apimachinery v0.29.3 h1:2tbx+5L7RNvqJjn7RIuIKu9XTsIZ9Z5wX2G22XAa5EU= k8s.io/apimachinery v0.29.3/go.mod h1:hx/S4V2PNW4OMg3WizRrHutyB5la0iCUbZym+W0EQIU= k8s.io/client-go v0.29.3 h1:R/zaZbEAxqComZ9FHeQwOh3Y1ZUs7FaHKZdQtIc2WZg= @@ -463,8 +463,8 @@ k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 h1:aVUu9fTY98ivBPKR9Y5w/A k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00/go.mod h1:AsvuZPBlUDVuCdzJ87iajxtXuR9oktsTctW/R9wwouA= k8s.io/utils v0.0.0-20240102154912-e7106e64919e h1:eQ/4ljkx21sObifjzXwlPKpdGLrCfRziVtos3ofG/sQ= k8s.io/utils v0.0.0-20240102154912-e7106e64919e/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= -sigs.k8s.io/controller-runtime v0.17.2 h1:FwHwD1CTUemg0pW2otk7/U5/i5m2ymzvOXdbeGOUvw0= -sigs.k8s.io/controller-runtime v0.17.2/go.mod h1:+MngTvIQQQhfXtwfdGw/UOQ/aIaqsYywfCINOtwMO/s= +sigs.k8s.io/controller-runtime v0.17.3 h1:65QmN7r3FWgTxDMz9fvGnO1kbf2nu+acg9p2R9oYYYk= +sigs.k8s.io/controller-runtime v0.17.3/go.mod h1:N0jpP5Lo7lMTF9aL56Z/B2oWBJjey6StQM0jRbKQXtY= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0= sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4= diff --git a/go.mod b/go.mod index 5f161bffa49e..445414771a4c 100644 --- a/go.mod +++ b/go.mod @@ -708,7 +708,7 @@ require ( k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect k8s.io/kubelet v0.29.3 // indirect k8s.io/utils v0.0.0-20240102154912-e7106e64919e // indirect - sigs.k8s.io/controller-runtime v0.17.2 // indirect + sigs.k8s.io/controller-runtime v0.17.3 // indirect sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect sigs.k8s.io/yaml v1.4.0 // indirect diff --git a/go.sum b/go.sum index c7880c86202a..3e95fcd9ced6 100644 --- a/go.sum +++ b/go.sum @@ -2386,8 +2386,8 @@ k8s.io/utils v0.0.0-20240102154912-e7106e64919e/go.mod h1:OLgZIPagt7ERELqWJFomSt rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= -sigs.k8s.io/controller-runtime v0.17.2 h1:FwHwD1CTUemg0pW2otk7/U5/i5m2ymzvOXdbeGOUvw0= -sigs.k8s.io/controller-runtime v0.17.2/go.mod h1:+MngTvIQQQhfXtwfdGw/UOQ/aIaqsYywfCINOtwMO/s= +sigs.k8s.io/controller-runtime v0.17.3 h1:65QmN7r3FWgTxDMz9fvGnO1kbf2nu+acg9p2R9oYYYk= +sigs.k8s.io/controller-runtime v0.17.3/go.mod h1:N0jpP5Lo7lMTF9aL56Z/B2oWBJjey6StQM0jRbKQXtY= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0= sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= From 111393e6e71668285067172e5642e8ba61cd00c6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 12:18:59 +0200 Subject: [PATCH 07/21] Update All github.com/azure packages (#32229) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://togithub.com/Azure/azure-sdk-for-go) | `v1.11.0` -> `v1.11.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazcore/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazcore/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazcore/v1.11.0/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazcore/v1.11.0/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/Azure/azure-sdk-for-go/sdk/storage/azblob](https://togithub.com/Azure/azure-sdk-for-go) | `v1.3.1` -> `v1.3.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fstorage%2fazblob/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fstorage%2fazblob/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fstorage%2fazblob/v1.3.1/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fstorage%2fazblob/v1.3.1/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- cmd/configschema/go.mod | 4 ++-- cmd/configschema/go.sum | 8 ++++---- cmd/otelcontribcol/go.mod | 4 ++-- cmd/otelcontribcol/go.sum | 8 ++++---- go.mod | 4 ++-- go.sum | 8 ++++---- receiver/azureblobreceiver/go.mod | 4 ++-- receiver/azureblobreceiver/go.sum | 8 ++++---- receiver/azuremonitorreceiver/go.mod | 2 +- receiver/azuremonitorreceiver/go.sum | 4 ++-- 10 files changed, 27 insertions(+), 27 deletions(-) diff --git a/cmd/configschema/go.mod b/cmd/configschema/go.mod index 493afb40ec37..55bead85504d 100644 --- a/cmd/configschema/go.mod +++ b/cmd/configschema/go.mod @@ -199,11 +199,11 @@ require ( github.com/Azure/azure-kusto-go v0.15.2 // indirect github.com/Azure/azure-pipeline-go v0.2.3 // indirect github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 // indirect github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v5 v5.5.0 // indirect github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v4 v4.3.0 // indirect - github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1 // indirect + github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2 // indirect github.com/Azure/azure-storage-queue-go v0.0.0-20230531184854-c06a8eff66fe // indirect github.com/Azure/go-amqp v1.0.5 // indirect github.com/Azure/go-autorest v14.2.0+incompatible // indirect diff --git a/cmd/configschema/go.sum b/cmd/configschema/go.sum index 521ec2f38640..70e252206eab 100644 --- a/cmd/configschema/go.sum +++ b/cmd/configschema/go.sum @@ -90,8 +90,8 @@ github.com/Azure/azure-pipeline-go v0.2.3 h1:7U9HBg1JFK3jHl5qmo4CTZKFTVgMwdFHMVt github.com/Azure/azure-pipeline-go v0.2.3/go.mod h1:x841ezTBIMG6O3lAcl8ATHnsOPVl2bqk7S3ta6S6u4k= github.com/Azure/azure-sdk-for-go v68.0.0+incompatible h1:fcYLmCpyNYRnvJbPerq7U0hS+6+I79yEDJBqVNcqUzU= github.com/Azure/azure-sdk-for-go v68.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 h1:U/kwEXj0Y+1REAkV4kV8VO1CsEp8tSaQDG/7qC5XuqQ= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0/go.mod h1:a6xsAQUZg+VsS3TJ05SRp524Hs4pZ/AeFSr5ENf0Yjo= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 h1:E+OJmp2tPvt1W+amx48v1eqbjDYsgN+RzP4q16yV5eM= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1/go.mod h1:a6xsAQUZg+VsS3TJ05SRp524Hs4pZ/AeFSr5ENf0Yjo= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 h1:sO0/P7g68FrryJzljemN+6GTssUXdANk6aJ7T1ZxnsQ= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1/go.mod h1:h8hyGFDsU5HMivxiS2iYFZsgDbU9OnnJ163x5UGVKYo= github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 h1:LqbJ/WzJUwBf8UiaSzgX7aMclParm9/5Vgp+TY51uBQ= @@ -114,8 +114,8 @@ github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.0.1 h1:MyVTgWR github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.0.1/go.mod h1:GpPjLhVR9dnUoJMyHWSPy71xY9/lcmpzIPZXmF0FCVY= github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.0 h1:D3occbWoio4EBLkbkevetNMAVX197GkzbUMtqjGWn80= github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.0/go.mod h1:bTSOgj05NGRuHHhQwAdPnYr9TOdNmKlZTgGLL6nyAdI= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1 h1:fXPMAmuh0gDuRDey0atC8cXBuKIlqCzCkL8sm1n9Ov0= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1/go.mod h1:SUZc9YRRHfx2+FAQKNDGrssXehqLpxmwRv2mC/5ntj4= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2 h1:YUUxeiOWgdAQE3pXt2H7QXzZs0q8UBjgRbl56qo8GYM= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2/go.mod h1:dmXQgZuiSubAecswZE+Sm8jkvEa7kQgTPVRvwL/nd0E= github.com/Azure/azure-storage-queue-go v0.0.0-20230531184854-c06a8eff66fe h1:HGuouUM1533rBXmMtR7qh5pYNSSjUZG90b/MgJAnb/A= github.com/Azure/azure-storage-queue-go v0.0.0-20230531184854-c06a8eff66fe/go.mod h1:K6am8mT+5iFXgingS9LUc7TmbsW6XBw3nxaRyaMyWc8= github.com/Azure/go-amqp v1.0.5 h1:po5+ljlcNSU8xtapHTe8gIc8yHxCzC03E8afH2g1ftU= diff --git a/cmd/otelcontribcol/go.mod b/cmd/otelcontribcol/go.mod index 71497f9396b3..d28c333d67ea 100644 --- a/cmd/otelcontribcol/go.mod +++ b/cmd/otelcontribcol/go.mod @@ -247,14 +247,14 @@ require ( github.com/Azure/azure-kusto-go v0.15.2 // indirect github.com/Azure/azure-pipeline-go v0.2.3 // indirect github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 // indirect github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 // indirect github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v5 v5.5.0 // indirect github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor v0.11.0 // indirect github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v4 v4.3.0 // indirect github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.2.0 // indirect - github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1 // indirect + github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2 // indirect github.com/Azure/azure-storage-queue-go v0.0.0-20230531184854-c06a8eff66fe // indirect github.com/Azure/go-amqp v1.0.5 // indirect github.com/Azure/go-autorest v14.2.0+incompatible // indirect diff --git a/cmd/otelcontribcol/go.sum b/cmd/otelcontribcol/go.sum index b12239bcae15..15139e1804fd 100644 --- a/cmd/otelcontribcol/go.sum +++ b/cmd/otelcontribcol/go.sum @@ -89,8 +89,8 @@ github.com/Azure/azure-pipeline-go v0.2.3 h1:7U9HBg1JFK3jHl5qmo4CTZKFTVgMwdFHMVt github.com/Azure/azure-pipeline-go v0.2.3/go.mod h1:x841ezTBIMG6O3lAcl8ATHnsOPVl2bqk7S3ta6S6u4k= github.com/Azure/azure-sdk-for-go v68.0.0+incompatible h1:fcYLmCpyNYRnvJbPerq7U0hS+6+I79yEDJBqVNcqUzU= github.com/Azure/azure-sdk-for-go v68.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 h1:U/kwEXj0Y+1REAkV4kV8VO1CsEp8tSaQDG/7qC5XuqQ= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0/go.mod h1:a6xsAQUZg+VsS3TJ05SRp524Hs4pZ/AeFSr5ENf0Yjo= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 h1:E+OJmp2tPvt1W+amx48v1eqbjDYsgN+RzP4q16yV5eM= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1/go.mod h1:a6xsAQUZg+VsS3TJ05SRp524Hs4pZ/AeFSr5ENf0Yjo= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 h1:sO0/P7g68FrryJzljemN+6GTssUXdANk6aJ7T1ZxnsQ= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1/go.mod h1:h8hyGFDsU5HMivxiS2iYFZsgDbU9OnnJ163x5UGVKYo= github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 h1:LqbJ/WzJUwBf8UiaSzgX7aMclParm9/5Vgp+TY51uBQ= @@ -113,8 +113,8 @@ github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.0.1 h1:MyVTgWR github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.0.1/go.mod h1:GpPjLhVR9dnUoJMyHWSPy71xY9/lcmpzIPZXmF0FCVY= github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.0 h1:D3occbWoio4EBLkbkevetNMAVX197GkzbUMtqjGWn80= github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.0/go.mod h1:bTSOgj05NGRuHHhQwAdPnYr9TOdNmKlZTgGLL6nyAdI= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1 h1:fXPMAmuh0gDuRDey0atC8cXBuKIlqCzCkL8sm1n9Ov0= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1/go.mod h1:SUZc9YRRHfx2+FAQKNDGrssXehqLpxmwRv2mC/5ntj4= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2 h1:YUUxeiOWgdAQE3pXt2H7QXzZs0q8UBjgRbl56qo8GYM= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2/go.mod h1:dmXQgZuiSubAecswZE+Sm8jkvEa7kQgTPVRvwL/nd0E= github.com/Azure/azure-storage-queue-go v0.0.0-20230531184854-c06a8eff66fe h1:HGuouUM1533rBXmMtR7qh5pYNSSjUZG90b/MgJAnb/A= github.com/Azure/azure-storage-queue-go v0.0.0-20230531184854-c06a8eff66fe/go.mod h1:K6am8mT+5iFXgingS9LUc7TmbsW6XBw3nxaRyaMyWc8= github.com/Azure/go-amqp v1.0.5 h1:po5+ljlcNSU8xtapHTe8gIc8yHxCzC03E8afH2g1ftU= diff --git a/go.mod b/go.mod index 445414771a4c..a569002b9fac 100644 --- a/go.mod +++ b/go.mod @@ -210,14 +210,14 @@ require ( github.com/Azure/azure-kusto-go v0.15.2 // indirect github.com/Azure/azure-pipeline-go v0.2.3 // indirect github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 // indirect github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 // indirect github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v5 v5.5.0 // indirect github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor v0.11.0 // indirect github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v4 v4.3.0 // indirect github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.2.0 // indirect - github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1 // indirect + github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2 // indirect github.com/Azure/azure-storage-queue-go v0.0.0-20230531184854-c06a8eff66fe // indirect github.com/Azure/go-amqp v1.0.5 // indirect github.com/Azure/go-autorest v14.2.0+incompatible // indirect diff --git a/go.sum b/go.sum index 3e95fcd9ced6..7813142966c5 100644 --- a/go.sum +++ b/go.sum @@ -90,8 +90,8 @@ github.com/Azure/azure-pipeline-go v0.2.3 h1:7U9HBg1JFK3jHl5qmo4CTZKFTVgMwdFHMVt github.com/Azure/azure-pipeline-go v0.2.3/go.mod h1:x841ezTBIMG6O3lAcl8ATHnsOPVl2bqk7S3ta6S6u4k= github.com/Azure/azure-sdk-for-go v68.0.0+incompatible h1:fcYLmCpyNYRnvJbPerq7U0hS+6+I79yEDJBqVNcqUzU= github.com/Azure/azure-sdk-for-go v68.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 h1:U/kwEXj0Y+1REAkV4kV8VO1CsEp8tSaQDG/7qC5XuqQ= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0/go.mod h1:a6xsAQUZg+VsS3TJ05SRp524Hs4pZ/AeFSr5ENf0Yjo= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 h1:E+OJmp2tPvt1W+amx48v1eqbjDYsgN+RzP4q16yV5eM= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1/go.mod h1:a6xsAQUZg+VsS3TJ05SRp524Hs4pZ/AeFSr5ENf0Yjo= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 h1:sO0/P7g68FrryJzljemN+6GTssUXdANk6aJ7T1ZxnsQ= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1/go.mod h1:h8hyGFDsU5HMivxiS2iYFZsgDbU9OnnJ163x5UGVKYo= github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 h1:LqbJ/WzJUwBf8UiaSzgX7aMclParm9/5Vgp+TY51uBQ= @@ -114,8 +114,8 @@ github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.0.1 h1:MyVTgWR github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.0.1/go.mod h1:GpPjLhVR9dnUoJMyHWSPy71xY9/lcmpzIPZXmF0FCVY= github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.0 h1:D3occbWoio4EBLkbkevetNMAVX197GkzbUMtqjGWn80= github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.0/go.mod h1:bTSOgj05NGRuHHhQwAdPnYr9TOdNmKlZTgGLL6nyAdI= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1 h1:fXPMAmuh0gDuRDey0atC8cXBuKIlqCzCkL8sm1n9Ov0= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1/go.mod h1:SUZc9YRRHfx2+FAQKNDGrssXehqLpxmwRv2mC/5ntj4= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2 h1:YUUxeiOWgdAQE3pXt2H7QXzZs0q8UBjgRbl56qo8GYM= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2/go.mod h1:dmXQgZuiSubAecswZE+Sm8jkvEa7kQgTPVRvwL/nd0E= github.com/Azure/azure-storage-queue-go v0.0.0-20230531184854-c06a8eff66fe h1:HGuouUM1533rBXmMtR7qh5pYNSSjUZG90b/MgJAnb/A= github.com/Azure/azure-storage-queue-go v0.0.0-20230531184854-c06a8eff66fe/go.mod h1:K6am8mT+5iFXgingS9LUc7TmbsW6XBw3nxaRyaMyWc8= github.com/Azure/go-amqp v1.0.5 h1:po5+ljlcNSU8xtapHTe8gIc8yHxCzC03E8afH2g1ftU= diff --git a/receiver/azureblobreceiver/go.mod b/receiver/azureblobreceiver/go.mod index c9d037ef8e6c..61a0346e732d 100644 --- a/receiver/azureblobreceiver/go.mod +++ b/receiver/azureblobreceiver/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/Azure/azure-event-hubs-go/v3 v3.6.2 - github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1 + github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2 github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent v0.97.0 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b @@ -22,7 +22,7 @@ require ( require ( github.com/Azure/azure-amqp-common-go/v4 v4.2.0 // indirect github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.2 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 // indirect github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect github.com/Azure/go-amqp v1.0.2 // indirect github.com/Azure/go-autorest v14.2.0+incompatible // indirect diff --git a/receiver/azureblobreceiver/go.sum b/receiver/azureblobreceiver/go.sum index c68c613b1bad..7199572edf66 100644 --- a/receiver/azureblobreceiver/go.sum +++ b/receiver/azureblobreceiver/go.sum @@ -5,16 +5,16 @@ github.com/Azure/azure-event-hubs-go/v3 v3.6.2 h1:7rNj1/iqS/i3mUKokA2n2eMYO72TB7 github.com/Azure/azure-event-hubs-go/v3 v3.6.2/go.mod h1:n+ocYr9j2JCLYqUqz9eI+lx/TEAtL/g6rZzyTFSuIpc= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible h1:HzKLt3kIwMm4KeJYTdx9EbjRYTySD/t8i1Ee/W5EGXw= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.2 h1:c4k2FIYIh4xtwqrQwV0Ct1v5+ehlNXj5NI/MWVsiTkQ= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.2/go.mod h1:5FDJtLEO/GxwNgUxbwrY3LP0pEoThTQJtk2oysdXHxM= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 h1:E+OJmp2tPvt1W+amx48v1eqbjDYsgN+RzP4q16yV5eM= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1/go.mod h1:a6xsAQUZg+VsS3TJ05SRp524Hs4pZ/AeFSr5ENf0Yjo= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 h1:sO0/P7g68FrryJzljemN+6GTssUXdANk6aJ7T1ZxnsQ= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1/go.mod h1:h8hyGFDsU5HMivxiS2iYFZsgDbU9OnnJ163x5UGVKYo= github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 h1:LqbJ/WzJUwBf8UiaSzgX7aMclParm9/5Vgp+TY51uBQ= github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2/go.mod h1:yInRyqWXAuaPrgI7p70+lDDgh3mlBohis29jGMISnmc= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.5.0 h1:AifHbc4mg0x9zW52WOpKbsHaDKuRhlI7TVl47thgQ70= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.5.0/go.mod h1:T5RfihdXtBDxt1Ch2wobif3TvzTdumDy29kahv6AV9A= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1 h1:fXPMAmuh0gDuRDey0atC8cXBuKIlqCzCkL8sm1n9Ov0= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1/go.mod h1:SUZc9YRRHfx2+FAQKNDGrssXehqLpxmwRv2mC/5ntj4= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2 h1:YUUxeiOWgdAQE3pXt2H7QXzZs0q8UBjgRbl56qo8GYM= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2/go.mod h1:dmXQgZuiSubAecswZE+Sm8jkvEa7kQgTPVRvwL/nd0E= github.com/Azure/go-amqp v1.0.2 h1:zHCHId+kKC7fO8IkwyZJnWMvtRXhYC0VJtD0GYkHc6M= github.com/Azure/go-amqp v1.0.2/go.mod h1:vZAogwdrkbyK3Mla8m/CxSc/aKdnTZ4IbPxl51Y5WZE= github.com/Azure/go-autorest v14.2.0+incompatible h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs= diff --git a/receiver/azuremonitorreceiver/go.mod b/receiver/azuremonitorreceiver/go.mod index 0545cea5879f..450715cb0b4b 100644 --- a/receiver/azuremonitorreceiver/go.mod +++ b/receiver/azuremonitorreceiver/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/receiver/azurem go 1.21 require ( - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor v0.11.0 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.2.0 diff --git a/receiver/azuremonitorreceiver/go.sum b/receiver/azuremonitorreceiver/go.sum index dc20b2ec0078..61b8964b0a4a 100644 --- a/receiver/azuremonitorreceiver/go.sum +++ b/receiver/azuremonitorreceiver/go.sum @@ -1,5 +1,5 @@ -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0 h1:U/kwEXj0Y+1REAkV4kV8VO1CsEp8tSaQDG/7qC5XuqQ= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.0/go.mod h1:a6xsAQUZg+VsS3TJ05SRp524Hs4pZ/AeFSr5ENf0Yjo= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 h1:E+OJmp2tPvt1W+amx48v1eqbjDYsgN+RzP4q16yV5eM= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1/go.mod h1:a6xsAQUZg+VsS3TJ05SRp524Hs4pZ/AeFSr5ENf0Yjo= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 h1:sO0/P7g68FrryJzljemN+6GTssUXdANk6aJ7T1ZxnsQ= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1/go.mod h1:h8hyGFDsU5HMivxiS2iYFZsgDbU9OnnJ163x5UGVKYo= github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 h1:LqbJ/WzJUwBf8UiaSzgX7aMclParm9/5Vgp+TY51uBQ= From aacaaa432edbf4d704b575276af51d9d11e4c999 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 12:36:11 +0200 Subject: [PATCH 08/21] Update module github.com/cespare/xxhash/v2 to v2.3.0 (#32245) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/cespare/xxhash/v2](https://togithub.com/cespare/xxhash) | `v2.2.0` -> `v2.3.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcespare%2fxxhash%2fv2/v2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcespare%2fxxhash%2fv2/v2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcespare%2fxxhash%2fv2/v2.2.0/v2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcespare%2fxxhash%2fv2/v2.2.0/v2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes
cespare/xxhash (github.com/cespare/xxhash/v2) ### [`v2.3.0`](https://togithub.com/cespare/xxhash/compare/v2.2.0...v2.3.0) [Compare Source](https://togithub.com/cespare/xxhash/compare/v2.2.0...v2.3.0)
--- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- cmd/configschema/go.mod | 2 +- cmd/configschema/go.sum | 4 ++-- cmd/otelcontribcol/go.mod | 2 +- cmd/otelcontribcol/go.sum | 4 ++-- cmd/oteltestbedcol/go.mod | 2 +- cmd/oteltestbedcol/go.sum | 4 ++-- connector/countconnector/go.mod | 2 +- connector/countconnector/go.sum | 4 ++-- connector/datadogconnector/go.mod | 2 +- connector/datadogconnector/go.sum | 4 ++-- connector/exceptionsconnector/go.mod | 2 +- connector/exceptionsconnector/go.sum | 4 ++-- connector/routingconnector/go.mod | 2 +- connector/routingconnector/go.sum | 4 ++-- connector/spanmetricsconnector/go.mod | 2 +- connector/spanmetricsconnector/go.sum | 4 ++-- exporter/alibabacloudlogserviceexporter/go.mod | 2 +- exporter/alibabacloudlogserviceexporter/go.sum | 4 ++-- exporter/awsemfexporter/go.mod | 2 +- exporter/awsemfexporter/go.sum | 4 ++-- exporter/awskinesisexporter/go.mod | 2 +- exporter/awskinesisexporter/go.sum | 4 ++-- exporter/awsxrayexporter/go.mod | 2 +- exporter/awsxrayexporter/go.sum | 4 ++-- exporter/azuredataexplorerexporter/go.mod | 2 +- exporter/azuredataexplorerexporter/go.sum | 4 ++-- exporter/azuremonitorexporter/go.mod | 2 +- exporter/azuremonitorexporter/go.sum | 4 ++-- exporter/cassandraexporter/go.mod | 2 +- exporter/cassandraexporter/go.sum | 4 ++-- exporter/clickhouseexporter/go.mod | 2 +- exporter/clickhouseexporter/go.sum | 4 ++-- exporter/datadogexporter/go.mod | 2 +- exporter/datadogexporter/go.sum | 4 ++-- exporter/datadogexporter/integrationtest/go.mod | 2 +- exporter/datadogexporter/integrationtest/go.sum | 4 ++-- exporter/datasetexporter/go.mod | 2 +- exporter/datasetexporter/go.sum | 4 ++-- exporter/elasticsearchexporter/go.mod | 2 +- exporter/elasticsearchexporter/go.sum | 4 ++-- exporter/fileexporter/go.mod | 2 +- exporter/fileexporter/go.sum | 4 ++-- exporter/honeycombmarkerexporter/go.mod | 2 +- exporter/honeycombmarkerexporter/go.sum | 4 ++-- exporter/instanaexporter/go.mod | 2 +- exporter/instanaexporter/go.sum | 4 ++-- exporter/kafkaexporter/go.mod | 2 +- exporter/kafkaexporter/go.sum | 4 ++-- exporter/logicmonitorexporter/go.mod | 2 +- exporter/logicmonitorexporter/go.sum | 4 ++-- exporter/logzioexporter/go.mod | 2 +- exporter/logzioexporter/go.sum | 4 ++-- exporter/lokiexporter/go.mod | 2 +- exporter/lokiexporter/go.sum | 4 ++-- exporter/opencensusexporter/go.mod | 2 +- exporter/opencensusexporter/go.sum | 4 ++-- exporter/opensearchexporter/go.mod | 2 +- exporter/opensearchexporter/go.sum | 4 ++-- exporter/prometheusexporter/go.mod | 2 +- exporter/prometheusexporter/go.sum | 4 ++-- exporter/prometheusremotewriteexporter/go.mod | 2 +- exporter/prometheusremotewriteexporter/go.sum | 4 ++-- exporter/pulsarexporter/go.mod | 2 +- exporter/pulsarexporter/go.sum | 4 ++-- exporter/sapmexporter/go.mod | 2 +- exporter/sapmexporter/go.sum | 4 ++-- exporter/sentryexporter/go.mod | 2 +- exporter/sentryexporter/go.sum | 4 ++-- exporter/signalfxexporter/go.mod | 2 +- exporter/signalfxexporter/go.sum | 4 ++-- exporter/skywalkingexporter/go.mod | 2 +- exporter/skywalkingexporter/go.sum | 4 ++-- exporter/splunkhecexporter/go.mod | 2 +- exporter/splunkhecexporter/go.sum | 4 ++-- exporter/tencentcloudlogserviceexporter/go.mod | 2 +- exporter/tencentcloudlogserviceexporter/go.sum | 4 ++-- exporter/zipkinexporter/go.mod | 2 +- exporter/zipkinexporter/go.sum | 4 ++-- extension/encoding/jaegerencodingextension/go.mod | 2 +- extension/encoding/jaegerencodingextension/go.sum | 4 ++-- extension/encoding/textencodingextension/go.mod | 2 +- extension/encoding/textencodingextension/go.sum | 4 ++-- extension/encoding/zipkinencodingextension/go.mod | 2 +- extension/encoding/zipkinencodingextension/go.sum | 4 ++-- go.mod | 2 +- go.sum | 4 ++-- internal/coreinternal/go.mod | 2 +- internal/coreinternal/go.sum | 4 ++-- internal/exp/metrics/go.mod | 2 +- internal/exp/metrics/go.sum | 4 ++-- internal/filter/go.mod | 2 +- internal/filter/go.sum | 4 ++-- pkg/golden/go.mod | 2 +- pkg/golden/go.sum | 4 ++-- pkg/ottl/go.mod | 2 +- pkg/ottl/go.sum | 4 ++-- pkg/pdatatest/go.mod | 2 +- pkg/pdatatest/go.sum | 4 ++-- pkg/pdatautil/go.mod | 2 +- pkg/pdatautil/go.sum | 4 ++-- pkg/resourcetotelemetry/go.sum | 4 ++-- pkg/stanza/go.mod | 2 +- pkg/stanza/go.sum | 4 ++-- pkg/translator/azure/go.mod | 2 +- pkg/translator/azure/go.sum | 4 ++-- pkg/translator/loki/go.mod | 2 +- pkg/translator/loki/go.sum | 4 ++-- pkg/translator/opencensus/go.mod | 2 +- pkg/translator/opencensus/go.sum | 4 ++-- pkg/translator/signalfx/go.mod | 2 +- pkg/translator/signalfx/go.sum | 4 ++-- processor/attributesprocessor/go.mod | 2 +- processor/attributesprocessor/go.sum | 4 ++-- processor/cumulativetodeltaprocessor/go.mod | 2 +- processor/cumulativetodeltaprocessor/go.sum | 4 ++-- processor/deltatocumulativeprocessor/go.mod | 2 +- processor/deltatocumulativeprocessor/go.sum | 4 ++-- processor/filterprocessor/go.mod | 2 +- processor/filterprocessor/go.sum | 4 ++-- processor/groupbyattrsprocessor/go.mod | 2 +- processor/groupbyattrsprocessor/go.sum | 4 ++-- processor/logstransformprocessor/go.mod | 2 +- processor/logstransformprocessor/go.sum | 4 ++-- processor/metricstransformprocessor/go.mod | 2 +- processor/metricstransformprocessor/go.sum | 4 ++-- processor/probabilisticsamplerprocessor/go.mod | 2 +- processor/probabilisticsamplerprocessor/go.sum | 4 ++-- processor/resourceprocessor/go.mod | 2 +- processor/resourceprocessor/go.sum | 4 ++-- processor/routingprocessor/go.mod | 2 +- processor/routingprocessor/go.sum | 4 ++-- processor/spanprocessor/go.mod | 2 +- processor/spanprocessor/go.sum | 4 ++-- processor/tailsamplingprocessor/go.mod | 2 +- processor/tailsamplingprocessor/go.sum | 4 ++-- processor/transformprocessor/go.mod | 2 +- processor/transformprocessor/go.sum | 4 ++-- receiver/activedirectorydsreceiver/go.mod | 2 +- receiver/activedirectorydsreceiver/go.sum | 4 ++-- receiver/aerospikereceiver/go.mod | 2 +- receiver/aerospikereceiver/go.sum | 4 ++-- receiver/apachereceiver/go.mod | 2 +- receiver/apachereceiver/go.sum | 4 ++-- receiver/apachesparkreceiver/go.mod | 2 +- receiver/apachesparkreceiver/go.sum | 4 ++-- receiver/awscloudwatchreceiver/go.mod | 2 +- receiver/awscloudwatchreceiver/go.sum | 4 ++-- receiver/awsxrayreceiver/go.mod | 2 +- receiver/awsxrayreceiver/go.sum | 4 ++-- receiver/azureeventhubreceiver/go.mod | 2 +- receiver/azureeventhubreceiver/go.sum | 4 ++-- receiver/azuremonitorreceiver/go.mod | 2 +- receiver/azuremonitorreceiver/go.sum | 4 ++-- receiver/bigipreceiver/go.mod | 2 +- receiver/bigipreceiver/go.sum | 4 ++-- receiver/cloudflarereceiver/go.mod | 2 +- receiver/cloudflarereceiver/go.sum | 4 ++-- receiver/collectdreceiver/go.mod | 2 +- receiver/collectdreceiver/go.sum | 4 ++-- receiver/couchdbreceiver/go.mod | 2 +- receiver/couchdbreceiver/go.sum | 4 ++-- receiver/dockerstatsreceiver/go.mod | 2 +- receiver/dockerstatsreceiver/go.sum | 4 ++-- receiver/elasticsearchreceiver/go.mod | 2 +- receiver/elasticsearchreceiver/go.sum | 4 ++-- receiver/expvarreceiver/go.mod | 2 +- receiver/expvarreceiver/go.sum | 4 ++-- receiver/filelogreceiver/go.mod | 2 +- receiver/filelogreceiver/go.sum | 4 ++-- receiver/filestatsreceiver/go.mod | 2 +- receiver/filestatsreceiver/go.sum | 4 ++-- receiver/flinkmetricsreceiver/go.mod | 2 +- receiver/flinkmetricsreceiver/go.sum | 4 ++-- receiver/fluentforwardreceiver/go.mod | 2 +- receiver/fluentforwardreceiver/go.sum | 4 ++-- receiver/haproxyreceiver/go.mod | 2 +- receiver/haproxyreceiver/go.sum | 4 ++-- receiver/hostmetricsreceiver/go.mod | 2 +- receiver/hostmetricsreceiver/go.sum | 4 ++-- receiver/httpcheckreceiver/go.mod | 2 +- receiver/httpcheckreceiver/go.sum | 4 ++-- receiver/iisreceiver/go.mod | 2 +- receiver/iisreceiver/go.sum | 4 ++-- receiver/influxdbreceiver/go.mod | 2 +- receiver/influxdbreceiver/go.sum | 4 ++-- receiver/jaegerreceiver/go.mod | 2 +- receiver/jaegerreceiver/go.sum | 4 ++-- receiver/jmxreceiver/go.mod | 2 +- receiver/jmxreceiver/go.sum | 4 ++-- receiver/journaldreceiver/go.mod | 2 +- receiver/journaldreceiver/go.sum | 4 ++-- receiver/k8sclusterreceiver/go.mod | 2 +- receiver/k8sclusterreceiver/go.sum | 4 ++-- receiver/k8sobjectsreceiver/go.mod | 2 +- receiver/k8sobjectsreceiver/go.sum | 4 ++-- receiver/kafkareceiver/go.mod | 2 +- receiver/kafkareceiver/go.sum | 4 ++-- receiver/kubeletstatsreceiver/go.mod | 2 +- receiver/kubeletstatsreceiver/go.sum | 4 ++-- receiver/lokireceiver/go.mod | 2 +- receiver/lokireceiver/go.sum | 4 ++-- receiver/memcachedreceiver/go.mod | 2 +- receiver/memcachedreceiver/go.sum | 4 ++-- receiver/mongodbatlasreceiver/go.mod | 2 +- receiver/mongodbatlasreceiver/go.sum | 4 ++-- receiver/mongodbreceiver/go.mod | 2 +- receiver/mongodbreceiver/go.sum | 4 ++-- receiver/mysqlreceiver/go.mod | 2 +- receiver/mysqlreceiver/go.sum | 4 ++-- receiver/namedpipereceiver/go.mod | 2 +- receiver/namedpipereceiver/go.sum | 4 ++-- receiver/nginxreceiver/go.mod | 2 +- receiver/nginxreceiver/go.sum | 4 ++-- receiver/nsxtreceiver/go.mod | 2 +- receiver/nsxtreceiver/go.sum | 4 ++-- receiver/opencensusreceiver/go.mod | 2 +- receiver/opencensusreceiver/go.sum | 4 ++-- receiver/otlpjsonfilereceiver/go.mod | 2 +- receiver/otlpjsonfilereceiver/go.sum | 4 ++-- receiver/postgresqlreceiver/go.mod | 2 +- receiver/postgresqlreceiver/go.sum | 4 ++-- receiver/prometheusreceiver/go.mod | 2 +- receiver/prometheusreceiver/go.sum | 4 ++-- receiver/pulsarreceiver/go.mod | 2 +- receiver/pulsarreceiver/go.sum | 4 ++-- receiver/purefareceiver/go.mod | 2 +- receiver/purefareceiver/go.sum | 4 ++-- receiver/purefbreceiver/go.mod | 2 +- receiver/purefbreceiver/go.sum | 4 ++-- receiver/rabbitmqreceiver/go.mod | 2 +- receiver/rabbitmqreceiver/go.sum | 4 ++-- receiver/receivercreator/go.mod | 2 +- receiver/receivercreator/go.sum | 4 ++-- receiver/redisreceiver/go.mod | 2 +- receiver/redisreceiver/go.sum | 4 ++-- receiver/riakreceiver/go.mod | 2 +- receiver/riakreceiver/go.sum | 4 ++-- receiver/saphanareceiver/go.mod | 2 +- receiver/saphanareceiver/go.sum | 4 ++-- receiver/sapmreceiver/go.mod | 2 +- receiver/sapmreceiver/go.sum | 4 ++-- receiver/signalfxreceiver/go.mod | 2 +- receiver/signalfxreceiver/go.sum | 4 ++-- receiver/simpleprometheusreceiver/go.mod | 2 +- receiver/simpleprometheusreceiver/go.sum | 4 ++-- receiver/snmpreceiver/go.mod | 2 +- receiver/snmpreceiver/go.sum | 4 ++-- receiver/snowflakereceiver/go.mod | 2 +- receiver/snowflakereceiver/go.sum | 4 ++-- receiver/splunkenterprisereceiver/go.mod | 2 +- receiver/splunkenterprisereceiver/go.sum | 4 ++-- receiver/splunkhecreceiver/go.mod | 2 +- receiver/splunkhecreceiver/go.sum | 4 ++-- receiver/sqlqueryreceiver/go.mod | 2 +- receiver/sqlqueryreceiver/go.sum | 4 ++-- receiver/sqlserverreceiver/go.mod | 2 +- receiver/sqlserverreceiver/go.sum | 4 ++-- receiver/sshcheckreceiver/go.mod | 2 +- receiver/sshcheckreceiver/go.sum | 4 ++-- receiver/statsdreceiver/go.mod | 2 +- receiver/statsdreceiver/go.sum | 4 ++-- receiver/syslogreceiver/go.mod | 2 +- receiver/syslogreceiver/go.sum | 4 ++-- receiver/tcplogreceiver/go.mod | 2 +- receiver/tcplogreceiver/go.sum | 4 ++-- receiver/udplogreceiver/go.mod | 2 +- receiver/udplogreceiver/go.sum | 4 ++-- receiver/vcenterreceiver/go.mod | 2 +- receiver/vcenterreceiver/go.sum | 4 ++-- receiver/windowseventlogreceiver/go.mod | 2 +- receiver/windowseventlogreceiver/go.sum | 4 ++-- receiver/windowsperfcountersreceiver/go.mod | 2 +- receiver/windowsperfcountersreceiver/go.sum | 4 ++-- receiver/zipkinreceiver/go.mod | 2 +- receiver/zipkinreceiver/go.sum | 4 ++-- receiver/zookeeperreceiver/go.mod | 2 +- receiver/zookeeperreceiver/go.sum | 4 ++-- testbed/go.mod | 2 +- testbed/go.sum | 4 ++-- 279 files changed, 419 insertions(+), 419 deletions(-) diff --git a/cmd/configschema/go.mod b/cmd/configschema/go.mod index 55bead85504d..0581a8151344 100644 --- a/cmd/configschema/go.mod +++ b/cmd/configschema/go.mod @@ -289,7 +289,7 @@ require ( github.com/cenkalti/backoff v2.2.1+incompatible // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/checkpoint-restore/go-criu/v5 v5.3.0 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/cilium/ebpf v0.11.0 // indirect diff --git a/cmd/configschema/go.sum b/cmd/configschema/go.sum index 70e252206eab..990fba85ad3b 100644 --- a/cmd/configschema/go.sum +++ b/cmd/configschema/go.sum @@ -439,8 +439,8 @@ github.com/census-instrumentation/opencensus-proto v0.4.1 h1:iKLQ0xPNFxR/2hzXZMr github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/checkpoint-restore/go-criu/v5 v5.3.0 h1:wpFFOoomK3389ue2lAb0Boag6XPht5QYpipxmSNL4d8= github.com/checkpoint-restore/go-criu/v5 v5.3.0/go.mod h1:E/eQpaFtUKGOOSEBZgmKAcn+zUUwWxqcaKZlF54wK8E= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= diff --git a/cmd/otelcontribcol/go.mod b/cmd/otelcontribcol/go.mod index d28c333d67ea..fb55c4edd0fd 100644 --- a/cmd/otelcontribcol/go.mod +++ b/cmd/otelcontribcol/go.mod @@ -343,7 +343,7 @@ require ( github.com/cenkalti/backoff v2.2.1+incompatible // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/checkpoint-restore/go-criu/v5 v5.3.0 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/cilium/ebpf v0.11.0 // indirect diff --git a/cmd/otelcontribcol/go.sum b/cmd/otelcontribcol/go.sum index 15139e1804fd..09d6f8de03e5 100644 --- a/cmd/otelcontribcol/go.sum +++ b/cmd/otelcontribcol/go.sum @@ -437,8 +437,8 @@ github.com/census-instrumentation/opencensus-proto v0.4.1 h1:iKLQ0xPNFxR/2hzXZMr github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/checkpoint-restore/go-criu/v5 v5.3.0 h1:wpFFOoomK3389ue2lAb0Boag6XPht5QYpipxmSNL4d8= github.com/checkpoint-restore/go-criu/v5 v5.3.0/go.mod h1:E/eQpaFtUKGOOSEBZgmKAcn+zUUwWxqcaKZlF54wK8E= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= diff --git a/cmd/oteltestbedcol/go.mod b/cmd/oteltestbedcol/go.mod index 5b914fcdfcbc..d225517a1d0d 100644 --- a/cmd/oteltestbedcol/go.mod +++ b/cmd/oteltestbedcol/go.mod @@ -71,7 +71,7 @@ require ( github.com/bmatcuk/doublestar/v4 v4.6.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cncf/xds/go v0.0.0-20231128003011-0fa0005c9caa // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dennwc/varint v1.0.0 // indirect diff --git a/cmd/oteltestbedcol/go.sum b/cmd/oteltestbedcol/go.sum index 9e5eea6281ef..68157212aed3 100644 --- a/cmd/oteltestbedcol/go.sum +++ b/cmd/oteltestbedcol/go.sum @@ -120,8 +120,8 @@ github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA github.com/census-instrumentation/opencensus-proto v0.4.1 h1:iKLQ0xPNFxR/2hzXZMrBo8f1j86j5WHzznCCQxV/b8g= github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/connector/countconnector/go.mod b/connector/countconnector/go.mod index 88a837c96351..6dc7ac006b4e 100644 --- a/connector/countconnector/go.mod +++ b/connector/countconnector/go.mod @@ -23,7 +23,7 @@ require ( require ( github.com/alecthomas/participle/v2 v2.1.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/connector/countconnector/go.sum b/connector/countconnector/go.sum index 4e3c5dc32a58..c63c1d7162ca 100644 --- a/connector/countconnector/go.sum +++ b/connector/countconnector/go.sum @@ -6,8 +6,8 @@ github.com/alecthomas/repr v0.2.0 h1:HAzS41CIzNW5syS8Mf9UwXhNH1J9aix/BvDRf1Ml2Yk github.com/alecthomas/repr v0.2.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/connector/datadogconnector/go.mod b/connector/datadogconnector/go.mod index be6ceab0e5dc..3e35b2b6d41f 100644 --- a/connector/datadogconnector/go.mod +++ b/connector/datadogconnector/go.mod @@ -58,7 +58,7 @@ require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff v2.2.1+incompatible // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/containerd/cgroups/v3 v3.0.3 // indirect github.com/coreos/go-systemd/v22 v22.5.0 // indirect diff --git a/connector/datadogconnector/go.sum b/connector/datadogconnector/go.sum index 49a5d1f17d42..e4f2d5f70127 100644 --- a/connector/datadogconnector/go.sum +++ b/connector/datadogconnector/go.sum @@ -125,8 +125,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3 github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/connector/exceptionsconnector/go.mod b/connector/exceptionsconnector/go.mod index b3458c50100c..7dcf07278589 100644 --- a/connector/exceptionsconnector/go.mod +++ b/connector/exceptionsconnector/go.mod @@ -22,7 +22,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/connector/exceptionsconnector/go.sum b/connector/exceptionsconnector/go.sum index a7dea107a4db..fe8ec7870481 100644 --- a/connector/exceptionsconnector/go.sum +++ b/connector/exceptionsconnector/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/connector/routingconnector/go.mod b/connector/routingconnector/go.mod index e22d96acc5da..0290ad3daec6 100644 --- a/connector/routingconnector/go.mod +++ b/connector/routingconnector/go.mod @@ -19,7 +19,7 @@ require ( require ( github.com/alecthomas/participle/v2 v2.1.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/connector/routingconnector/go.sum b/connector/routingconnector/go.sum index 1ddf38c3b562..b123a87a342f 100644 --- a/connector/routingconnector/go.sum +++ b/connector/routingconnector/go.sum @@ -6,8 +6,8 @@ github.com/alecthomas/repr v0.2.0 h1:HAzS41CIzNW5syS8Mf9UwXhNH1J9aix/BvDRf1Ml2Yk github.com/alecthomas/repr v0.2.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/connector/spanmetricsconnector/go.mod b/connector/spanmetricsconnector/go.mod index 84e2b04d8572..9a2012fd464a 100644 --- a/connector/spanmetricsconnector/go.mod +++ b/connector/spanmetricsconnector/go.mod @@ -24,7 +24,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/connector/spanmetricsconnector/go.sum b/connector/spanmetricsconnector/go.sum index 70cdb4eca6ea..9eadfda6464e 100644 --- a/connector/spanmetricsconnector/go.sum +++ b/connector/spanmetricsconnector/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/alibabacloudlogserviceexporter/go.mod b/exporter/alibabacloudlogserviceexporter/go.mod index 6d893e213932..375fe839d05f 100644 --- a/exporter/alibabacloudlogserviceexporter/go.mod +++ b/exporter/alibabacloudlogserviceexporter/go.mod @@ -22,7 +22,7 @@ require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff v2.2.1+incompatible // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-kit/kit v0.10.0 // indirect github.com/go-logfmt/logfmt v0.5.1 // indirect diff --git a/exporter/alibabacloudlogserviceexporter/go.sum b/exporter/alibabacloudlogserviceexporter/go.sum index 782dc9c55738..65d883aac7fa 100644 --- a/exporter/alibabacloudlogserviceexporter/go.sum +++ b/exporter/alibabacloudlogserviceexporter/go.sum @@ -64,8 +64,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3 github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/clbanning/mxj/v2 v2.5.5 h1:oT81vUeEiQQ/DcHbzSytRngP6Ky9O+L+0Bw0zSJag9E= github.com/clbanning/mxj/v2 v2.5.5/go.mod h1:hNiWqW14h+kc+MdF9C6/YoRfjEJoR3ou6tn/Qo+ve2s= github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= diff --git a/exporter/awsemfexporter/go.mod b/exporter/awsemfexporter/go.mod index c8f8db7d4064..ecf30e288abb 100644 --- a/exporter/awsemfexporter/go.mod +++ b/exporter/awsemfexporter/go.mod @@ -28,7 +28,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/exporter/awsemfexporter/go.sum b/exporter/awsemfexporter/go.sum index 89961d956e72..8f71273c4265 100644 --- a/exporter/awsemfexporter/go.sum +++ b/exporter/awsemfexporter/go.sum @@ -4,8 +4,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/awskinesisexporter/go.mod b/exporter/awskinesisexporter/go.mod index 56285812b3f7..391d345c72d5 100644 --- a/exporter/awskinesisexporter/go.mod +++ b/exporter/awskinesisexporter/go.mod @@ -41,7 +41,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 // indirect github.com/aws/smithy-go v1.20.2 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/exporter/awskinesisexporter/go.sum b/exporter/awskinesisexporter/go.sum index a0ee21d5d564..1640e8b63449 100644 --- a/exporter/awskinesisexporter/go.sum +++ b/exporter/awskinesisexporter/go.sum @@ -34,8 +34,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/exporter/awsxrayexporter/go.mod b/exporter/awsxrayexporter/go.mod index 473dbd501945..4aa4643df24c 100644 --- a/exporter/awsxrayexporter/go.mod +++ b/exporter/awsxrayexporter/go.mod @@ -24,7 +24,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/exporter/awsxrayexporter/go.sum b/exporter/awsxrayexporter/go.sum index f3f2cb581128..8a845114f7cf 100644 --- a/exporter/awsxrayexporter/go.sum +++ b/exporter/awsxrayexporter/go.sum @@ -4,8 +4,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/azuredataexplorerexporter/go.mod b/exporter/azuredataexplorerexporter/go.mod index 3c7560fe1754..9acc82034472 100644 --- a/exporter/azuredataexplorerexporter/go.mod +++ b/exporter/azuredataexplorerexporter/go.mod @@ -37,7 +37,7 @@ require ( github.com/AzureAD/microsoft-authentication-library-for-go v1.2.0 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/exporter/azuredataexplorerexporter/go.sum b/exporter/azuredataexplorerexporter/go.sum index f7292f6ccba6..03ad96077e22 100644 --- a/exporter/azuredataexplorerexporter/go.sum +++ b/exporter/azuredataexplorerexporter/go.sum @@ -41,8 +41,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/azuremonitorexporter/go.mod b/exporter/azuremonitorexporter/go.mod index e07afd6d2813..579294458602 100644 --- a/exporter/azuremonitorexporter/go.mod +++ b/exporter/azuremonitorexporter/go.mod @@ -23,7 +23,7 @@ require ( code.cloudfoundry.org/clock v0.0.0-20180518195852-02e53af36e6c // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/exporter/azuremonitorexporter/go.sum b/exporter/azuremonitorexporter/go.sum index 9717507cb359..425707190ec0 100644 --- a/exporter/azuremonitorexporter/go.sum +++ b/exporter/azuremonitorexporter/go.sum @@ -4,8 +4,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/cassandraexporter/go.mod b/exporter/cassandraexporter/go.mod index cc67fa824490..3865b167b095 100644 --- a/exporter/cassandraexporter/go.mod +++ b/exporter/cassandraexporter/go.mod @@ -20,7 +20,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/exporter/cassandraexporter/go.sum b/exporter/cassandraexporter/go.sum index eddc3c85b8d3..f55ecfcf188c 100644 --- a/exporter/cassandraexporter/go.sum +++ b/exporter/cassandraexporter/go.sum @@ -6,8 +6,8 @@ github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 h1:DDGfHa7BWjL4Yn github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod h1:Ekp36dRnpXw/yCqJaO+ZrUyxD+3VXMFFr56k5XYrpB4= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/clickhouseexporter/go.mod b/exporter/clickhouseexporter/go.mod index 9f4b0e68cf91..62bdfa094b44 100644 --- a/exporter/clickhouseexporter/go.mod +++ b/exporter/clickhouseexporter/go.mod @@ -30,7 +30,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/andybalholm/brotli v1.1.0 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/exporter/clickhouseexporter/go.sum b/exporter/clickhouseexporter/go.sum index f176f2624633..12485a9d7c50 100644 --- a/exporter/clickhouseexporter/go.sum +++ b/exporter/clickhouseexporter/go.sum @@ -18,8 +18,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/exporter/datadogexporter/go.mod b/exporter/datadogexporter/go.mod index a941e42388db..e8d7aa89323f 100644 --- a/exporter/datadogexporter/go.mod +++ b/exporter/datadogexporter/go.mod @@ -94,7 +94,7 @@ require ( github.com/beorn7/perks v1.0.1 // indirect github.com/bmatcuk/doublestar/v4 v4.6.1 // indirect github.com/cenkalti/backoff v2.2.1+incompatible // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/cncf/xds/go v0.0.0-20231128003011-0fa0005c9caa // indirect github.com/containerd/cgroups/v3 v3.0.3 // indirect diff --git a/exporter/datadogexporter/go.sum b/exporter/datadogexporter/go.sum index fa708dda1a6f..e749c84f550a 100644 --- a/exporter/datadogexporter/go.sum +++ b/exporter/datadogexporter/go.sum @@ -161,8 +161,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3 github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/exporter/datadogexporter/integrationtest/go.mod b/exporter/datadogexporter/integrationtest/go.mod index c697490c0a30..a13bbaeac007 100644 --- a/exporter/datadogexporter/integrationtest/go.mod +++ b/exporter/datadogexporter/integrationtest/go.mod @@ -57,7 +57,7 @@ require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff v2.2.1+incompatible // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/containerd/cgroups/v3 v3.0.3 // indirect github.com/coreos/go-systemd/v22 v22.5.0 // indirect diff --git a/exporter/datadogexporter/integrationtest/go.sum b/exporter/datadogexporter/integrationtest/go.sum index 49a5d1f17d42..e4f2d5f70127 100644 --- a/exporter/datadogexporter/integrationtest/go.sum +++ b/exporter/datadogexporter/integrationtest/go.sum @@ -125,8 +125,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3 github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/exporter/datasetexporter/go.mod b/exporter/datasetexporter/go.mod index 721f70e083af..49495831bea3 100644 --- a/exporter/datasetexporter/go.mod +++ b/exporter/datasetexporter/go.mod @@ -26,7 +26,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cskr/pubsub v1.0.2 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/exporter/datasetexporter/go.sum b/exporter/datasetexporter/go.sum index 810fba6dcba5..504562c73db8 100644 --- a/exporter/datasetexporter/go.sum +++ b/exporter/datasetexporter/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cskr/pubsub v1.0.2 h1:vlOzMhl6PFn60gRlTQQsIfVwaPB/B/8MziK8FhEPt/0= github.com/cskr/pubsub v1.0.2/go.mod h1:/8MzYXk/NJAz782G8RPkFzXTZVu63VotefPnR9TIRis= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/elasticsearchexporter/go.mod b/exporter/elasticsearchexporter/go.mod index a70faa5dbc81..ef00e5903a99 100644 --- a/exporter/elasticsearchexporter/go.mod +++ b/exporter/elasticsearchexporter/go.mod @@ -25,7 +25,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/exporter/elasticsearchexporter/go.sum b/exporter/elasticsearchexporter/go.sum index cfcfd8b1c276..069e5f076f95 100644 --- a/exporter/elasticsearchexporter/go.sum +++ b/exporter/elasticsearchexporter/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/fileexporter/go.mod b/exporter/fileexporter/go.mod index aaf90bead3f5..9b9d465c69a2 100644 --- a/exporter/fileexporter/go.mod +++ b/exporter/fileexporter/go.mod @@ -25,7 +25,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/exporter/fileexporter/go.sum b/exporter/fileexporter/go.sum index fb7433e13442..1f7bc4ecd673 100644 --- a/exporter/fileexporter/go.sum +++ b/exporter/fileexporter/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/exporter/honeycombmarkerexporter/go.mod b/exporter/honeycombmarkerexporter/go.mod index 812d9fd29501..f606fd4cb2b0 100644 --- a/exporter/honeycombmarkerexporter/go.mod +++ b/exporter/honeycombmarkerexporter/go.mod @@ -23,7 +23,7 @@ require ( github.com/alecthomas/participle/v2 v2.1.1 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/exporter/honeycombmarkerexporter/go.sum b/exporter/honeycombmarkerexporter/go.sum index dc6c6272b4e9..da86137a752f 100644 --- a/exporter/honeycombmarkerexporter/go.sum +++ b/exporter/honeycombmarkerexporter/go.sum @@ -8,8 +8,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/instanaexporter/go.mod b/exporter/instanaexporter/go.mod index aadf7f814cfe..a6841c642588 100644 --- a/exporter/instanaexporter/go.mod +++ b/exporter/instanaexporter/go.mod @@ -24,7 +24,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/exporter/instanaexporter/go.sum b/exporter/instanaexporter/go.sum index accf836fbee9..909747ddafbb 100644 --- a/exporter/instanaexporter/go.sum +++ b/exporter/instanaexporter/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/kafkaexporter/go.mod b/exporter/kafkaexporter/go.mod index c76ccf803658..dc51db3b90d5 100644 --- a/exporter/kafkaexporter/go.mod +++ b/exporter/kafkaexporter/go.mod @@ -33,7 +33,7 @@ require ( github.com/apache/thrift v0.19.0 // indirect github.com/aws/aws-sdk-go v1.51.17 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/eapache/go-resiliency v1.6.0 // indirect github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect diff --git a/exporter/kafkaexporter/go.sum b/exporter/kafkaexporter/go.sum index 6979ba924933..2864be2c8120 100644 --- a/exporter/kafkaexporter/go.sum +++ b/exporter/kafkaexporter/go.sum @@ -8,8 +8,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/exporter/logicmonitorexporter/go.mod b/exporter/logicmonitorexporter/go.mod index 5109663de10d..543038d1ea22 100644 --- a/exporter/logicmonitorexporter/go.mod +++ b/exporter/logicmonitorexporter/go.mod @@ -24,7 +24,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/exporter/logicmonitorexporter/go.sum b/exporter/logicmonitorexporter/go.sum index 3e1c5729fa5e..ff71feefa62a 100644 --- a/exporter/logicmonitorexporter/go.sum +++ b/exporter/logicmonitorexporter/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/logzioexporter/go.mod b/exporter/logzioexporter/go.mod index 7de0e73783b5..a58ea0b2530a 100644 --- a/exporter/logzioexporter/go.mod +++ b/exporter/logzioexporter/go.mod @@ -30,7 +30,7 @@ require ( github.com/apache/thrift v0.19.0 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/fatih/color v1.14.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect diff --git a/exporter/logzioexporter/go.sum b/exporter/logzioexporter/go.sum index 8cf972d14d06..9b4a5458bc67 100644 --- a/exporter/logzioexporter/go.sum +++ b/exporter/logzioexporter/go.sum @@ -4,8 +4,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/exporter/lokiexporter/go.mod b/exporter/lokiexporter/go.mod index 883233f27f99..cdad28ab42a5 100644 --- a/exporter/lokiexporter/go.mod +++ b/exporter/lokiexporter/go.mod @@ -29,7 +29,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dennwc/varint v1.0.0 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect diff --git a/exporter/lokiexporter/go.sum b/exporter/lokiexporter/go.sum index afaa628159ac..6f295204ac79 100644 --- a/exporter/lokiexporter/go.sum +++ b/exporter/lokiexporter/go.sum @@ -16,8 +16,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/exporter/opencensusexporter/go.mod b/exporter/opencensusexporter/go.mod index e47a8dc651d1..3bf0a5f67d2d 100644 --- a/exporter/opencensusexporter/go.mod +++ b/exporter/opencensusexporter/go.mod @@ -28,7 +28,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/exporter/opencensusexporter/go.sum b/exporter/opencensusexporter/go.sum index 1c583c3ffcd7..f7e7488d0019 100644 --- a/exporter/opencensusexporter/go.sum +++ b/exporter/opencensusexporter/go.sum @@ -7,8 +7,8 @@ github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyY github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/census-instrumentation/opencensus-proto v0.4.1 h1:iKLQ0xPNFxR/2hzXZMrBo8f1j86j5WHzznCCQxV/b8g= github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/opensearchexporter/go.mod b/exporter/opensearchexporter/go.mod index f4c4d1ec7564..649f01773e4d 100644 --- a/exporter/opensearchexporter/go.mod +++ b/exporter/opensearchexporter/go.mod @@ -21,7 +21,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect github.com/google/uuid v1.6.0 // indirect github.com/hashicorp/go-version v1.6.0 // indirect diff --git a/exporter/opensearchexporter/go.sum b/exporter/opensearchexporter/go.sum index 35df2e49f790..1c852ffeec49 100644 --- a/exporter/opensearchexporter/go.sum +++ b/exporter/opensearchexporter/go.sum @@ -15,8 +15,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/prometheusexporter/go.mod b/exporter/prometheusexporter/go.mod index c448e36baa2e..df9c31d8ba33 100644 --- a/exporter/prometheusexporter/go.mod +++ b/exporter/prometheusexporter/go.mod @@ -43,7 +43,7 @@ require ( github.com/aws/aws-sdk-go v1.50.32 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cncf/xds/go v0.0.0-20231128003011-0fa0005c9caa // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dennwc/varint v1.0.0 // indirect diff --git a/exporter/prometheusexporter/go.sum b/exporter/prometheusexporter/go.sum index e023ad9a475f..c8c7e7fd0d5f 100644 --- a/exporter/prometheusexporter/go.sum +++ b/exporter/prometheusexporter/go.sum @@ -87,8 +87,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3 github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/exporter/prometheusremotewriteexporter/go.mod b/exporter/prometheusremotewriteexporter/go.mod index 41738fab51c9..5a95834a2795 100644 --- a/exporter/prometheusremotewriteexporter/go.mod +++ b/exporter/prometheusremotewriteexporter/go.mod @@ -33,7 +33,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/exporter/prometheusremotewriteexporter/go.sum b/exporter/prometheusremotewriteexporter/go.sum index 45963701292c..1ee82d0151bd 100644 --- a/exporter/prometheusremotewriteexporter/go.sum +++ b/exporter/prometheusremotewriteexporter/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/exporter/pulsarexporter/go.mod b/exporter/pulsarexporter/go.mod index 7dfac668019a..c2f2ffa126bd 100644 --- a/exporter/pulsarexporter/go.mod +++ b/exporter/pulsarexporter/go.mod @@ -32,7 +32,7 @@ require ( github.com/apache/thrift v0.19.0 // indirect github.com/ardielle/ardielle-go v1.5.2 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/danieljoos/wincred v1.0.2 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dvsekhvalnov/jose2go v1.6.0 // indirect diff --git a/exporter/pulsarexporter/go.sum b/exporter/pulsarexporter/go.sum index 7dd880551c98..3e537956edb5 100644 --- a/exporter/pulsarexporter/go.sum +++ b/exporter/pulsarexporter/go.sum @@ -76,8 +76,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3 github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/exporter/sapmexporter/go.mod b/exporter/sapmexporter/go.mod index 3195fa6b1cb1..74309ec4645d 100644 --- a/exporter/sapmexporter/go.mod +++ b/exporter/sapmexporter/go.mod @@ -27,7 +27,7 @@ require ( require ( github.com/apache/thrift v0.19.0 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/exporter/sapmexporter/go.sum b/exporter/sapmexporter/go.sum index 897bbd12ceaa..c6c0ba98a52c 100644 --- a/exporter/sapmexporter/go.sum +++ b/exporter/sapmexporter/go.sum @@ -7,8 +7,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/sentryexporter/go.mod b/exporter/sentryexporter/go.mod index cb0a78c41773..8ea95dd22d51 100644 --- a/exporter/sentryexporter/go.mod +++ b/exporter/sentryexporter/go.mod @@ -20,7 +20,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/exporter/sentryexporter/go.sum b/exporter/sentryexporter/go.sum index d5efad1f0d4e..ba0915cc9de9 100644 --- a/exporter/sentryexporter/go.sum +++ b/exporter/sentryexporter/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/signalfxexporter/go.mod b/exporter/signalfxexporter/go.mod index 69669c72757a..960eea85d3c2 100644 --- a/exporter/signalfxexporter/go.mod +++ b/exporter/signalfxexporter/go.mod @@ -38,7 +38,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/exporter/signalfxexporter/go.sum b/exporter/signalfxexporter/go.sum index 56429f4a7383..c108cf2464ea 100644 --- a/exporter/signalfxexporter/go.sum +++ b/exporter/signalfxexporter/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/exporter/skywalkingexporter/go.mod b/exporter/skywalkingexporter/go.mod index dadbf2270a10..dba55e7c066c 100644 --- a/exporter/skywalkingexporter/go.mod +++ b/exporter/skywalkingexporter/go.mod @@ -25,7 +25,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/exporter/skywalkingexporter/go.sum b/exporter/skywalkingexporter/go.sum index b74733d8cbdd..b5432c74fbe7 100644 --- a/exporter/skywalkingexporter/go.sum +++ b/exporter/skywalkingexporter/go.sum @@ -9,8 +9,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3 github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= diff --git a/exporter/splunkhecexporter/go.mod b/exporter/splunkhecexporter/go.mod index 8b0c84f4a40c..6dba9f51100c 100644 --- a/exporter/splunkhecexporter/go.mod +++ b/exporter/splunkhecexporter/go.mod @@ -37,7 +37,7 @@ require ( github.com/Microsoft/go-winio v0.6.1 // indirect github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/exporter/splunkhecexporter/go.sum b/exporter/splunkhecexporter/go.sum index 46d5fc08fbc2..0a2c88075ec3 100644 --- a/exporter/splunkhecexporter/go.sum +++ b/exporter/splunkhecexporter/go.sum @@ -15,8 +15,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= diff --git a/exporter/tencentcloudlogserviceexporter/go.mod b/exporter/tencentcloudlogserviceexporter/go.mod index 5a4c58963211..8882c6cd24eb 100644 --- a/exporter/tencentcloudlogserviceexporter/go.mod +++ b/exporter/tencentcloudlogserviceexporter/go.mod @@ -22,7 +22,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/frankban/quicktest v1.14.0 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/exporter/tencentcloudlogserviceexporter/go.sum b/exporter/tencentcloudlogserviceexporter/go.sum index 188010517577..fe26755b0e53 100644 --- a/exporter/tencentcloudlogserviceexporter/go.sum +++ b/exporter/tencentcloudlogserviceexporter/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/exporter/zipkinexporter/go.mod b/exporter/zipkinexporter/go.mod index 3e074bdc09e8..febf53734ab1 100644 --- a/exporter/zipkinexporter/go.mod +++ b/exporter/zipkinexporter/go.mod @@ -26,7 +26,7 @@ require ( require ( github.com/apache/thrift v0.19.0 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/exporter/zipkinexporter/go.sum b/exporter/zipkinexporter/go.sum index 70cf75de5186..3c6a645c5b60 100644 --- a/exporter/zipkinexporter/go.sum +++ b/exporter/zipkinexporter/go.sum @@ -4,8 +4,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/extension/encoding/jaegerencodingextension/go.mod b/extension/encoding/jaegerencodingextension/go.mod index fa5f8ace6f5a..9e2bf6379e71 100644 --- a/extension/encoding/jaegerencodingextension/go.mod +++ b/extension/encoding/jaegerencodingextension/go.mod @@ -20,7 +20,7 @@ require ( require ( github.com/apache/thrift v0.19.0 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/extension/encoding/jaegerencodingextension/go.sum b/extension/encoding/jaegerencodingextension/go.sum index 8a1760fc5be7..6f3d3265c6fb 100644 --- a/extension/encoding/jaegerencodingextension/go.sum +++ b/extension/encoding/jaegerencodingextension/go.sum @@ -2,8 +2,8 @@ github.com/apache/thrift v0.19.0 h1:sOqkWPzMj7w6XaYbJQG7m4sGqVolaW/0D28Ln7yPzMk= github.com/apache/thrift v0.19.0/go.mod h1:SUALL216IiaOw2Oy+5Vs9lboJ/t9g40C+G07Dc0QC1I= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/extension/encoding/textencodingextension/go.mod b/extension/encoding/textencodingextension/go.mod index d6f52c333f07..33e10e162b06 100644 --- a/extension/encoding/textencodingextension/go.mod +++ b/extension/encoding/textencodingextension/go.mod @@ -17,7 +17,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/extension/encoding/textencodingextension/go.sum b/extension/encoding/textencodingextension/go.sum index 5d278bf56ac0..2c6638efc237 100644 --- a/extension/encoding/textencodingextension/go.sum +++ b/extension/encoding/textencodingextension/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/extension/encoding/zipkinencodingextension/go.mod b/extension/encoding/zipkinencodingextension/go.mod index de8458e69d1b..71c2eb40825a 100644 --- a/extension/encoding/zipkinencodingextension/go.mod +++ b/extension/encoding/zipkinencodingextension/go.mod @@ -18,7 +18,7 @@ require ( require ( github.com/apache/thrift v0.19.0 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/extension/encoding/zipkinencodingextension/go.sum b/extension/encoding/zipkinencodingextension/go.sum index 54e03ab59d96..67483f96acff 100644 --- a/extension/encoding/zipkinencodingextension/go.sum +++ b/extension/encoding/zipkinencodingextension/go.sum @@ -2,8 +2,8 @@ github.com/apache/thrift v0.19.0 h1:sOqkWPzMj7w6XaYbJQG7m4sGqVolaW/0D28Ln7yPzMk= github.com/apache/thrift v0.19.0/go.mod h1:SUALL216IiaOw2Oy+5Vs9lboJ/t9g40C+G07Dc0QC1I= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/go.mod b/go.mod index a569002b9fac..1efceb656cf1 100644 --- a/go.mod +++ b/go.mod @@ -308,7 +308,7 @@ require ( github.com/cenkalti/backoff v2.2.1+incompatible // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/checkpoint-restore/go-criu/v5 v5.3.0 // indirect github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect github.com/cilium/ebpf v0.11.0 // indirect diff --git a/go.sum b/go.sum index 7813142966c5..575960b6092b 100644 --- a/go.sum +++ b/go.sum @@ -441,8 +441,8 @@ github.com/census-instrumentation/opencensus-proto v0.4.1 h1:iKLQ0xPNFxR/2hzXZMr github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/checkpoint-restore/go-criu/v5 v5.3.0 h1:wpFFOoomK3389ue2lAb0Boag6XPht5QYpipxmSNL4d8= github.com/checkpoint-restore/go-criu/v5 v5.3.0/go.mod h1:E/eQpaFtUKGOOSEBZgmKAcn+zUUwWxqcaKZlF54wK8E= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= diff --git a/internal/coreinternal/go.mod b/internal/coreinternal/go.mod index df0da1ae01ef..d93cc93894e8 100644 --- a/internal/coreinternal/go.mod +++ b/internal/coreinternal/go.mod @@ -29,7 +29,7 @@ require ( github.com/Microsoft/go-winio v0.6.1 // indirect github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/internal/coreinternal/go.sum b/internal/coreinternal/go.sum index c8360df088cb..06797f6aa197 100644 --- a/internal/coreinternal/go.sum +++ b/internal/coreinternal/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/internal/exp/metrics/go.mod b/internal/exp/metrics/go.mod index 4a4b70198869..120292d5b192 100644 --- a/internal/exp/metrics/go.mod +++ b/internal/exp/metrics/go.mod @@ -9,7 +9,7 @@ require ( ) require ( - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect diff --git a/internal/exp/metrics/go.sum b/internal/exp/metrics/go.sum index f071f3642826..4e234ad9a4f6 100644 --- a/internal/exp/metrics/go.sum +++ b/internal/exp/metrics/go.sum @@ -1,5 +1,5 @@ -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/internal/filter/go.mod b/internal/filter/go.mod index 2135f2ca2a11..d7add9eabddb 100644 --- a/internal/filter/go.mod +++ b/internal/filter/go.mod @@ -21,7 +21,7 @@ require ( require ( github.com/alecthomas/participle/v2 v2.1.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/internal/filter/go.sum b/internal/filter/go.sum index cfada97d9df9..a3a65ac8cef3 100644 --- a/internal/filter/go.sum +++ b/internal/filter/go.sum @@ -6,8 +6,8 @@ github.com/alecthomas/repr v0.2.0 h1:HAzS41CIzNW5syS8Mf9UwXhNH1J9aix/BvDRf1Ml2Yk github.com/alecthomas/repr v0.2.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/pkg/golden/go.mod b/pkg/golden/go.mod index 9c34c1ffddbf..46fd2f8c9780 100644 --- a/pkg/golden/go.mod +++ b/pkg/golden/go.mod @@ -11,7 +11,7 @@ require ( ) require ( - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect diff --git a/pkg/golden/go.sum b/pkg/golden/go.sum index f071f3642826..4e234ad9a4f6 100644 --- a/pkg/golden/go.sum +++ b/pkg/golden/go.sum @@ -1,5 +1,5 @@ -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/pkg/ottl/go.mod b/pkg/ottl/go.mod index b1925894ae14..98ae7facc8f1 100644 --- a/pkg/ottl/go.mod +++ b/pkg/ottl/go.mod @@ -21,7 +21,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/pkg/ottl/go.sum b/pkg/ottl/go.sum index daa2abf55802..f0dd17d0045b 100644 --- a/pkg/ottl/go.sum +++ b/pkg/ottl/go.sum @@ -6,8 +6,8 @@ github.com/alecthomas/repr v0.2.0 h1:HAzS41CIzNW5syS8Mf9UwXhNH1J9aix/BvDRf1Ml2Yk github.com/alecthomas/repr v0.2.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/pkg/pdatatest/go.mod b/pkg/pdatatest/go.mod index b1a7699898e9..ce1089166927 100644 --- a/pkg/pdatatest/go.mod +++ b/pkg/pdatatest/go.mod @@ -12,7 +12,7 @@ require ( ) require ( - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect diff --git a/pkg/pdatatest/go.sum b/pkg/pdatatest/go.sum index f071f3642826..4e234ad9a4f6 100644 --- a/pkg/pdatatest/go.sum +++ b/pkg/pdatatest/go.sum @@ -1,5 +1,5 @@ -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/pkg/pdatautil/go.mod b/pkg/pdatautil/go.mod index 252c01a3cd42..7f66cc13162c 100644 --- a/pkg/pdatautil/go.mod +++ b/pkg/pdatautil/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil go 1.21 require ( - github.com/cespare/xxhash/v2 v2.2.0 + github.com/cespare/xxhash/v2 v2.3.0 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b go.uber.org/goleak v1.3.0 diff --git a/pkg/pdatautil/go.sum b/pkg/pdatautil/go.sum index 576f6fbc37fc..4eb69c6af3ee 100644 --- a/pkg/pdatautil/go.sum +++ b/pkg/pdatautil/go.sum @@ -1,5 +1,5 @@ -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/pkg/resourcetotelemetry/go.sum b/pkg/resourcetotelemetry/go.sum index 86a3d3e0c118..48c898fdad96 100644 --- a/pkg/resourcetotelemetry/go.sum +++ b/pkg/resourcetotelemetry/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/pkg/stanza/go.mod b/pkg/stanza/go.mod index a29d1e9ef9bd..8c75e3faf263 100644 --- a/pkg/stanza/go.mod +++ b/pkg/stanza/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/bmatcuk/doublestar/v4 v4.6.1 - github.com/cespare/xxhash/v2 v2.2.0 + github.com/cespare/xxhash/v2 v2.3.0 github.com/expr-lang/expr v1.16.3 github.com/fsnotify/fsnotify v1.7.0 github.com/influxdata/go-syslog/v3 v3.0.1-0.20230911200830-875f5bc594a4 diff --git a/pkg/stanza/go.sum b/pkg/stanza/go.sum index fb7bf1e4e42d..b5e48f602765 100644 --- a/pkg/stanza/go.sum +++ b/pkg/stanza/go.sum @@ -4,8 +4,8 @@ github.com/bmatcuk/doublestar/v4 v4.6.1 h1:FH9SifrbvJhnlQpztAx++wlkk70QBf0iBWDwN github.com/bmatcuk/doublestar/v4 v4.6.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/pkg/translator/azure/go.mod b/pkg/translator/azure/go.mod index 618b45fe1c30..4373e7f0b6f6 100644 --- a/pkg/translator/azure/go.mod +++ b/pkg/translator/azure/go.mod @@ -16,7 +16,7 @@ require ( ) require ( - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect github.com/gogo/protobuf v1.3.2 // indirect diff --git a/pkg/translator/azure/go.sum b/pkg/translator/azure/go.sum index 1263f84c3673..c24c7ad176ca 100644 --- a/pkg/translator/azure/go.sum +++ b/pkg/translator/azure/go.sum @@ -1,5 +1,5 @@ -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/pkg/translator/loki/go.mod b/pkg/translator/loki/go.mod index 8596af5b0d3d..ded4f3b7ba61 100644 --- a/pkg/translator/loki/go.mod +++ b/pkg/translator/loki/go.mod @@ -18,7 +18,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dennwc/varint v1.0.0 // indirect github.com/go-kit/log v0.2.1 // indirect diff --git a/pkg/translator/loki/go.sum b/pkg/translator/loki/go.sum index 0a1ea7e52953..c0f868e99905 100644 --- a/pkg/translator/loki/go.sum +++ b/pkg/translator/loki/go.sum @@ -14,8 +14,8 @@ github.com/bboreham/go-loser v0.0.0-20230920113527-fcc2c21820a3 h1:6df1vn4bBlDDo github.com/bboreham/go-loser v0.0.0-20230920113527-fcc2c21820a3/go.mod h1:CIWtjkly68+yqLPbvwwR/fjNJA/idrtULjZWh2v1ys0= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/pkg/translator/opencensus/go.mod b/pkg/translator/opencensus/go.mod index 573cfb606c65..0e159e7976b8 100644 --- a/pkg/translator/opencensus/go.mod +++ b/pkg/translator/opencensus/go.mod @@ -17,7 +17,7 @@ require ( ) require ( - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect diff --git a/pkg/translator/opencensus/go.sum b/pkg/translator/opencensus/go.sum index a4f16f398d15..9c674d8ecab3 100644 --- a/pkg/translator/opencensus/go.sum +++ b/pkg/translator/opencensus/go.sum @@ -3,8 +3,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03 github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/census-instrumentation/opencensus-proto v0.4.1 h1:iKLQ0xPNFxR/2hzXZMrBo8f1j86j5WHzznCCQxV/b8g= github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/pkg/translator/signalfx/go.mod b/pkg/translator/signalfx/go.mod index 23fe00e81ece..5cbb15aec588 100644 --- a/pkg/translator/signalfx/go.mod +++ b/pkg/translator/signalfx/go.mod @@ -13,7 +13,7 @@ require ( ) require ( - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect diff --git a/pkg/translator/signalfx/go.sum b/pkg/translator/signalfx/go.sum index c1baac54f23c..e3755b979608 100644 --- a/pkg/translator/signalfx/go.sum +++ b/pkg/translator/signalfx/go.sum @@ -1,5 +1,5 @@ -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/processor/attributesprocessor/go.mod b/processor/attributesprocessor/go.mod index 5b295356b558..fc33692300be 100644 --- a/processor/attributesprocessor/go.mod +++ b/processor/attributesprocessor/go.mod @@ -23,7 +23,7 @@ require ( require ( github.com/alecthomas/participle/v2 v2.1.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/processor/attributesprocessor/go.sum b/processor/attributesprocessor/go.sum index c1388163373d..e93f9067acfd 100644 --- a/processor/attributesprocessor/go.sum +++ b/processor/attributesprocessor/go.sum @@ -6,8 +6,8 @@ github.com/alecthomas/repr v0.2.0 h1:HAzS41CIzNW5syS8Mf9UwXhNH1J9aix/BvDRf1Ml2Yk github.com/alecthomas/repr v0.2.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/processor/cumulativetodeltaprocessor/go.mod b/processor/cumulativetodeltaprocessor/go.mod index dae3a29adaf2..cdfed885ff2b 100644 --- a/processor/cumulativetodeltaprocessor/go.mod +++ b/processor/cumulativetodeltaprocessor/go.mod @@ -19,7 +19,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/processor/cumulativetodeltaprocessor/go.sum b/processor/cumulativetodeltaprocessor/go.sum index 847e8b09343a..8f3e8e6170cd 100644 --- a/processor/cumulativetodeltaprocessor/go.sum +++ b/processor/cumulativetodeltaprocessor/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/processor/deltatocumulativeprocessor/go.mod b/processor/deltatocumulativeprocessor/go.mod index e7e1c4970663..822b3a1bf125 100644 --- a/processor/deltatocumulativeprocessor/go.mod +++ b/processor/deltatocumulativeprocessor/go.mod @@ -17,7 +17,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/processor/deltatocumulativeprocessor/go.sum b/processor/deltatocumulativeprocessor/go.sum index 1fec22705eb5..4087bddb2400 100644 --- a/processor/deltatocumulativeprocessor/go.sum +++ b/processor/deltatocumulativeprocessor/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/processor/filterprocessor/go.mod b/processor/filterprocessor/go.mod index 073156ec82de..dfed7b711695 100644 --- a/processor/filterprocessor/go.mod +++ b/processor/filterprocessor/go.mod @@ -24,7 +24,7 @@ require ( require ( github.com/alecthomas/participle/v2 v2.1.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/processor/filterprocessor/go.sum b/processor/filterprocessor/go.sum index c1388163373d..e93f9067acfd 100644 --- a/processor/filterprocessor/go.sum +++ b/processor/filterprocessor/go.sum @@ -6,8 +6,8 @@ github.com/alecthomas/repr v0.2.0 h1:HAzS41CIzNW5syS8Mf9UwXhNH1J9aix/BvDRf1Ml2Yk github.com/alecthomas/repr v0.2.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/processor/groupbyattrsprocessor/go.mod b/processor/groupbyattrsprocessor/go.mod index bf2ea9973b68..8a4791c85502 100644 --- a/processor/groupbyattrsprocessor/go.mod +++ b/processor/groupbyattrsprocessor/go.mod @@ -20,7 +20,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/processor/groupbyattrsprocessor/go.sum b/processor/groupbyattrsprocessor/go.sum index 1fec22705eb5..4087bddb2400 100644 --- a/processor/groupbyattrsprocessor/go.sum +++ b/processor/groupbyattrsprocessor/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/processor/logstransformprocessor/go.mod b/processor/logstransformprocessor/go.mod index 699751621a86..1babef933314 100644 --- a/processor/logstransformprocessor/go.mod +++ b/processor/logstransformprocessor/go.mod @@ -22,7 +22,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/processor/logstransformprocessor/go.sum b/processor/logstransformprocessor/go.sum index d4285c37288b..5fbb7dc68819 100644 --- a/processor/logstransformprocessor/go.sum +++ b/processor/logstransformprocessor/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/processor/metricstransformprocessor/go.mod b/processor/metricstransformprocessor/go.mod index ef7c160631c1..5b984a770cdc 100644 --- a/processor/metricstransformprocessor/go.mod +++ b/processor/metricstransformprocessor/go.mod @@ -19,7 +19,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/processor/metricstransformprocessor/go.sum b/processor/metricstransformprocessor/go.sum index 1fec22705eb5..4087bddb2400 100644 --- a/processor/metricstransformprocessor/go.sum +++ b/processor/metricstransformprocessor/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/processor/probabilisticsamplerprocessor/go.mod b/processor/probabilisticsamplerprocessor/go.mod index 0963625b69d2..5a84f7fc1609 100644 --- a/processor/probabilisticsamplerprocessor/go.mod +++ b/processor/probabilisticsamplerprocessor/go.mod @@ -23,7 +23,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/processor/probabilisticsamplerprocessor/go.sum b/processor/probabilisticsamplerprocessor/go.sum index 5619b10ce69e..2ca5e3b33121 100644 --- a/processor/probabilisticsamplerprocessor/go.sum +++ b/processor/probabilisticsamplerprocessor/go.sum @@ -5,8 +5,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= diff --git a/processor/resourceprocessor/go.mod b/processor/resourceprocessor/go.mod index e58297a034da..3c3d8a2e2faa 100644 --- a/processor/resourceprocessor/go.mod +++ b/processor/resourceprocessor/go.mod @@ -19,7 +19,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/processor/resourceprocessor/go.sum b/processor/resourceprocessor/go.sum index 1fec22705eb5..4087bddb2400 100644 --- a/processor/resourceprocessor/go.sum +++ b/processor/resourceprocessor/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/processor/routingprocessor/go.mod b/processor/routingprocessor/go.mod index 19fa48b877f2..cbb5625fe348 100644 --- a/processor/routingprocessor/go.mod +++ b/processor/routingprocessor/go.mod @@ -27,7 +27,7 @@ require ( github.com/alecthomas/participle/v2 v2.1.1 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/processor/routingprocessor/go.sum b/processor/routingprocessor/go.sum index 4145cca3217c..e494e92d9313 100644 --- a/processor/routingprocessor/go.sum +++ b/processor/routingprocessor/go.sum @@ -8,8 +8,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/processor/spanprocessor/go.mod b/processor/spanprocessor/go.mod index 49cb4b202dd6..ec590269fe20 100644 --- a/processor/spanprocessor/go.mod +++ b/processor/spanprocessor/go.mod @@ -22,7 +22,7 @@ require ( require ( github.com/alecthomas/participle/v2 v2.1.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/processor/spanprocessor/go.sum b/processor/spanprocessor/go.sum index a615c9bd8d6c..1a34415480f8 100644 --- a/processor/spanprocessor/go.sum +++ b/processor/spanprocessor/go.sum @@ -6,8 +6,8 @@ github.com/alecthomas/repr v0.2.0 h1:HAzS41CIzNW5syS8Mf9UwXhNH1J9aix/BvDRf1Ml2Yk github.com/alecthomas/repr v0.2.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/processor/tailsamplingprocessor/go.mod b/processor/tailsamplingprocessor/go.mod index f3fbf36607f7..297e7d7103f0 100644 --- a/processor/tailsamplingprocessor/go.mod +++ b/processor/tailsamplingprocessor/go.mod @@ -26,7 +26,7 @@ require ( require ( github.com/alecthomas/participle/v2 v2.1.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/processor/tailsamplingprocessor/go.sum b/processor/tailsamplingprocessor/go.sum index 07fe5a306f90..d7e638d949c4 100644 --- a/processor/tailsamplingprocessor/go.sum +++ b/processor/tailsamplingprocessor/go.sum @@ -9,8 +9,8 @@ github.com/alecthomas/repr v0.2.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW5 github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/processor/transformprocessor/go.mod b/processor/transformprocessor/go.mod index 9e826cbb165d..686d3a5bf4cf 100644 --- a/processor/transformprocessor/go.mod +++ b/processor/transformprocessor/go.mod @@ -23,7 +23,7 @@ require ( require ( github.com/alecthomas/participle/v2 v2.1.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/processor/transformprocessor/go.sum b/processor/transformprocessor/go.sum index 488fff557fea..3ddb9e9fe750 100644 --- a/processor/transformprocessor/go.sum +++ b/processor/transformprocessor/go.sum @@ -6,8 +6,8 @@ github.com/alecthomas/repr v0.2.0 h1:HAzS41CIzNW5syS8Mf9UwXhNH1J9aix/BvDRf1Ml2Yk github.com/alecthomas/repr v0.2.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/activedirectorydsreceiver/go.mod b/receiver/activedirectorydsreceiver/go.mod index 72bedbfe556c..1a076f3af357 100644 --- a/receiver/activedirectorydsreceiver/go.mod +++ b/receiver/activedirectorydsreceiver/go.mod @@ -22,7 +22,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/receiver/activedirectorydsreceiver/go.sum b/receiver/activedirectorydsreceiver/go.sum index 058a5fcd6551..8b6bd310e1fb 100644 --- a/receiver/activedirectorydsreceiver/go.sum +++ b/receiver/activedirectorydsreceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/aerospikereceiver/go.mod b/receiver/aerospikereceiver/go.mod index 949a06f1b9df..bc209b0a8c49 100644 --- a/receiver/aerospikereceiver/go.mod +++ b/receiver/aerospikereceiver/go.mod @@ -31,7 +31,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/aerospikereceiver/go.sum b/receiver/aerospikereceiver/go.sum index a086ead7e170..9ff14afaf5a1 100644 --- a/receiver/aerospikereceiver/go.sum +++ b/receiver/aerospikereceiver/go.sum @@ -14,8 +14,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/apachereceiver/go.mod b/receiver/apachereceiver/go.mod index 7e89eb60b165..7676b470f0ad 100644 --- a/receiver/apachereceiver/go.mod +++ b/receiver/apachereceiver/go.mod @@ -29,7 +29,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/apachereceiver/go.sum b/receiver/apachereceiver/go.sum index d0beca098a16..c0f1a54ec2d0 100644 --- a/receiver/apachereceiver/go.sum +++ b/receiver/apachereceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/apachesparkreceiver/go.mod b/receiver/apachesparkreceiver/go.mod index 20cc299bb0a3..26b48e320569 100644 --- a/receiver/apachesparkreceiver/go.mod +++ b/receiver/apachesparkreceiver/go.mod @@ -28,7 +28,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/apachesparkreceiver/go.sum b/receiver/apachesparkreceiver/go.sum index 2a826f9b434a..32bcc0a715bc 100644 --- a/receiver/apachesparkreceiver/go.sum +++ b/receiver/apachesparkreceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/awscloudwatchreceiver/go.mod b/receiver/awscloudwatchreceiver/go.mod index bec781c6a860..7460bf154357 100644 --- a/receiver/awscloudwatchreceiver/go.mod +++ b/receiver/awscloudwatchreceiver/go.mod @@ -20,7 +20,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/receiver/awscloudwatchreceiver/go.sum b/receiver/awscloudwatchreceiver/go.sum index daca85b1949b..514cf4574546 100644 --- a/receiver/awscloudwatchreceiver/go.sum +++ b/receiver/awscloudwatchreceiver/go.sum @@ -2,8 +2,8 @@ github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuW github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/awsxrayreceiver/go.mod b/receiver/awsxrayreceiver/go.mod index 050c4906aa17..de1cb58e9719 100644 --- a/receiver/awsxrayreceiver/go.mod +++ b/receiver/awsxrayreceiver/go.mod @@ -28,7 +28,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/receiver/awsxrayreceiver/go.sum b/receiver/awsxrayreceiver/go.sum index e205f07a057d..7301b446cdad 100644 --- a/receiver/awsxrayreceiver/go.sum +++ b/receiver/awsxrayreceiver/go.sum @@ -2,8 +2,8 @@ github.com/aws/aws-sdk-go v1.51.17 h1:Cfa40lCdjv9OxC3X1Ks3a6O1Tu3gOANSyKHOSw/zuW github.com/aws/aws-sdk-go v1.51.17/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/azureeventhubreceiver/go.mod b/receiver/azureeventhubreceiver/go.mod index 0f7b2d8227d0..bd770c72bebf 100644 --- a/receiver/azureeventhubreceiver/go.mod +++ b/receiver/azureeventhubreceiver/go.mod @@ -37,7 +37,7 @@ require ( github.com/Azure/go-autorest/tracing v0.6.0 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/devigned/tab v0.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect diff --git a/receiver/azureeventhubreceiver/go.sum b/receiver/azureeventhubreceiver/go.sum index 6214505a6922..6a232ca6d514 100644 --- a/receiver/azureeventhubreceiver/go.sum +++ b/receiver/azureeventhubreceiver/go.sum @@ -37,8 +37,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= diff --git a/receiver/azuremonitorreceiver/go.mod b/receiver/azuremonitorreceiver/go.mod index 450715cb0b4b..597b15aea7e5 100644 --- a/receiver/azuremonitorreceiver/go.mod +++ b/receiver/azuremonitorreceiver/go.mod @@ -27,7 +27,7 @@ require ( github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/receiver/azuremonitorreceiver/go.sum b/receiver/azuremonitorreceiver/go.sum index 61b8964b0a4a..7817673d8769 100644 --- a/receiver/azuremonitorreceiver/go.sum +++ b/receiver/azuremonitorreceiver/go.sum @@ -16,8 +16,8 @@ github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1 h1:DzHpqpoJVaC github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1/go.mod h1:wP83P5OoQ5p6ip3ScPr0BAq0BvuPAvacpEuSzyouqAI= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/bigipreceiver/go.mod b/receiver/bigipreceiver/go.mod index ee514de9c30c..809d044d62c0 100644 --- a/receiver/bigipreceiver/go.mod +++ b/receiver/bigipreceiver/go.mod @@ -30,7 +30,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/bigipreceiver/go.sum b/receiver/bigipreceiver/go.sum index 2a826f9b434a..32bcc0a715bc 100644 --- a/receiver/bigipreceiver/go.sum +++ b/receiver/bigipreceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/cloudflarereceiver/go.mod b/receiver/cloudflarereceiver/go.mod index 7603decb12cb..d8d06483a82d 100644 --- a/receiver/cloudflarereceiver/go.mod +++ b/receiver/cloudflarereceiver/go.mod @@ -22,7 +22,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/receiver/cloudflarereceiver/go.sum b/receiver/cloudflarereceiver/go.sum index bb7c3c02e451..a391081d2fa2 100644 --- a/receiver/cloudflarereceiver/go.sum +++ b/receiver/cloudflarereceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/collectdreceiver/go.mod b/receiver/collectdreceiver/go.mod index 01ec7f9a2693..2b96c7e00591 100644 --- a/receiver/collectdreceiver/go.mod +++ b/receiver/collectdreceiver/go.mod @@ -22,7 +22,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/collectdreceiver/go.sum b/receiver/collectdreceiver/go.sum index 8ede415d013a..b697150c1b09 100644 --- a/receiver/collectdreceiver/go.sum +++ b/receiver/collectdreceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/couchdbreceiver/go.mod b/receiver/couchdbreceiver/go.mod index fde8a152fc6e..7765be8064f4 100644 --- a/receiver/couchdbreceiver/go.mod +++ b/receiver/couchdbreceiver/go.mod @@ -24,7 +24,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/couchdbreceiver/go.sum b/receiver/couchdbreceiver/go.sum index 3f440e4ac10d..9d0b8acf5ade 100644 --- a/receiver/couchdbreceiver/go.sum +++ b/receiver/couchdbreceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/dockerstatsreceiver/go.mod b/receiver/dockerstatsreceiver/go.mod index b953f5c0db60..79d534a713a9 100644 --- a/receiver/dockerstatsreceiver/go.mod +++ b/receiver/dockerstatsreceiver/go.mod @@ -30,7 +30,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.2.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/dockerstatsreceiver/go.sum b/receiver/dockerstatsreceiver/go.sum index abd0514b60f2..85395cd61edc 100644 --- a/receiver/dockerstatsreceiver/go.sum +++ b/receiver/dockerstatsreceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqylYbM= github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/elasticsearchreceiver/go.mod b/receiver/elasticsearchreceiver/go.mod index 8840406a1085..fb225c1d5e9a 100644 --- a/receiver/elasticsearchreceiver/go.mod +++ b/receiver/elasticsearchreceiver/go.mod @@ -32,7 +32,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/elasticsearchreceiver/go.sum b/receiver/elasticsearchreceiver/go.sum index 2a826f9b434a..32bcc0a715bc 100644 --- a/receiver/elasticsearchreceiver/go.sum +++ b/receiver/elasticsearchreceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/expvarreceiver/go.mod b/receiver/expvarreceiver/go.mod index 45e00a4b18ed..ec1497e50ae9 100644 --- a/receiver/expvarreceiver/go.mod +++ b/receiver/expvarreceiver/go.mod @@ -21,7 +21,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/expvarreceiver/go.sum b/receiver/expvarreceiver/go.sum index 8ede415d013a..b697150c1b09 100644 --- a/receiver/expvarreceiver/go.sum +++ b/receiver/expvarreceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/filelogreceiver/go.mod b/receiver/filelogreceiver/go.mod index 5bc1a9a3099e..859ea6d25e91 100644 --- a/receiver/filelogreceiver/go.mod +++ b/receiver/filelogreceiver/go.mod @@ -22,7 +22,7 @@ require ( github.com/beorn7/perks v1.0.1 // indirect github.com/bmatcuk/doublestar/v4 v4.6.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/receiver/filelogreceiver/go.sum b/receiver/filelogreceiver/go.sum index 75dced219381..b227592d4c92 100644 --- a/receiver/filelogreceiver/go.sum +++ b/receiver/filelogreceiver/go.sum @@ -4,8 +4,8 @@ github.com/bmatcuk/doublestar/v4 v4.6.1 h1:FH9SifrbvJhnlQpztAx++wlkk70QBf0iBWDwN github.com/bmatcuk/doublestar/v4 v4.6.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/filestatsreceiver/go.mod b/receiver/filestatsreceiver/go.mod index 393fc62fa5de..275c289f53db 100644 --- a/receiver/filestatsreceiver/go.mod +++ b/receiver/filestatsreceiver/go.mod @@ -27,7 +27,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/filestatsreceiver/go.sum b/receiver/filestatsreceiver/go.sum index 76accd51ee11..9b7733b5a882 100644 --- a/receiver/filestatsreceiver/go.sum +++ b/receiver/filestatsreceiver/go.sum @@ -14,8 +14,8 @@ github.com/bmatcuk/doublestar/v4 v4.6.1 h1:FH9SifrbvJhnlQpztAx++wlkk70QBf0iBWDwN github.com/bmatcuk/doublestar/v4 v4.6.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/flinkmetricsreceiver/go.mod b/receiver/flinkmetricsreceiver/go.mod index b9033b59e00a..f58640bf1331 100644 --- a/receiver/flinkmetricsreceiver/go.mod +++ b/receiver/flinkmetricsreceiver/go.mod @@ -22,7 +22,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/flinkmetricsreceiver/go.sum b/receiver/flinkmetricsreceiver/go.sum index 3f440e4ac10d..9d0b8acf5ade 100644 --- a/receiver/flinkmetricsreceiver/go.sum +++ b/receiver/flinkmetricsreceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/fluentforwardreceiver/go.mod b/receiver/fluentforwardreceiver/go.mod index 775c9a39b418..a8b431360033 100644 --- a/receiver/fluentforwardreceiver/go.mod +++ b/receiver/fluentforwardreceiver/go.mod @@ -20,7 +20,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/receiver/fluentforwardreceiver/go.sum b/receiver/fluentforwardreceiver/go.sum index 6fd6ded58d82..7031cf69f360 100644 --- a/receiver/fluentforwardreceiver/go.sum +++ b/receiver/fluentforwardreceiver/go.sum @@ -3,8 +3,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03 github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/haproxyreceiver/go.mod b/receiver/haproxyreceiver/go.mod index e7718fef9b37..cd717fff2a58 100644 --- a/receiver/haproxyreceiver/go.mod +++ b/receiver/haproxyreceiver/go.mod @@ -29,7 +29,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/haproxyreceiver/go.sum b/receiver/haproxyreceiver/go.sum index d0beca098a16..c0f1a54ec2d0 100644 --- a/receiver/haproxyreceiver/go.sum +++ b/receiver/haproxyreceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/hostmetricsreceiver/go.mod b/receiver/hostmetricsreceiver/go.mod index d8f05144efce..c46334ceda97 100644 --- a/receiver/hostmetricsreceiver/go.mod +++ b/receiver/hostmetricsreceiver/go.mod @@ -35,7 +35,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/hostmetricsreceiver/go.sum b/receiver/hostmetricsreceiver/go.sum index 44089e3676cd..b3a7b8c0e39e 100644 --- a/receiver/hostmetricsreceiver/go.sum +++ b/receiver/hostmetricsreceiver/go.sum @@ -56,8 +56,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3 github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/receiver/httpcheckreceiver/go.mod b/receiver/httpcheckreceiver/go.mod index 95c4be4539e1..d35f773f25e1 100644 --- a/receiver/httpcheckreceiver/go.mod +++ b/receiver/httpcheckreceiver/go.mod @@ -23,7 +23,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/httpcheckreceiver/go.sum b/receiver/httpcheckreceiver/go.sum index 8ede415d013a..b697150c1b09 100644 --- a/receiver/httpcheckreceiver/go.sum +++ b/receiver/httpcheckreceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/iisreceiver/go.mod b/receiver/iisreceiver/go.mod index 22e3674cd820..378f2c4530b7 100644 --- a/receiver/iisreceiver/go.mod +++ b/receiver/iisreceiver/go.mod @@ -28,7 +28,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/iisreceiver/go.sum b/receiver/iisreceiver/go.sum index 138986ac9183..afbba6fa1a4a 100644 --- a/receiver/iisreceiver/go.sum +++ b/receiver/iisreceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/influxdbreceiver/go.mod b/receiver/influxdbreceiver/go.mod index 2811d2637174..68e7e920ce19 100644 --- a/receiver/influxdbreceiver/go.mod +++ b/receiver/influxdbreceiver/go.mod @@ -25,7 +25,7 @@ require ( require ( github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/frankban/quicktest v1.14.0 // indirect diff --git a/receiver/influxdbreceiver/go.sum b/receiver/influxdbreceiver/go.sum index e9e5ffae3853..5f998faa9568 100644 --- a/receiver/influxdbreceiver/go.sum +++ b/receiver/influxdbreceiver/go.sum @@ -4,8 +4,8 @@ github.com/apapsch/go-jsonmerge/v2 v2.0.0/go.mod h1:lvDnEdqiQrp0O42VQGgmlKpxL1AP github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bmatcuk/doublestar v1.1.1/go.mod h1:UD6OnuiIn0yFxxA2le/rnRU1G4RaI4UvFv1sNto9p6w= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/receiver/jaegerreceiver/go.mod b/receiver/jaegerreceiver/go.mod index 4a85bc83fce9..8ef7862a84f0 100644 --- a/receiver/jaegerreceiver/go.mod +++ b/receiver/jaegerreceiver/go.mod @@ -30,7 +30,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/jaegerreceiver/go.sum b/receiver/jaegerreceiver/go.sum index 33b8c00e53b9..a56a53f3dfdd 100644 --- a/receiver/jaegerreceiver/go.sum +++ b/receiver/jaegerreceiver/go.sum @@ -6,8 +6,8 @@ github.com/apache/thrift v0.20.0 h1:631+KvYbsBZxmuJjYwhezVsrfc/TbqtZV4QcxOX1fOI= github.com/apache/thrift v0.20.0/go.mod h1:hOk1BQqcp2OLzGsyVXdfMk7YFlMxK3aoEVhjD06QhB8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/receiver/jmxreceiver/go.mod b/receiver/jmxreceiver/go.mod index 6eba243b1291..c60ba9df1547 100644 --- a/receiver/jmxreceiver/go.mod +++ b/receiver/jmxreceiver/go.mod @@ -29,7 +29,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/jmxreceiver/go.sum b/receiver/jmxreceiver/go.sum index 5e5a6407f9f1..7f2b5f619e0f 100644 --- a/receiver/jmxreceiver/go.sum +++ b/receiver/jmxreceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/journaldreceiver/go.mod b/receiver/journaldreceiver/go.mod index 6c66f961f9c4..ba23a64b4d36 100644 --- a/receiver/journaldreceiver/go.mod +++ b/receiver/journaldreceiver/go.mod @@ -18,7 +18,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/receiver/journaldreceiver/go.sum b/receiver/journaldreceiver/go.sum index 4b75b22028ed..a94054ce8011 100644 --- a/receiver/journaldreceiver/go.sum +++ b/receiver/journaldreceiver/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/k8sclusterreceiver/go.mod b/receiver/k8sclusterreceiver/go.mod index 71f650c982ec..bbe172840be1 100644 --- a/receiver/k8sclusterreceiver/go.mod +++ b/receiver/k8sclusterreceiver/go.mod @@ -36,7 +36,7 @@ require ( github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/distribution/reference v0.5.0 // indirect github.com/docker/docker v25.0.5+incompatible // indirect diff --git a/receiver/k8sclusterreceiver/go.sum b/receiver/k8sclusterreceiver/go.sum index 64a7b280be8d..d30b48c5eef2 100644 --- a/receiver/k8sclusterreceiver/go.sum +++ b/receiver/k8sclusterreceiver/go.sum @@ -43,8 +43,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqylYbM= github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/receiver/k8sobjectsreceiver/go.mod b/receiver/k8sobjectsreceiver/go.mod index f71c72f807ac..96880a49263e 100644 --- a/receiver/k8sobjectsreceiver/go.mod +++ b/receiver/k8sobjectsreceiver/go.mod @@ -27,7 +27,7 @@ require ( github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/distribution/reference v0.5.0 // indirect github.com/docker/docker v25.0.5+incompatible // indirect diff --git a/receiver/k8sobjectsreceiver/go.sum b/receiver/k8sobjectsreceiver/go.sum index 33a401b95c8a..680b39ef0eb6 100644 --- a/receiver/k8sobjectsreceiver/go.sum +++ b/receiver/k8sobjectsreceiver/go.sum @@ -43,8 +43,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqylYbM= github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/receiver/kafkareceiver/go.mod b/receiver/kafkareceiver/go.mod index 08499c6458cd..202fb39e805c 100644 --- a/receiver/kafkareceiver/go.mod +++ b/receiver/kafkareceiver/go.mod @@ -34,7 +34,7 @@ require ( github.com/aws/aws-sdk-go v1.51.17 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/eapache/go-resiliency v1.6.0 // indirect github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect diff --git a/receiver/kafkareceiver/go.sum b/receiver/kafkareceiver/go.sum index a74eea946954..b512cb9e8f3e 100644 --- a/receiver/kafkareceiver/go.sum +++ b/receiver/kafkareceiver/go.sum @@ -11,8 +11,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/kubeletstatsreceiver/go.mod b/receiver/kubeletstatsreceiver/go.mod index fd1aa0fab656..b857219c66f4 100644 --- a/receiver/kubeletstatsreceiver/go.mod +++ b/receiver/kubeletstatsreceiver/go.mod @@ -34,7 +34,7 @@ require ( github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/distribution/reference v0.5.0 // indirect github.com/docker/docker v25.0.5+incompatible // indirect diff --git a/receiver/kubeletstatsreceiver/go.sum b/receiver/kubeletstatsreceiver/go.sum index 2415d2ea7e0e..de3754638e19 100644 --- a/receiver/kubeletstatsreceiver/go.sum +++ b/receiver/kubeletstatsreceiver/go.sum @@ -43,8 +43,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqylYbM= github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/receiver/lokireceiver/go.mod b/receiver/lokireceiver/go.mod index c9adac6f8707..ae08c927394d 100644 --- a/receiver/lokireceiver/go.mod +++ b/receiver/lokireceiver/go.mod @@ -36,7 +36,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dennwc/varint v1.0.0 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect diff --git a/receiver/lokireceiver/go.sum b/receiver/lokireceiver/go.sum index 2b579b33c1e9..1495a20d1aa1 100644 --- a/receiver/lokireceiver/go.sum +++ b/receiver/lokireceiver/go.sum @@ -16,8 +16,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs= github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/receiver/memcachedreceiver/go.mod b/receiver/memcachedreceiver/go.mod index e686f74ea564..6aa6ad27c753 100644 --- a/receiver/memcachedreceiver/go.mod +++ b/receiver/memcachedreceiver/go.mod @@ -29,7 +29,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/memcachedreceiver/go.sum b/receiver/memcachedreceiver/go.sum index d85e0f3a2082..959d9c95c8c7 100644 --- a/receiver/memcachedreceiver/go.sum +++ b/receiver/memcachedreceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/mongodbatlasreceiver/go.mod b/receiver/mongodbatlasreceiver/go.mod index 6be4ff0d5bfa..7625b4cb7f49 100644 --- a/receiver/mongodbatlasreceiver/go.mod +++ b/receiver/mongodbatlasreceiver/go.mod @@ -30,7 +30,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/mongodbatlasreceiver/go.sum b/receiver/mongodbatlasreceiver/go.sum index e3a014bcddcc..8febc1a78d55 100644 --- a/receiver/mongodbatlasreceiver/go.sum +++ b/receiver/mongodbatlasreceiver/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/mongodbreceiver/go.mod b/receiver/mongodbreceiver/go.mod index 15f5a3145997..5fcc433c1ec6 100644 --- a/receiver/mongodbreceiver/go.mod +++ b/receiver/mongodbreceiver/go.mod @@ -34,7 +34,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/mongodbreceiver/go.sum b/receiver/mongodbreceiver/go.sum index ba44dff0ecc5..fd97caf2ff6c 100644 --- a/receiver/mongodbreceiver/go.sum +++ b/receiver/mongodbreceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/mysqlreceiver/go.mod b/receiver/mysqlreceiver/go.mod index 8de3d0c3f538..418e3a0f5b61 100644 --- a/receiver/mysqlreceiver/go.mod +++ b/receiver/mysqlreceiver/go.mod @@ -32,7 +32,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/mysqlreceiver/go.sum b/receiver/mysqlreceiver/go.sum index 49bdbe921de1..02a0cde0dd4c 100644 --- a/receiver/mysqlreceiver/go.sum +++ b/receiver/mysqlreceiver/go.sum @@ -14,8 +14,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/namedpipereceiver/go.mod b/receiver/namedpipereceiver/go.mod index 5994f8f2b93a..c347e68c6f7b 100644 --- a/receiver/namedpipereceiver/go.mod +++ b/receiver/namedpipereceiver/go.mod @@ -18,7 +18,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/namedpipereceiver/go.sum b/receiver/namedpipereceiver/go.sum index d05b03552b50..584d0247e434 100644 --- a/receiver/namedpipereceiver/go.sum +++ b/receiver/namedpipereceiver/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/nginxreceiver/go.mod b/receiver/nginxreceiver/go.mod index c66329dfc157..71e540fa4807 100644 --- a/receiver/nginxreceiver/go.mod +++ b/receiver/nginxreceiver/go.mod @@ -30,7 +30,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/nginxreceiver/go.sum b/receiver/nginxreceiver/go.sum index e9d6f3ff84d4..1e5ca02213c4 100644 --- a/receiver/nginxreceiver/go.sum +++ b/receiver/nginxreceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/nsxtreceiver/go.mod b/receiver/nsxtreceiver/go.mod index c0296d7fcb64..0d8fcbd919f6 100644 --- a/receiver/nsxtreceiver/go.mod +++ b/receiver/nsxtreceiver/go.mod @@ -24,7 +24,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/nsxtreceiver/go.sum b/receiver/nsxtreceiver/go.sum index 8ce8a4df1e58..6c44e4ad0c5d 100644 --- a/receiver/nsxtreceiver/go.sum +++ b/receiver/nsxtreceiver/go.sum @@ -2,8 +2,8 @@ cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMT github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/opencensusreceiver/go.mod b/receiver/opencensusreceiver/go.mod index 27c995031fc6..c54ff209510b 100644 --- a/receiver/opencensusreceiver/go.mod +++ b/receiver/opencensusreceiver/go.mod @@ -32,7 +32,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/receiver/opencensusreceiver/go.sum b/receiver/opencensusreceiver/go.sum index f4be912ba1f1..05eb9721b03b 100644 --- a/receiver/opencensusreceiver/go.sum +++ b/receiver/opencensusreceiver/go.sum @@ -5,8 +5,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/census-instrumentation/opencensus-proto v0.4.1 h1:iKLQ0xPNFxR/2hzXZMrBo8f1j86j5WHzznCCQxV/b8g= github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/otlpjsonfilereceiver/go.mod b/receiver/otlpjsonfilereceiver/go.mod index 40fbc15a9223..3f56ae15d18b 100644 --- a/receiver/otlpjsonfilereceiver/go.mod +++ b/receiver/otlpjsonfilereceiver/go.mod @@ -20,7 +20,7 @@ require ( github.com/beorn7/perks v1.0.1 // indirect github.com/bmatcuk/doublestar/v4 v4.6.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/receiver/otlpjsonfilereceiver/go.sum b/receiver/otlpjsonfilereceiver/go.sum index 75dced219381..b227592d4c92 100644 --- a/receiver/otlpjsonfilereceiver/go.sum +++ b/receiver/otlpjsonfilereceiver/go.sum @@ -4,8 +4,8 @@ github.com/bmatcuk/doublestar/v4 v4.6.1 h1:FH9SifrbvJhnlQpztAx++wlkk70QBf0iBWDwN github.com/bmatcuk/doublestar/v4 v4.6.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/postgresqlreceiver/go.mod b/receiver/postgresqlreceiver/go.mod index b62071f3cf8c..61feaf3f4d3d 100644 --- a/receiver/postgresqlreceiver/go.mod +++ b/receiver/postgresqlreceiver/go.mod @@ -34,7 +34,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/postgresqlreceiver/go.sum b/receiver/postgresqlreceiver/go.sum index 304dc4288244..333b8afb5b33 100644 --- a/receiver/postgresqlreceiver/go.sum +++ b/receiver/postgresqlreceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/prometheusreceiver/go.mod b/receiver/prometheusreceiver/go.mod index 1f1d0ad73e04..d16dff6a4a1c 100644 --- a/receiver/prometheusreceiver/go.mod +++ b/receiver/prometheusreceiver/go.mod @@ -52,7 +52,7 @@ require ( github.com/aws/aws-sdk-go v1.50.32 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cncf/xds/go v0.0.0-20231128003011-0fa0005c9caa // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dennwc/varint v1.0.0 // indirect diff --git a/receiver/prometheusreceiver/go.sum b/receiver/prometheusreceiver/go.sum index 76bcc8d2bef7..2db3a5c191b4 100644 --- a/receiver/prometheusreceiver/go.sum +++ b/receiver/prometheusreceiver/go.sum @@ -87,8 +87,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3 github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/receiver/pulsarreceiver/go.mod b/receiver/pulsarreceiver/go.mod index e7c09a9edce3..6eaccccbb15b 100644 --- a/receiver/pulsarreceiver/go.mod +++ b/receiver/pulsarreceiver/go.mod @@ -31,7 +31,7 @@ require ( github.com/apache/pulsar-client-go/oauth2 v0.0.0-20220120090717-25e59572242e // indirect github.com/ardielle/ardielle-go v1.5.2 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/danieljoos/wincred v1.0.2 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dvsekhvalnov/jose2go v1.6.0 // indirect diff --git a/receiver/pulsarreceiver/go.sum b/receiver/pulsarreceiver/go.sum index eac530805392..20de8715d3eb 100644 --- a/receiver/pulsarreceiver/go.sum +++ b/receiver/pulsarreceiver/go.sum @@ -74,8 +74,8 @@ github.com/bketelsen/crypt v0.0.4/go.mod h1:aI6NrJ0pMGgvZKL1iVgXLnfIFJtfV+bKCoqO github.com/bmizerany/perks v0.0.0-20141205001514-d9a9656a3a4b/go.mod h1:ac9efd0D1fsDb3EJvhqgXRbFx7bs2wqZ10HQPeU8U/Q= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/receiver/purefareceiver/go.mod b/receiver/purefareceiver/go.mod index ed9913932a4b..05e852471c89 100644 --- a/receiver/purefareceiver/go.mod +++ b/receiver/purefareceiver/go.mod @@ -36,7 +36,7 @@ require ( github.com/armon/go-metrics v0.4.1 // indirect github.com/aws/aws-sdk-go v1.50.32 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cncf/xds/go v0.0.0-20231128003011-0fa0005c9caa // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dennwc/varint v1.0.0 // indirect diff --git a/receiver/purefareceiver/go.sum b/receiver/purefareceiver/go.sum index f027dcb3719c..de528c2ccc9b 100644 --- a/receiver/purefareceiver/go.sum +++ b/receiver/purefareceiver/go.sum @@ -87,8 +87,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3 github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/receiver/purefbreceiver/go.mod b/receiver/purefbreceiver/go.mod index 2a7d7dc12fb3..021622fae6d2 100644 --- a/receiver/purefbreceiver/go.mod +++ b/receiver/purefbreceiver/go.mod @@ -36,7 +36,7 @@ require ( github.com/armon/go-metrics v0.4.1 // indirect github.com/aws/aws-sdk-go v1.50.32 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cncf/xds/go v0.0.0-20231128003011-0fa0005c9caa // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dennwc/varint v1.0.0 // indirect diff --git a/receiver/purefbreceiver/go.sum b/receiver/purefbreceiver/go.sum index f027dcb3719c..de528c2ccc9b 100644 --- a/receiver/purefbreceiver/go.sum +++ b/receiver/purefbreceiver/go.sum @@ -87,8 +87,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3 github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/receiver/rabbitmqreceiver/go.mod b/receiver/rabbitmqreceiver/go.mod index 13d60a5981d0..d7fb3d20b196 100644 --- a/receiver/rabbitmqreceiver/go.mod +++ b/receiver/rabbitmqreceiver/go.mod @@ -23,7 +23,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/rabbitmqreceiver/go.sum b/receiver/rabbitmqreceiver/go.sum index 3f440e4ac10d..9d0b8acf5ade 100644 --- a/receiver/rabbitmqreceiver/go.sum +++ b/receiver/rabbitmqreceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/receivercreator/go.mod b/receiver/receivercreator/go.mod index eace984f5aa6..3a3d2578de79 100644 --- a/receiver/receivercreator/go.mod +++ b/receiver/receivercreator/go.mod @@ -27,7 +27,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/receiver/receivercreator/go.sum b/receiver/receivercreator/go.sum index 123079fcb127..2244de82f509 100644 --- a/receiver/receivercreator/go.sum +++ b/receiver/receivercreator/go.sum @@ -5,8 +5,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= diff --git a/receiver/redisreceiver/go.mod b/receiver/redisreceiver/go.mod index 0b60dba4bbd6..38033481dd39 100644 --- a/receiver/redisreceiver/go.mod +++ b/receiver/redisreceiver/go.mod @@ -30,7 +30,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/redisreceiver/go.sum b/receiver/redisreceiver/go.sum index 72c2db06fa2b..3dc023246b8a 100644 --- a/receiver/redisreceiver/go.sum +++ b/receiver/redisreceiver/go.sum @@ -16,8 +16,8 @@ github.com/bsm/gomega v1.27.10 h1:yeMWxP2pV2fG3FgAODIY8EiRE3dy0aeFYt4l7wh6yKA= github.com/bsm/gomega v1.27.10/go.mod h1:JyEr/xRbxbtgWNi8tIEVPUYZ5Dzef52k01W3YH0H+O0= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/riakreceiver/go.mod b/receiver/riakreceiver/go.mod index 4ae939fdfe60..5c1744a7b0e9 100644 --- a/receiver/riakreceiver/go.mod +++ b/receiver/riakreceiver/go.mod @@ -24,7 +24,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/riakreceiver/go.sum b/receiver/riakreceiver/go.sum index 3f440e4ac10d..9d0b8acf5ade 100644 --- a/receiver/riakreceiver/go.sum +++ b/receiver/riakreceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/saphanareceiver/go.mod b/receiver/saphanareceiver/go.mod index 042daaef1f09..8848f432b03a 100644 --- a/receiver/saphanareceiver/go.mod +++ b/receiver/saphanareceiver/go.mod @@ -25,7 +25,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/receiver/saphanareceiver/go.sum b/receiver/saphanareceiver/go.sum index b341a1c8abf3..6d4842a74cf3 100644 --- a/receiver/saphanareceiver/go.sum +++ b/receiver/saphanareceiver/go.sum @@ -2,8 +2,8 @@ github.com/SAP/go-hdb v1.8.11 h1:CfzNLy9ymcwMbAMWYpkd8NezbVKYQcNxpRqOPfBNHAE= github.com/SAP/go-hdb v1.8.11/go.mod h1:AjSrmLmZEZcX17tS41J9/bFYvAKqLFuZ28v5h79Yn1c= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/sapmreceiver/go.mod b/receiver/sapmreceiver/go.mod index dc6ccc3de92d..e1434fa4cf11 100644 --- a/receiver/sapmreceiver/go.mod +++ b/receiver/sapmreceiver/go.mod @@ -28,7 +28,7 @@ require ( github.com/apache/thrift v0.19.0 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/sapmreceiver/go.sum b/receiver/sapmreceiver/go.sum index 57512fd800d4..b603a4e59e17 100644 --- a/receiver/sapmreceiver/go.sum +++ b/receiver/sapmreceiver/go.sum @@ -4,8 +4,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/receiver/signalfxreceiver/go.mod b/receiver/signalfxreceiver/go.mod index 98560f51116a..264afca9c617 100644 --- a/receiver/signalfxreceiver/go.mod +++ b/receiver/signalfxreceiver/go.mod @@ -27,7 +27,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/signalfxreceiver/go.sum b/receiver/signalfxreceiver/go.sum index d5a5dc951848..62a5415d4b19 100644 --- a/receiver/signalfxreceiver/go.sum +++ b/receiver/signalfxreceiver/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/simpleprometheusreceiver/go.mod b/receiver/simpleprometheusreceiver/go.mod index b12fa8598a6a..4e6ff8e43aec 100644 --- a/receiver/simpleprometheusreceiver/go.mod +++ b/receiver/simpleprometheusreceiver/go.mod @@ -34,7 +34,7 @@ require ( github.com/armon/go-metrics v0.4.1 // indirect github.com/aws/aws-sdk-go v1.50.32 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cncf/xds/go v0.0.0-20231128003011-0fa0005c9caa // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dennwc/varint v1.0.0 // indirect diff --git a/receiver/simpleprometheusreceiver/go.sum b/receiver/simpleprometheusreceiver/go.sum index f027dcb3719c..de528c2ccc9b 100644 --- a/receiver/simpleprometheusreceiver/go.sum +++ b/receiver/simpleprometheusreceiver/go.sum @@ -87,8 +87,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3 github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= diff --git a/receiver/snmpreceiver/go.mod b/receiver/snmpreceiver/go.mod index b40c9746f884..6ad2e3512217 100644 --- a/receiver/snmpreceiver/go.mod +++ b/receiver/snmpreceiver/go.mod @@ -28,7 +28,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/snmpreceiver/go.sum b/receiver/snmpreceiver/go.sum index 54e7061026f5..cbe1ba701dc8 100644 --- a/receiver/snmpreceiver/go.sum +++ b/receiver/snmpreceiver/go.sum @@ -15,8 +15,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= diff --git a/receiver/snowflakereceiver/go.mod b/receiver/snowflakereceiver/go.mod index 75fa604bb089..2ed696a36c4a 100644 --- a/receiver/snowflakereceiver/go.mod +++ b/receiver/snowflakereceiver/go.mod @@ -44,7 +44,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0 // indirect github.com/aws/smithy-go v1.16.0 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/danieljoos/wincred v1.1.2 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/dvsekhvalnov/jose2go v1.6.0 // indirect diff --git a/receiver/snowflakereceiver/go.sum b/receiver/snowflakereceiver/go.sum index 87002cf67a58..e37394a94855 100644 --- a/receiver/snowflakereceiver/go.sum +++ b/receiver/snowflakereceiver/go.sum @@ -70,8 +70,8 @@ github.com/aws/smithy-go v1.16.0 h1:gJZEH/Fqh+RsvlJ1Zt4tVAtV6bKkp3cC+R6FCZMNzik= github.com/aws/smithy-go v1.16.0/go.mod h1:NukqUGpCZIILqqiV0NIjeFh24kd/FAa4beRb6nbIUPE= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/danieljoos/wincred v1.1.2 h1:QLdCxFs1/Yl4zduvBdcHB8goaYk9RARS2SgLLRuAyr0= github.com/danieljoos/wincred v1.1.2/go.mod h1:GijpziifJoIBfYh+S7BbkdUTU4LfM+QnGqR5Vl2tAx0= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/splunkenterprisereceiver/go.mod b/receiver/splunkenterprisereceiver/go.mod index f9ecd7d13f02..5c41395f5ec7 100644 --- a/receiver/splunkenterprisereceiver/go.mod +++ b/receiver/splunkenterprisereceiver/go.mod @@ -25,7 +25,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/splunkenterprisereceiver/go.sum b/receiver/splunkenterprisereceiver/go.sum index 8ede415d013a..b697150c1b09 100644 --- a/receiver/splunkenterprisereceiver/go.sum +++ b/receiver/splunkenterprisereceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/splunkhecreceiver/go.mod b/receiver/splunkhecreceiver/go.mod index e323c8f6d529..4336c82955aa 100644 --- a/receiver/splunkhecreceiver/go.mod +++ b/receiver/splunkhecreceiver/go.mod @@ -29,7 +29,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/splunkhecreceiver/go.sum b/receiver/splunkhecreceiver/go.sum index 73038a29fb7b..4a74bd6322e6 100644 --- a/receiver/splunkhecreceiver/go.sum +++ b/receiver/splunkhecreceiver/go.sum @@ -13,8 +13,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= diff --git a/receiver/sqlqueryreceiver/go.mod b/receiver/sqlqueryreceiver/go.mod index 6aea79d11237..2d341e6f4f08 100644 --- a/receiver/sqlqueryreceiver/go.mod +++ b/receiver/sqlqueryreceiver/go.mod @@ -52,7 +52,7 @@ require ( github.com/aws/smithy-go v1.16.0 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/sqlqueryreceiver/go.sum b/receiver/sqlqueryreceiver/go.sum index 8a136341b179..f591a0ad7a7b 100644 --- a/receiver/sqlqueryreceiver/go.sum +++ b/receiver/sqlqueryreceiver/go.sum @@ -88,8 +88,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/sqlserverreceiver/go.mod b/receiver/sqlserverreceiver/go.mod index d78ff5fefa09..c59acd3bd154 100644 --- a/receiver/sqlserverreceiver/go.mod +++ b/receiver/sqlserverreceiver/go.mod @@ -22,7 +22,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/receiver/sqlserverreceiver/go.sum b/receiver/sqlserverreceiver/go.sum index 9f4f8ce8c5b1..07e47ed88f99 100644 --- a/receiver/sqlserverreceiver/go.sum +++ b/receiver/sqlserverreceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/sshcheckreceiver/go.mod b/receiver/sshcheckreceiver/go.mod index 1281b723ceff..9bf949b73e4c 100644 --- a/receiver/sshcheckreceiver/go.mod +++ b/receiver/sshcheckreceiver/go.mod @@ -32,7 +32,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect diff --git a/receiver/sshcheckreceiver/go.sum b/receiver/sshcheckreceiver/go.sum index ce916d70057b..d691784a510a 100644 --- a/receiver/sshcheckreceiver/go.sum +++ b/receiver/sshcheckreceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/statsdreceiver/go.mod b/receiver/statsdreceiver/go.mod index d0c69eeb3b26..e6c7c85f93d3 100644 --- a/receiver/statsdreceiver/go.mod +++ b/receiver/statsdreceiver/go.mod @@ -26,7 +26,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/receiver/statsdreceiver/go.sum b/receiver/statsdreceiver/go.sum index 7e177852e228..744266c2a1c6 100644 --- a/receiver/statsdreceiver/go.sum +++ b/receiver/statsdreceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/syslogreceiver/go.mod b/receiver/syslogreceiver/go.mod index 3875cd9b02fc..4d02a198389a 100644 --- a/receiver/syslogreceiver/go.mod +++ b/receiver/syslogreceiver/go.mod @@ -19,7 +19,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/syslogreceiver/go.sum b/receiver/syslogreceiver/go.sum index 4a8869e6f9a0..3f89384004c3 100644 --- a/receiver/syslogreceiver/go.sum +++ b/receiver/syslogreceiver/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/tcplogreceiver/go.mod b/receiver/tcplogreceiver/go.mod index 25e9ae79d64a..a7d23d141f73 100644 --- a/receiver/tcplogreceiver/go.mod +++ b/receiver/tcplogreceiver/go.mod @@ -17,7 +17,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/tcplogreceiver/go.sum b/receiver/tcplogreceiver/go.sum index 4a8869e6f9a0..3f89384004c3 100644 --- a/receiver/tcplogreceiver/go.sum +++ b/receiver/tcplogreceiver/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/udplogreceiver/go.mod b/receiver/udplogreceiver/go.mod index c7b2553ab73f..33c42526a82f 100644 --- a/receiver/udplogreceiver/go.mod +++ b/receiver/udplogreceiver/go.mod @@ -17,7 +17,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/receiver/udplogreceiver/go.sum b/receiver/udplogreceiver/go.sum index 4b75b22028ed..a94054ce8011 100644 --- a/receiver/udplogreceiver/go.sum +++ b/receiver/udplogreceiver/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/vcenterreceiver/go.mod b/receiver/vcenterreceiver/go.mod index 42a4ec21349c..43d9bbf25378 100644 --- a/receiver/vcenterreceiver/go.mod +++ b/receiver/vcenterreceiver/go.mod @@ -33,7 +33,7 @@ require ( github.com/beorn7/perks v1.0.1 // indirect github.com/bitly/go-simplejson v0.5.0 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/vcenterreceiver/go.sum b/receiver/vcenterreceiver/go.sum index d84a35fe2bd3..3d23671b52f9 100644 --- a/receiver/vcenterreceiver/go.sum +++ b/receiver/vcenterreceiver/go.sum @@ -16,8 +16,8 @@ github.com/bitly/go-simplejson v0.5.0 h1:6IH+V8/tVMab511d5bn4M7EwGXZf9Hj6i2xSwkN github.com/bitly/go-simplejson v0.5.0/go.mod h1:cXHtHw4XUPsvGaxgjIAn8PhEWG9NfngEKAMDJEczWVA= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/receiver/windowseventlogreceiver/go.mod b/receiver/windowseventlogreceiver/go.mod index 4daa0b486fa5..9b60b977e700 100644 --- a/receiver/windowseventlogreceiver/go.mod +++ b/receiver/windowseventlogreceiver/go.mod @@ -19,7 +19,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/expr-lang/expr v1.16.3 // indirect github.com/go-logr/logr v1.4.1 // indirect diff --git a/receiver/windowseventlogreceiver/go.sum b/receiver/windowseventlogreceiver/go.sum index 4b75b22028ed..a94054ce8011 100644 --- a/receiver/windowseventlogreceiver/go.sum +++ b/receiver/windowseventlogreceiver/go.sum @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/windowsperfcountersreceiver/go.mod b/receiver/windowsperfcountersreceiver/go.mod index a52e5b455eea..0935c23ed568 100644 --- a/receiver/windowsperfcountersreceiver/go.mod +++ b/receiver/windowsperfcountersreceiver/go.mod @@ -21,7 +21,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/receiver/windowsperfcountersreceiver/go.sum b/receiver/windowsperfcountersreceiver/go.sum index 058a5fcd6551..8b6bd310e1fb 100644 --- a/receiver/windowsperfcountersreceiver/go.sum +++ b/receiver/windowsperfcountersreceiver/go.sum @@ -1,7 +1,7 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/receiver/zipkinreceiver/go.mod b/receiver/zipkinreceiver/go.mod index cbdb8cdb1808..ba72a3579c21 100644 --- a/receiver/zipkinreceiver/go.mod +++ b/receiver/zipkinreceiver/go.mod @@ -25,7 +25,7 @@ require ( require ( github.com/apache/thrift v0.19.0 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/receiver/zipkinreceiver/go.sum b/receiver/zipkinreceiver/go.sum index 8f9747176101..f7c808680c30 100644 --- a/receiver/zipkinreceiver/go.sum +++ b/receiver/zipkinreceiver/go.sum @@ -2,8 +2,8 @@ github.com/apache/thrift v0.19.0 h1:sOqkWPzMj7w6XaYbJQG7m4sGqVolaW/0D28Ln7yPzMk= github.com/apache/thrift v0.19.0/go.mod h1:SUALL216IiaOw2Oy+5Vs9lboJ/t9g40C+G07Dc0QC1I= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= diff --git a/receiver/zookeeperreceiver/go.mod b/receiver/zookeeperreceiver/go.mod index 8f7c8d77f2a4..c76272a90257 100644 --- a/receiver/zookeeperreceiver/go.mod +++ b/receiver/zookeeperreceiver/go.mod @@ -29,7 +29,7 @@ require ( github.com/Microsoft/hcsshim v0.11.4 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/containerd/containerd v1.7.12 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect diff --git a/receiver/zookeeperreceiver/go.sum b/receiver/zookeeperreceiver/go.sum index f8fcbc05c488..b52ce1e95c78 100644 --- a/receiver/zookeeperreceiver/go.sum +++ b/receiver/zookeeperreceiver/go.sum @@ -12,8 +12,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/containerd/containerd v1.7.12 h1:+KQsnv4VnzyxWcfO9mlxxELaoztsDEjOuCMPAuPqgU0= github.com/containerd/containerd v1.7.12/go.mod h1:/5OMpE1p0ylxtEUGY8kuCYkDRzJm9NO1TFMWjUpdevk= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= diff --git a/testbed/go.mod b/testbed/go.mod index bcda7ee8b0ee..cd072f9edfb3 100644 --- a/testbed/go.mod +++ b/testbed/go.mod @@ -86,7 +86,7 @@ require ( github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cncf/xds/go v0.0.0-20231128003011-0fa0005c9caa // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dennwc/varint v1.0.0 // indirect diff --git a/testbed/go.sum b/testbed/go.sum index b927b492ee31..db99b052b584 100644 --- a/testbed/go.sum +++ b/testbed/go.sum @@ -108,8 +108,8 @@ github.com/census-instrumentation/opencensus-proto v0.4.1 h1:iKLQ0xPNFxR/2hzXZMr github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= From a1381ef1da70d32101214dcc50f808d1e93cc3c1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 13:39:06 +0200 Subject: [PATCH 09/21] Update module github.com/SAP/go-hdb to v1.8.12 (#32234) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/SAP/go-hdb](https://togithub.com/SAP/go-hdb) | `v1.8.11` -> `v1.8.12` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fSAP%2fgo-hdb/v1.8.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fSAP%2fgo-hdb/v1.8.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fSAP%2fgo-hdb/v1.8.11/v1.8.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fSAP%2fgo-hdb/v1.8.11/v1.8.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes
SAP/go-hdb (github.com/SAP/go-hdb) ### [`v1.8.12`](https://togithub.com/SAP/go-hdb/blob/HEAD/RELEASENOTES.md#v1812) [Compare Source](https://togithub.com/SAP/go-hdb/compare/v1.8.11...v1.8.12) - updated dependencies
--- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- cmd/configschema/go.mod | 10 +++++----- cmd/configschema/go.sum | 19 ++++++++++--------- cmd/otelcontribcol/go.mod | 10 +++++----- cmd/otelcontribcol/go.sum | 19 ++++++++++--------- go.mod | 10 +++++----- go.sum | 19 ++++++++++--------- internal/sqlquery/go.mod | 14 +++++++------- internal/sqlquery/go.sum | 28 ++++++++++++++-------------- receiver/saphanareceiver/go.mod | 10 +++++----- receiver/saphanareceiver/go.sum | 20 ++++++++++---------- receiver/sqlqueryreceiver/go.mod | 12 ++++++------ receiver/sqlqueryreceiver/go.sum | 23 ++++++++++++----------- 12 files changed, 99 insertions(+), 95 deletions(-) diff --git a/cmd/configschema/go.mod b/cmd/configschema/go.mod index 0581a8151344..2119734bb344 100644 --- a/cmd/configschema/go.mod +++ b/cmd/configschema/go.mod @@ -246,7 +246,7 @@ require ( github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/ReneKroon/ttlcache/v2 v2.11.0 // indirect - github.com/SAP/go-hdb v1.8.11 // indirect + github.com/SAP/go-hdb v1.8.12 // indirect github.com/SermoDigital/jose v0.9.2-0.20180104203859-803625baeddc // indirect github.com/Showmax/go-fqdn v1.0.0 // indirect github.com/aerospike/aerospike-client-go/v6 v6.13.0 // indirect @@ -562,7 +562,7 @@ require ( github.com/pquerna/cachecontrol v0.1.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect github.com/prometheus/client_model v0.6.1 // indirect - github.com/prometheus/common v0.51.1 // indirect + github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.13.0 // indirect github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e // indirect @@ -682,13 +682,13 @@ require ( go.uber.org/atomic v1.11.0 // indirect go.uber.org/multierr v1.11.0 // indirect go.uber.org/zap v1.27.0 // indirect - golang.org/x/crypto v0.21.0 // indirect + golang.org/x/crypto v0.22.0 // indirect golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 // indirect golang.org/x/net v0.23.0 // indirect golang.org/x/oauth2 v0.18.0 // indirect golang.org/x/sync v0.6.0 // indirect - golang.org/x/sys v0.18.0 // indirect - golang.org/x/term v0.18.0 // indirect + golang.org/x/sys v0.19.0 // indirect + golang.org/x/term v0.19.0 // indirect golang.org/x/time v0.5.0 // indirect golang.org/x/tools v0.19.0 // indirect golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect diff --git a/cmd/configschema/go.sum b/cmd/configschema/go.sum index 990fba85ad3b..d30504dd78a4 100644 --- a/cmd/configschema/go.sum +++ b/cmd/configschema/go.sum @@ -244,8 +244,8 @@ github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbt github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= github.com/ReneKroon/ttlcache/v2 v2.11.0 h1:OvlcYFYi941SBN3v9dsDcC2N8vRxyHcCmJb3Vl4QMoM= github.com/ReneKroon/ttlcache/v2 v2.11.0/go.mod h1:mBxvsNY+BT8qLLd6CuAJubbKo6r0jh3nb5et22bbfGY= -github.com/SAP/go-hdb v1.8.11 h1:CfzNLy9ymcwMbAMWYpkd8NezbVKYQcNxpRqOPfBNHAE= -github.com/SAP/go-hdb v1.8.11/go.mod h1:AjSrmLmZEZcX17tS41J9/bFYvAKqLFuZ28v5h79Yn1c= +github.com/SAP/go-hdb v1.8.12 h1:F/bpSlPZG0CvVWlTxxiEHGnynA8uILCPoIRoG+iMmkE= +github.com/SAP/go-hdb v1.8.12/go.mod h1:SNF6129HdtfK0ve8LQIeHEYwNu5CCJr7vXmhA4UbkNw= github.com/SermoDigital/jose v0.9.2-0.20161205224733-f6df55f235c2/go.mod h1:ARgCUhI1MHQH+ONky/PAtmVHQrP5JlGY0F3poXOp/fA= github.com/SermoDigital/jose v0.9.2-0.20180104203859-803625baeddc h1:MhBvG7RLaLqlyjxMR6of35vt6MVQ+eXMcgn9X/sy0FE= github.com/SermoDigital/jose v0.9.2-0.20180104203859-803625baeddc/go.mod h1:ARgCUhI1MHQH+ONky/PAtmVHQrP5JlGY0F3poXOp/fA= @@ -1397,8 +1397,8 @@ github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB8 github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/common v0.31.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= @@ -1824,8 +1824,8 @@ golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90/go.mod h1:IxCIyHEi3zRg3s0 golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= -golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= -golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= +golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30= +golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -2054,8 +2054,9 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= @@ -2064,8 +2065,8 @@ golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= -golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8= -golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= +golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q= +golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= diff --git a/cmd/otelcontribcol/go.mod b/cmd/otelcontribcol/go.mod index fb55c4edd0fd..2128901e0625 100644 --- a/cmd/otelcontribcol/go.mod +++ b/cmd/otelcontribcol/go.mod @@ -219,7 +219,7 @@ require ( go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/receiver/nopreceiver v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b - golang.org/x/sys v0.18.0 + golang.org/x/sys v0.19.0 ) require ( @@ -300,7 +300,7 @@ require ( github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/ReneKroon/ttlcache/v2 v2.11.0 // indirect - github.com/SAP/go-hdb v1.8.11 // indirect + github.com/SAP/go-hdb v1.8.12 // indirect github.com/SermoDigital/jose v0.9.2-0.20180104203859-803625baeddc // indirect github.com/Showmax/go-fqdn v1.0.0 // indirect github.com/aerospike/aerospike-client-go/v6 v6.13.0 // indirect @@ -597,7 +597,7 @@ require ( github.com/pquerna/cachecontrol v0.1.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect github.com/prometheus/client_model v0.6.1 // indirect - github.com/prometheus/common v0.51.1 // indirect + github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.13.0 // indirect github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect @@ -700,13 +700,13 @@ require ( go.uber.org/atomic v1.11.0 // indirect go.uber.org/multierr v1.11.0 // indirect go.uber.org/zap v1.27.0 // indirect - golang.org/x/crypto v0.21.0 // indirect + golang.org/x/crypto v0.22.0 // indirect golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 // indirect golang.org/x/mod v0.16.0 // indirect golang.org/x/net v0.23.0 // indirect golang.org/x/oauth2 v0.18.0 // indirect golang.org/x/sync v0.6.0 // indirect - golang.org/x/term v0.18.0 // indirect + golang.org/x/term v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.5.0 // indirect golang.org/x/tools v0.19.0 // indirect diff --git a/cmd/otelcontribcol/go.sum b/cmd/otelcontribcol/go.sum index 09d6f8de03e5..1b624441be68 100644 --- a/cmd/otelcontribcol/go.sum +++ b/cmd/otelcontribcol/go.sum @@ -242,8 +242,8 @@ github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbt github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= github.com/ReneKroon/ttlcache/v2 v2.11.0 h1:OvlcYFYi941SBN3v9dsDcC2N8vRxyHcCmJb3Vl4QMoM= github.com/ReneKroon/ttlcache/v2 v2.11.0/go.mod h1:mBxvsNY+BT8qLLd6CuAJubbKo6r0jh3nb5et22bbfGY= -github.com/SAP/go-hdb v1.8.11 h1:CfzNLy9ymcwMbAMWYpkd8NezbVKYQcNxpRqOPfBNHAE= -github.com/SAP/go-hdb v1.8.11/go.mod h1:AjSrmLmZEZcX17tS41J9/bFYvAKqLFuZ28v5h79Yn1c= +github.com/SAP/go-hdb v1.8.12 h1:F/bpSlPZG0CvVWlTxxiEHGnynA8uILCPoIRoG+iMmkE= +github.com/SAP/go-hdb v1.8.12/go.mod h1:SNF6129HdtfK0ve8LQIeHEYwNu5CCJr7vXmhA4UbkNw= github.com/SermoDigital/jose v0.9.2-0.20161205224733-f6df55f235c2/go.mod h1:ARgCUhI1MHQH+ONky/PAtmVHQrP5JlGY0F3poXOp/fA= github.com/SermoDigital/jose v0.9.2-0.20180104203859-803625baeddc h1:MhBvG7RLaLqlyjxMR6of35vt6MVQ+eXMcgn9X/sy0FE= github.com/SermoDigital/jose v0.9.2-0.20180104203859-803625baeddc/go.mod h1:ARgCUhI1MHQH+ONky/PAtmVHQrP5JlGY0F3poXOp/fA= @@ -1399,8 +1399,8 @@ github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB8 github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/common v0.31.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= @@ -1827,8 +1827,8 @@ golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90/go.mod h1:IxCIyHEi3zRg3s0 golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= -golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= -golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= +golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30= +golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -2058,8 +2058,9 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= @@ -2068,8 +2069,8 @@ golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= -golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8= -golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= +golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q= +golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= diff --git a/go.mod b/go.mod index 1efceb656cf1..0bd8891ae1c1 100644 --- a/go.mod +++ b/go.mod @@ -265,7 +265,7 @@ require ( github.com/Masterminds/semver/v3 v3.2.0 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/ReneKroon/ttlcache/v2 v2.11.0 // indirect - github.com/SAP/go-hdb v1.8.11 // indirect + github.com/SAP/go-hdb v1.8.12 // indirect github.com/SermoDigital/jose v0.9.2-0.20180104203859-803625baeddc // indirect github.com/Showmax/go-fqdn v1.0.0 // indirect github.com/aerospike/aerospike-client-go/v6 v6.13.0 // indirect @@ -561,7 +561,7 @@ require ( github.com/pquerna/cachecontrol v0.1.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect github.com/prometheus/client_model v0.6.1 // indirect - github.com/prometheus/common v0.51.1 // indirect + github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.13.0 // indirect github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e // indirect @@ -674,14 +674,14 @@ require ( go.uber.org/atomic v1.11.0 // indirect go.uber.org/multierr v1.11.0 // indirect go.uber.org/zap v1.27.0 // indirect - golang.org/x/crypto v0.21.0 // indirect + golang.org/x/crypto v0.22.0 // indirect golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 // indirect golang.org/x/mod v0.16.0 // indirect golang.org/x/net v0.23.0 // indirect golang.org/x/oauth2 v0.18.0 // indirect golang.org/x/sync v0.6.0 // indirect - golang.org/x/sys v0.18.0 // indirect - golang.org/x/term v0.18.0 // indirect + golang.org/x/sys v0.19.0 // indirect + golang.org/x/term v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.5.0 // indirect golang.org/x/tools v0.19.0 // indirect diff --git a/go.sum b/go.sum index 575960b6092b..e3360b972aea 100644 --- a/go.sum +++ b/go.sum @@ -246,8 +246,8 @@ github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbt github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= github.com/ReneKroon/ttlcache/v2 v2.11.0 h1:OvlcYFYi941SBN3v9dsDcC2N8vRxyHcCmJb3Vl4QMoM= github.com/ReneKroon/ttlcache/v2 v2.11.0/go.mod h1:mBxvsNY+BT8qLLd6CuAJubbKo6r0jh3nb5et22bbfGY= -github.com/SAP/go-hdb v1.8.11 h1:CfzNLy9ymcwMbAMWYpkd8NezbVKYQcNxpRqOPfBNHAE= -github.com/SAP/go-hdb v1.8.11/go.mod h1:AjSrmLmZEZcX17tS41J9/bFYvAKqLFuZ28v5h79Yn1c= +github.com/SAP/go-hdb v1.8.12 h1:F/bpSlPZG0CvVWlTxxiEHGnynA8uILCPoIRoG+iMmkE= +github.com/SAP/go-hdb v1.8.12/go.mod h1:SNF6129HdtfK0ve8LQIeHEYwNu5CCJr7vXmhA4UbkNw= github.com/SermoDigital/jose v0.9.2-0.20161205224733-f6df55f235c2/go.mod h1:ARgCUhI1MHQH+ONky/PAtmVHQrP5JlGY0F3poXOp/fA= github.com/SermoDigital/jose v0.9.2-0.20180104203859-803625baeddc h1:MhBvG7RLaLqlyjxMR6of35vt6MVQ+eXMcgn9X/sy0FE= github.com/SermoDigital/jose v0.9.2-0.20180104203859-803625baeddc/go.mod h1:ARgCUhI1MHQH+ONky/PAtmVHQrP5JlGY0F3poXOp/fA= @@ -1397,8 +1397,8 @@ github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB8 github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/common v0.31.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= @@ -1825,8 +1825,8 @@ golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90/go.mod h1:IxCIyHEi3zRg3s0 golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= -golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= -golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= +golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30= +golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -2055,8 +2055,9 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= @@ -2065,8 +2066,8 @@ golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= -golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8= -golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= +golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q= +golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= diff --git a/internal/sqlquery/go.mod b/internal/sqlquery/go.mod index 2e93ca26e8b0..b2ff6c588cbc 100644 --- a/internal/sqlquery/go.mod +++ b/internal/sqlquery/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/internal/sqlque go 1.21 require ( - github.com/SAP/go-hdb v1.8.11 + github.com/SAP/go-hdb v1.8.12 github.com/go-sql-driver/mysql v1.8.1 github.com/lib/pq v1.10.9 github.com/microsoft/go-mssqldb v1.7.0 @@ -40,7 +40,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/s3 v1.31.0 // indirect github.com/aws/smithy-go v1.13.5 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/danieljoos/wincred v1.1.2 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/dvsekhvalnov/jose2go v1.6.0 // indirect @@ -80,8 +80,8 @@ require ( github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect - github.com/prometheus/common v0.50.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect + github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/procfs v0.13.0 // indirect github.com/sirupsen/logrus v1.9.0 // indirect github.com/zeebo/xxh3 v1.0.2 // indirect @@ -95,13 +95,13 @@ require ( go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect - golang.org/x/crypto v0.21.0 // indirect + golang.org/x/crypto v0.22.0 // indirect golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 // indirect golang.org/x/mod v0.14.0 // indirect golang.org/x/net v0.23.0 // indirect golang.org/x/sync v0.6.0 // indirect - golang.org/x/sys v0.18.0 // indirect - golang.org/x/term v0.18.0 // indirect + golang.org/x/sys v0.19.0 // indirect + golang.org/x/term v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/tools v0.17.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect diff --git a/internal/sqlquery/go.sum b/internal/sqlquery/go.sum index e548ee5295e6..6c9ea3531ca9 100644 --- a/internal/sqlquery/go.sum +++ b/internal/sqlquery/go.sum @@ -20,8 +20,8 @@ github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1 h1:DzHpqpoJVaC github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1/go.mod h1:wP83P5OoQ5p6ip3ScPr0BAq0BvuPAvacpEuSzyouqAI= github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c h1:RGWPOewvKIROun94nF7v2cua9qP+thov/7M50KEoeSU= github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= -github.com/SAP/go-hdb v1.8.11 h1:CfzNLy9ymcwMbAMWYpkd8NezbVKYQcNxpRqOPfBNHAE= -github.com/SAP/go-hdb v1.8.11/go.mod h1:AjSrmLmZEZcX17tS41J9/bFYvAKqLFuZ28v5h79Yn1c= +github.com/SAP/go-hdb v1.8.12 h1:F/bpSlPZG0CvVWlTxxiEHGnynA8uILCPoIRoG+iMmkE= +github.com/SAP/go-hdb v1.8.12/go.mod h1:SNF6129HdtfK0ve8LQIeHEYwNu5CCJr7vXmhA4UbkNw= github.com/apache/arrow/go/v15 v15.0.0 h1:1zZACWf85oEZY5/kd9dsQS7i+2G5zVQcbKTHgslqHNA= github.com/apache/arrow/go/v15 v15.0.0/go.mod h1:DGXsR3ajT524njufqf95822i+KTh+yea1jass9YXgjA= github.com/aws/aws-sdk-go-v2 v1.17.7 h1:CLSjnhJSTSogvqUGhIC6LqFKATMRexcxLZ0i/Nzk9Eg= @@ -64,8 +64,8 @@ github.com/aws/smithy-go v1.13.5 h1:hgz0X/DX0dGqTYpGALqXJoRKRj5oQ7150i5FdTePzO8= github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/danieljoos/wincred v1.1.2 h1:QLdCxFs1/Yl4zduvBdcHB8goaYk9RARS2SgLLRuAyr0= github.com/danieljoos/wincred v1.1.2/go.mod h1:GijpziifJoIBfYh+S7BbkdUTU4LfM+QnGqR5Vl2tAx0= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -184,10 +184,10 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= -github.com/prometheus/common v0.50.0 h1:YSZE6aa9+luNa2da6/Tik0q0A5AbR+U003TItK57CPQ= -github.com/prometheus/common v0.50.0/go.mod h1:wHFBCEVWVmHMUpg7pYcOm2QUR/ocQdYSJVQJKnHc3xQ= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/procfs v0.13.0 h1:GqzLlQyfsPbaEHaQkO7tbDlriv/4o5Hudv6OXHGKX7o= github.com/prometheus/procfs v0.13.0/go.mod h1:cd4PFCR54QLnGKPaKGA6l+cfuNXtht43ZKY6tow0Y1g= github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= @@ -255,8 +255,8 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= -golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= -golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= +golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30= +golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 h1:/RIbNt/Zr7rVhIkQhooTxCxFcdWLGIKnZA4IXNFSrvo= golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3/go.mod h1:idGWGoKP1toJGkd5/ig9ZLuPcZBC3ewk7SzmH0uou08= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= @@ -292,13 +292,13 @@ golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= -golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= -golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8= -golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= +golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q= +golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= diff --git a/receiver/saphanareceiver/go.mod b/receiver/saphanareceiver/go.mod index 8848f432b03a..80750dba3640 100644 --- a/receiver/saphanareceiver/go.mod +++ b/receiver/saphanareceiver/go.mod @@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/receiver/saphan go 1.21 require ( - github.com/SAP/go-hdb v1.8.11 + github.com/SAP/go-hdb v1.8.12 github.com/google/go-cmp v0.6.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 @@ -45,8 +45,8 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect - github.com/prometheus/common v0.50.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect + github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/procfs v0.13.0 // indirect github.com/stretchr/objx v0.5.2 // indirect go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect @@ -55,9 +55,9 @@ require ( go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect - golang.org/x/crypto v0.21.0 // indirect + golang.org/x/crypto v0.22.0 // indirect golang.org/x/net v0.23.0 // indirect - golang.org/x/sys v0.18.0 // indirect + golang.org/x/sys v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect google.golang.org/grpc v1.62.1 // indirect diff --git a/receiver/saphanareceiver/go.sum b/receiver/saphanareceiver/go.sum index 6d4842a74cf3..57e2f6735cf7 100644 --- a/receiver/saphanareceiver/go.sum +++ b/receiver/saphanareceiver/go.sum @@ -1,5 +1,5 @@ -github.com/SAP/go-hdb v1.8.11 h1:CfzNLy9ymcwMbAMWYpkd8NezbVKYQcNxpRqOPfBNHAE= -github.com/SAP/go-hdb v1.8.11/go.mod h1:AjSrmLmZEZcX17tS41J9/bFYvAKqLFuZ28v5h79Yn1c= +github.com/SAP/go-hdb v1.8.12 h1:F/bpSlPZG0CvVWlTxxiEHGnynA8uILCPoIRoG+iMmkE= +github.com/SAP/go-hdb v1.8.12/go.mod h1:SNF6129HdtfK0ve8LQIeHEYwNu5CCJr7vXmhA4UbkNw= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= @@ -54,10 +54,10 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= -github.com/prometheus/common v0.50.0 h1:YSZE6aa9+luNa2da6/Tik0q0A5AbR+U003TItK57CPQ= -github.com/prometheus/common v0.50.0/go.mod h1:wHFBCEVWVmHMUpg7pYcOm2QUR/ocQdYSJVQJKnHc3xQ= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/procfs v0.13.0 h1:GqzLlQyfsPbaEHaQkO7tbDlriv/4o5Hudv6OXHGKX7o= github.com/prometheus/procfs v0.13.0/go.mod h1:cd4PFCR54QLnGKPaKGA6l+cfuNXtht43ZKY6tow0Y1g= github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= @@ -111,8 +111,8 @@ go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= -golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= +golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30= +golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= @@ -127,8 +127,8 @@ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= -golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= diff --git a/receiver/sqlqueryreceiver/go.mod b/receiver/sqlqueryreceiver/go.mod index 2d341e6f4f08..6d78ed45e5fb 100644 --- a/receiver/sqlqueryreceiver/go.mod +++ b/receiver/sqlqueryreceiver/go.mod @@ -35,7 +35,7 @@ require ( github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/Microsoft/hcsshim v0.11.4 // indirect - github.com/SAP/go-hdb v1.8.11 // indirect + github.com/SAP/go-hdb v1.8.12 // indirect github.com/apache/arrow/go/v15 v15.0.0 // indirect github.com/aws/aws-sdk-go-v2 v1.22.2 // indirect github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.10 // indirect @@ -121,8 +121,8 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect - github.com/prometheus/common v0.50.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect + github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/procfs v0.13.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect github.com/shoenig/go-m1cpu v0.1.6 // indirect @@ -143,13 +143,13 @@ require ( go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/crypto v0.21.0 // indirect + golang.org/x/crypto v0.22.0 // indirect golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 // indirect golang.org/x/mod v0.16.0 // indirect golang.org/x/net v0.23.0 // indirect golang.org/x/sync v0.6.0 // indirect - golang.org/x/sys v0.18.0 // indirect - golang.org/x/term v0.18.0 // indirect + golang.org/x/sys v0.19.0 // indirect + golang.org/x/term v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/tools v0.17.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect diff --git a/receiver/sqlqueryreceiver/go.sum b/receiver/sqlqueryreceiver/go.sum index f591a0ad7a7b..2643707967c7 100644 --- a/receiver/sqlqueryreceiver/go.sum +++ b/receiver/sqlqueryreceiver/go.sum @@ -32,8 +32,8 @@ github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migc github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= github.com/Microsoft/hcsshim v0.11.4 h1:68vKo2VN8DE9AdN4tnkWnmdhqdbpUFM8OF3Airm7fz8= github.com/Microsoft/hcsshim v0.11.4/go.mod h1:smjE4dvqPX9Zldna+t5FG3rnoHhaB7QYxPRqGcpAD9w= -github.com/SAP/go-hdb v1.8.11 h1:CfzNLy9ymcwMbAMWYpkd8NezbVKYQcNxpRqOPfBNHAE= -github.com/SAP/go-hdb v1.8.11/go.mod h1:AjSrmLmZEZcX17tS41J9/bFYvAKqLFuZ28v5h79Yn1c= +github.com/SAP/go-hdb v1.8.12 h1:F/bpSlPZG0CvVWlTxxiEHGnynA8uILCPoIRoG+iMmkE= +github.com/SAP/go-hdb v1.8.12/go.mod h1:SNF6129HdtfK0ve8LQIeHEYwNu5CCJr7vXmhA4UbkNw= github.com/apache/arrow/go/v15 v15.0.0 h1:1zZACWf85oEZY5/kd9dsQS7i+2G5zVQcbKTHgslqHNA= github.com/apache/arrow/go/v15 v15.0.0/go.mod h1:DGXsR3ajT524njufqf95822i+KTh+yea1jass9YXgjA= github.com/aws/aws-sdk-go-v2 v1.17.7/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= @@ -262,10 +262,10 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= -github.com/prometheus/common v0.50.0 h1:YSZE6aa9+luNa2da6/Tik0q0A5AbR+U003TItK57CPQ= -github.com/prometheus/common v0.50.0/go.mod h1:wHFBCEVWVmHMUpg7pYcOm2QUR/ocQdYSJVQJKnHc3xQ= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/procfs v0.13.0 h1:GqzLlQyfsPbaEHaQkO7tbDlriv/4o5Hudv6OXHGKX7o= github.com/prometheus/procfs v0.13.0/go.mod h1:cd4PFCR54QLnGKPaKGA6l+cfuNXtht43ZKY6tow0Y1g= github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= @@ -363,8 +363,8 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= -golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= -golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= +golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30= +golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 h1:/RIbNt/Zr7rVhIkQhooTxCxFcdWLGIKnZA4IXNFSrvo= golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3/go.mod h1:idGWGoKP1toJGkd5/ig9ZLuPcZBC3ewk7SzmH0uou08= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= @@ -405,13 +405,14 @@ golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= -golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8= -golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= +golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q= +golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= From 9c17fd8432e2e3b049e31fe19944b2467397fe30 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 13:39:15 +0200 Subject: [PATCH 10/21] Update module github.com/prometheus/common to v0.52.2 (#32250) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/prometheus/common](https://togithub.com/prometheus/common) | `v0.51.1` -> `v0.52.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fcommon/v0.52.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fcommon/v0.52.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fcommon/v0.51.1/v0.52.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fcommon/v0.51.1/v0.52.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes
prometheus/common (github.com/prometheus/common) ### [`v0.52.2`](https://togithub.com/prometheus/common/releases/tag/v0.52.2) [Compare Source](https://togithub.com/prometheus/common/compare/v0.51.1...v0.52.2) #### What's Changed - Drop support for Go older than 1.18 by [@​SuperQ](https://togithub.com/SuperQ) in [https://github.com/prometheus/common/pull/612](https://togithub.com/prometheus/common/pull/612) - fix(protobuf): Correctly decode multi-messages streams by [@​srebhan](https://togithub.com/srebhan) in [https://github.com/prometheus/common/pull/616](https://togithub.com/prometheus/common/pull/616) - Bump github.com/aws/aws-sdk-go from 1.50.31 to 1.51.11 in /sigv4 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/prometheus/common/pull/615](https://togithub.com/prometheus/common/pull/615) #### New Contributors - [@​srebhan](https://togithub.com/srebhan) made their first contribution in [https://github.com/prometheus/common/pull/616](https://togithub.com/prometheus/common/pull/616) **Full Changelog**: https://github.com/prometheus/common/compare/v0.51.1...v0.52.2
--- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- cmd/oteltestbedcol/go.mod | 2 +- cmd/oteltestbedcol/go.sum | 4 ++-- connector/datadogconnector/go.mod | 2 +- connector/datadogconnector/go.sum | 4 ++-- exporter/alertmanagerexporter/go.mod | 2 +- exporter/alertmanagerexporter/go.sum | 4 ++-- exporter/datadogexporter/go.mod | 2 +- exporter/datadogexporter/go.sum | 4 ++-- exporter/datadogexporter/integrationtest/go.mod | 2 +- exporter/datadogexporter/integrationtest/go.sum | 4 ++-- exporter/lokiexporter/go.mod | 2 +- exporter/lokiexporter/go.sum | 4 ++-- exporter/prometheusexporter/go.mod | 2 +- exporter/prometheusexporter/go.sum | 4 ++-- exporter/prometheusremotewriteexporter/go.mod | 2 +- exporter/prometheusremotewriteexporter/go.sum | 4 ++-- pkg/translator/loki/go.mod | 2 +- pkg/translator/loki/go.sum | 4 ++-- pkg/translator/prometheusremotewrite/go.mod | 2 +- pkg/translator/prometheusremotewrite/go.sum | 4 ++-- receiver/lokireceiver/go.mod | 2 +- receiver/lokireceiver/go.sum | 4 ++-- receiver/prometheusreceiver/go.mod | 2 +- receiver/prometheusreceiver/go.sum | 4 ++-- receiver/purefareceiver/go.mod | 2 +- receiver/purefareceiver/go.sum | 4 ++-- receiver/purefbreceiver/go.mod | 2 +- receiver/purefbreceiver/go.sum | 4 ++-- receiver/simpleprometheusreceiver/go.mod | 2 +- receiver/simpleprometheusreceiver/go.sum | 4 ++-- testbed/go.mod | 2 +- testbed/go.sum | 4 ++-- 32 files changed, 48 insertions(+), 48 deletions(-) diff --git a/cmd/oteltestbedcol/go.mod b/cmd/oteltestbedcol/go.mod index d225517a1d0d..72f73a1a78eb 100644 --- a/cmd/oteltestbedcol/go.mod +++ b/cmd/oteltestbedcol/go.mod @@ -195,7 +195,7 @@ require ( github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect github.com/prometheus/client_model v0.6.1 // indirect - github.com/prometheus/common v0.51.1 // indirect + github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e // indirect diff --git a/cmd/oteltestbedcol/go.sum b/cmd/oteltestbedcol/go.sum index 68157212aed3..12a3ae814715 100644 --- a/cmd/oteltestbedcol/go.sum +++ b/cmd/oteltestbedcol/go.sum @@ -566,8 +566,8 @@ github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8b github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= diff --git a/connector/datadogconnector/go.mod b/connector/datadogconnector/go.mod index 3e35b2b6d41f..fcc699e182c3 100644 --- a/connector/datadogconnector/go.mod +++ b/connector/datadogconnector/go.mod @@ -127,7 +127,7 @@ require ( github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect github.com/prometheus/client_golang v1.19.0 // indirect github.com/prometheus/client_model v0.6.0 // indirect - github.com/prometheus/common v0.51.1 // indirect + github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/procfs v0.13.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/secure-systems-lab/go-securesystemslib v0.7.0 // indirect diff --git a/connector/datadogconnector/go.sum b/connector/datadogconnector/go.sum index e4f2d5f70127..e45ccd7d6a0a 100644 --- a/connector/datadogconnector/go.sum +++ b/connector/datadogconnector/go.sum @@ -507,8 +507,8 @@ github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdU github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.13.0 h1:GqzLlQyfsPbaEHaQkO7tbDlriv/4o5Hudv6OXHGKX7o= diff --git a/exporter/alertmanagerexporter/go.mod b/exporter/alertmanagerexporter/go.mod index e12de53f0f80..b5e95bfab204 100644 --- a/exporter/alertmanagerexporter/go.mod +++ b/exporter/alertmanagerexporter/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/cenkalti/backoff/v4 v4.3.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 - github.com/prometheus/common v0.51.1 + github.com/prometheus/common v0.52.2 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/exporter/alertmanagerexporter/go.sum b/exporter/alertmanagerexporter/go.sum index c436251c71a1..602a544af421 100644 --- a/exporter/alertmanagerexporter/go.sum +++ b/exporter/alertmanagerexporter/go.sum @@ -64,8 +64,8 @@ github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7km github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= diff --git a/exporter/datadogexporter/go.mod b/exporter/datadogexporter/go.mod index e8d7aa89323f..7fd8f4421ec3 100644 --- a/exporter/datadogexporter/go.mod +++ b/exporter/datadogexporter/go.mod @@ -216,7 +216,7 @@ require ( github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect github.com/prometheus/client_golang v1.19.0 // indirect github.com/prometheus/client_model v0.6.0 // indirect - github.com/prometheus/common v0.51.1 // indirect + github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.13.0 // indirect github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e // indirect diff --git a/exporter/datadogexporter/go.sum b/exporter/datadogexporter/go.sum index e749c84f550a..fe8a9ff07998 100644 --- a/exporter/datadogexporter/go.sum +++ b/exporter/datadogexporter/go.sum @@ -667,8 +667,8 @@ github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB8 github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/common v0.31.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= diff --git a/exporter/datadogexporter/integrationtest/go.mod b/exporter/datadogexporter/integrationtest/go.mod index a13bbaeac007..0c4f91b7494c 100644 --- a/exporter/datadogexporter/integrationtest/go.mod +++ b/exporter/datadogexporter/integrationtest/go.mod @@ -127,7 +127,7 @@ require ( github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect github.com/prometheus/client_golang v1.19.0 // indirect github.com/prometheus/client_model v0.6.0 // indirect - github.com/prometheus/common v0.51.1 // indirect + github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/procfs v0.13.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/secure-systems-lab/go-securesystemslib v0.7.0 // indirect diff --git a/exporter/datadogexporter/integrationtest/go.sum b/exporter/datadogexporter/integrationtest/go.sum index e4f2d5f70127..e45ccd7d6a0a 100644 --- a/exporter/datadogexporter/integrationtest/go.sum +++ b/exporter/datadogexporter/integrationtest/go.sum @@ -507,8 +507,8 @@ github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdU github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.13.0 h1:GqzLlQyfsPbaEHaQkO7tbDlriv/4o5Hudv6OXHGKX7o= diff --git a/exporter/lokiexporter/go.mod b/exporter/lokiexporter/go.mod index cdad28ab42a5..4183f3c4b67b 100644 --- a/exporter/lokiexporter/go.mod +++ b/exporter/lokiexporter/go.mod @@ -8,7 +8,7 @@ require ( github.com/golang/snappy v0.0.4 github.com/grafana/loki/pkg/push v0.0.0-20231127162423-bd505f8e2d37 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/loki v0.97.0 - github.com/prometheus/common v0.51.1 + github.com/prometheus/common v0.52.2 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/exporter/lokiexporter/go.sum b/exporter/lokiexporter/go.sum index 6f295204ac79..44ac997c0594 100644 --- a/exporter/lokiexporter/go.sum +++ b/exporter/lokiexporter/go.sum @@ -102,8 +102,8 @@ github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7km github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= diff --git a/exporter/prometheusexporter/go.mod b/exporter/prometheusexporter/go.mod index df9c31d8ba33..1379a6cef451 100644 --- a/exporter/prometheusexporter/go.mod +++ b/exporter/prometheusexporter/go.mod @@ -9,7 +9,7 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver v0.97.0 github.com/prometheus/client_golang v1.19.0 github.com/prometheus/client_model v0.6.1 - github.com/prometheus/common v0.51.1 + github.com/prometheus/common v0.52.2 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/exporter/prometheusexporter/go.sum b/exporter/prometheusexporter/go.sum index c8c7e7fd0d5f..0d25c830ae5d 100644 --- a/exporter/prometheusexporter/go.sum +++ b/exporter/prometheusexporter/go.sum @@ -478,8 +478,8 @@ github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8b github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= diff --git a/exporter/prometheusremotewriteexporter/go.mod b/exporter/prometheusremotewriteexporter/go.mod index 5a95834a2795..73e5a03289a2 100644 --- a/exporter/prometheusremotewriteexporter/go.mod +++ b/exporter/prometheusremotewriteexporter/go.mod @@ -54,7 +54,7 @@ require ( github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect github.com/prometheus/client_model v0.6.0 // indirect - github.com/prometheus/common v0.51.1 // indirect + github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/tidwall/gjson v1.10.2 // indirect diff --git a/exporter/prometheusremotewriteexporter/go.sum b/exporter/prometheusremotewriteexporter/go.sum index 1ee82d0151bd..7379c6f12b9b 100644 --- a/exporter/prometheusremotewriteexporter/go.sum +++ b/exporter/prometheusremotewriteexporter/go.sum @@ -64,8 +64,8 @@ github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7km github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e h1:UmqAuY2OyDoog8+l5FybViJE5B2r+UxVGCUwFTsY5AA= diff --git a/pkg/translator/loki/go.mod b/pkg/translator/loki/go.mod index ded4f3b7ba61..5d4f3ba03cbb 100644 --- a/pkg/translator/loki/go.mod +++ b/pkg/translator/loki/go.mod @@ -8,7 +8,7 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus v0.97.0 - github.com/prometheus/common v0.51.1 + github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b diff --git a/pkg/translator/loki/go.sum b/pkg/translator/loki/go.sum index c0f868e99905..4dded3629248 100644 --- a/pkg/translator/loki/go.sum +++ b/pkg/translator/loki/go.sum @@ -81,8 +81,8 @@ github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7km github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= diff --git a/pkg/translator/prometheusremotewrite/go.mod b/pkg/translator/prometheusremotewrite/go.mod index e617a4e8c618..845a50719237 100644 --- a/pkg/translator/prometheusremotewrite/go.mod +++ b/pkg/translator/prometheusremotewrite/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus v0.97.0 - github.com/prometheus/common v0.51.1 + github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b diff --git a/pkg/translator/prometheusremotewrite/go.sum b/pkg/translator/prometheusremotewrite/go.sum index 32d0c8c4d06f..e573c5ef7421 100644 --- a/pkg/translator/prometheusremotewrite/go.sum +++ b/pkg/translator/prometheusremotewrite/go.sum @@ -29,8 +29,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e h1:UmqAuY2OyDoog8+l5FybViJE5B2r+UxVGCUwFTsY5AA= github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e/go.mod h1:+0ld+ozir7zWFcHA2vVpWAKxXakIioEjPPNOqH+J3ZA= github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= diff --git a/receiver/lokireceiver/go.mod b/receiver/lokireceiver/go.mod index ae08c927394d..203e464ad6e8 100644 --- a/receiver/lokireceiver/go.mod +++ b/receiver/lokireceiver/go.mod @@ -62,7 +62,7 @@ require ( github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect github.com/prometheus/client_model v0.6.0 // indirect - github.com/prometheus/common v0.51.1 // indirect + github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e // indirect github.com/rs/cors v1.10.1 // indirect diff --git a/receiver/lokireceiver/go.sum b/receiver/lokireceiver/go.sum index 1495a20d1aa1..f1c76dacd84e 100644 --- a/receiver/lokireceiver/go.sum +++ b/receiver/lokireceiver/go.sum @@ -104,8 +104,8 @@ github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7km github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= diff --git a/receiver/prometheusreceiver/go.mod b/receiver/prometheusreceiver/go.mod index d16dff6a4a1c..c23384657b00 100644 --- a/receiver/prometheusreceiver/go.mod +++ b/receiver/prometheusreceiver/go.mod @@ -11,7 +11,7 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus v0.97.0 github.com/prometheus/client_golang v1.19.0 - github.com/prometheus/common v0.51.1 + github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/receiver/prometheusreceiver/go.sum b/receiver/prometheusreceiver/go.sum index 2db3a5c191b4..45f20e2f9293 100644 --- a/receiver/prometheusreceiver/go.sum +++ b/receiver/prometheusreceiver/go.sum @@ -479,8 +479,8 @@ github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8b github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= diff --git a/receiver/purefareceiver/go.mod b/receiver/purefareceiver/go.mod index 05e852471c89..ab400bb2ecca 100644 --- a/receiver/purefareceiver/go.mod +++ b/receiver/purefareceiver/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/extension/bearertokenauthextension v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver v0.97.0 - github.com/prometheus/common v0.51.1 + github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/receiver/purefareceiver/go.sum b/receiver/purefareceiver/go.sum index de528c2ccc9b..a3a062b96039 100644 --- a/receiver/purefareceiver/go.sum +++ b/receiver/purefareceiver/go.sum @@ -478,8 +478,8 @@ github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8b github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= diff --git a/receiver/purefbreceiver/go.mod b/receiver/purefbreceiver/go.mod index 021622fae6d2..462bdc5d760a 100644 --- a/receiver/purefbreceiver/go.mod +++ b/receiver/purefbreceiver/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/extension/bearertokenauthextension v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver v0.97.0 - github.com/prometheus/common v0.51.1 + github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/receiver/purefbreceiver/go.sum b/receiver/purefbreceiver/go.sum index de528c2ccc9b..a3a062b96039 100644 --- a/receiver/purefbreceiver/go.sum +++ b/receiver/purefbreceiver/go.sum @@ -478,8 +478,8 @@ github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8b github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= diff --git a/receiver/simpleprometheusreceiver/go.mod b/receiver/simpleprometheusreceiver/go.mod index 4e6ff8e43aec..128995ec4e9f 100644 --- a/receiver/simpleprometheusreceiver/go.mod +++ b/receiver/simpleprometheusreceiver/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver v0.97.0 - github.com/prometheus/common v0.51.1 + github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b diff --git a/receiver/simpleprometheusreceiver/go.sum b/receiver/simpleprometheusreceiver/go.sum index de528c2ccc9b..a3a062b96039 100644 --- a/receiver/simpleprometheusreceiver/go.sum +++ b/receiver/simpleprometheusreceiver/go.sum @@ -478,8 +478,8 @@ github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8b github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= diff --git a/testbed/go.mod b/testbed/go.mod index cd072f9edfb3..658a56224c5e 100644 --- a/testbed/go.mod +++ b/testbed/go.mod @@ -29,7 +29,7 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/receiver/syslogreceiver v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zipkinreceiver v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/testbed/mockdatasenders/mockdatadogagentexporter v0.97.0 - github.com/prometheus/common v0.51.1 + github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/shirou/gopsutil/v3 v3.24.3 github.com/stretchr/testify v1.9.0 diff --git a/testbed/go.sum b/testbed/go.sum index db99b052b584..6f5ac33377b9 100644 --- a/testbed/go.sum +++ b/testbed/go.sum @@ -544,8 +544,8 @@ github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8b github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.51.1 h1:eIjN50Bwglz6a/c3hAgSMcofL3nD+nFQkV6Dd4DsQCw= -github.com/prometheus/common v0.51.1/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= +github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= +github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= From 4edca204adb4c05b0c7d395b6d0ae0704f7f9567 Mon Sep 17 00:00:00 2001 From: Srikanth Chekuri Date: Tue, 9 Apr 2024 17:51:35 +0530 Subject: [PATCH 11/21] [cmd/opampsupervisor] Handle OpAMP connection settings (#30237) **Link to tracking Issue:** Part of #21043; based on top of https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/29848 to add test **Testing:** Added integration test --------- Co-authored-by: Evan Bradley <11745660+evan-bradley@users.noreply.github.com> --- .chloggen/supervisor-accepts-conn.yaml | 27 +++++ cmd/opampsupervisor/e2e_test.go | 51 ++++++++- cmd/opampsupervisor/go.mod | 2 +- .../supervisor/config/config.go | 14 ++- cmd/opampsupervisor/supervisor/supervisor.go | 106 +++++++++++++++++- .../supervisor/supervisor_accepts_conn.yaml | 15 +++ 6 files changed, 202 insertions(+), 13 deletions(-) create mode 100644 .chloggen/supervisor-accepts-conn.yaml create mode 100644 cmd/opampsupervisor/testdata/supervisor/supervisor_accepts_conn.yaml diff --git a/.chloggen/supervisor-accepts-conn.yaml b/.chloggen/supervisor-accepts-conn.yaml new file mode 100644 index 000000000000..60dc5d6bc7e4 --- /dev/null +++ b/.chloggen/supervisor-accepts-conn.yaml @@ -0,0 +1,27 @@ +# Use this changelog template to create an entry for release notes. + +# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' +change_type: enhancement + +# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver) +component: cmd/opampsupervisor + +# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). +note: Handle OpAMP connection settings. + +# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists. +issues: [21043] + +# (Optional) One or more lines of additional information to render under the primary note. +# These lines will be padded with 2 spaces and then inserted directly into the document. +# Use pipe (|) for multiline entries. +subtext: + +# If your change doesn't affect end users or the exported elements of any package, +# you should instead start your pull request title with [chore] or use the "Skip Changelog" label. +# Optional: The change log or logs in which this entry should be included. +# e.g. '[user]' or '[user, api]' +# Include 'user' if the change is relevant to end users. +# Include 'api' if there is a change to a library API. +# Default: '[user]' +change_logs: [] diff --git a/cmd/opampsupervisor/e2e_test.go b/cmd/opampsupervisor/e2e_test.go index 523cc8586173..6119ed1c5490 100644 --- a/cmd/opampsupervisor/e2e_test.go +++ b/cmd/opampsupervisor/e2e_test.go @@ -82,12 +82,12 @@ func newOpAMPServer(t *testing.T, connectingCallback onConnectingFuncFactory, ca s := server.New(testLogger{t: t}) onConnectedFunc := callbacks.OnConnectedFunc callbacks.OnConnectedFunc = func(ctx context.Context, conn types.Connection) { - agentConn.Store(conn) - isAgentConnected.Store(true) - connectedChan <- true if onConnectedFunc != nil { onConnectedFunc(ctx, conn) } + agentConn.Store(conn) + isAgentConnected.Store(true) + connectedChan <- true } onConnectionCloseFunc := callbacks.OnConnectionCloseFunc callbacks.OnConnectionCloseFunc = func(conn types.Connection) { @@ -473,3 +473,48 @@ func waitForSupervisorConnection(connection chan bool, connected bool) { } } } + +func TestSupervisorOpAMPConnectionSettings(t *testing.T) { + var connectedToNewServer atomic.Bool + initialServer := newOpAMPServer( + t, + defaultConnectingHandler, + server.ConnectionCallbacksStruct{}) + + s := newSupervisor(t, "accepts_conn", map[string]string{"url": initialServer.addr}) + defer s.Shutdown() + + waitForSupervisorConnection(initialServer.supervisorConnected, true) + + newServer := newOpAMPServer( + t, + defaultConnectingHandler, + server.ConnectionCallbacksStruct{ + OnConnectedFunc: func(_ context.Context, _ types.Connection) { + connectedToNewServer.Store(true) + }, + OnMessageFunc: func(_ context.Context, _ types.Connection, message *protobufs.AgentToServer) *protobufs.ServerToAgent { + return &protobufs.ServerToAgent{} + }, + }) + + initialServer.sendToSupervisor(&protobufs.ServerToAgent{ + ConnectionSettings: &protobufs.ConnectionSettingsOffers{ + Opamp: &protobufs.OpAMPConnectionSettings{ + DestinationEndpoint: "ws://" + newServer.addr + "/v1/opamp", + Headers: &protobufs.Headers{ + Headers: []*protobufs.Header{ + { + Key: "x-foo", + Value: "bar", + }, + }, + }, + }, + }, + }) + + require.Eventually(t, func() bool { + return connectedToNewServer.Load() == true + }, 10*time.Second, 500*time.Millisecond, "Collector did not connect to new OpAMP server") +} diff --git a/cmd/opampsupervisor/go.mod b/cmd/opampsupervisor/go.mod index c3d8397b6578..6182579f1fde 100644 --- a/cmd/opampsupervisor/go.mod +++ b/cmd/opampsupervisor/go.mod @@ -11,6 +11,7 @@ require ( github.com/oklog/ulid/v2 v2.1.0 github.com/open-telemetry/opamp-go v0.14.0 github.com/stretchr/testify v1.9.0 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b go.uber.org/goleak v1.3.0 @@ -27,7 +28,6 @@ require ( github.com/mitchellh/copystructure v1.2.0 // indirect github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect go.uber.org/multierr v1.11.0 // indirect golang.org/x/net v0.23.0 // indirect golang.org/x/sys v0.18.0 // indirect diff --git a/cmd/opampsupervisor/supervisor/config/config.go b/cmd/opampsupervisor/supervisor/config/config.go index 7d5000574231..1948b42a0701 100644 --- a/cmd/opampsupervisor/supervisor/config/config.go +++ b/cmd/opampsupervisor/supervisor/config/config.go @@ -4,6 +4,8 @@ package config import ( + "net/http" + "go.opentelemetry.io/collector/config/configtls" ) @@ -16,15 +18,17 @@ type Supervisor struct { // Capabilities is the set of capabilities that the Supervisor supports. type Capabilities struct { - AcceptsRemoteConfig *bool `mapstructure:"accepts_remote_config"` - ReportsEffectiveConfig *bool `mapstructure:"reports_effective_config"` - ReportsOwnMetrics *bool `mapstructure:"reports_own_metrics"` - ReportsHealth *bool `mapstructure:"reports_health"` - ReportsRemoteConfig *bool `mapstructure:"reports_remote_config"` + AcceptsRemoteConfig *bool `mapstructure:"accepts_remote_config"` + AcceptsOpAMPConnectionSettings *bool `mapstructure:"accepts_opamp_connection_settings"` + ReportsEffectiveConfig *bool `mapstructure:"reports_effective_config"` + ReportsOwnMetrics *bool `mapstructure:"reports_own_metrics"` + ReportsHealth *bool `mapstructure:"reports_health"` + ReportsRemoteConfig *bool `mapstructure:"reports_remote_config"` } type OpAMPServer struct { Endpoint string + Headers http.Header TLSSetting configtls.ClientConfig `mapstructure:"tls,omitempty"` } diff --git a/cmd/opampsupervisor/supervisor/supervisor.go b/cmd/opampsupervisor/supervisor/supervisor.go index 66d2b1cdf0fd..2c4d132fc88f 100644 --- a/cmd/opampsupervisor/supervisor/supervisor.go +++ b/cmd/opampsupervisor/supervisor/supervisor.go @@ -30,6 +30,8 @@ import ( "github.com/open-telemetry/opamp-go/protobufs" "github.com/open-telemetry/opamp-go/server" serverTypes "github.com/open-telemetry/opamp-go/server/types" + "go.opentelemetry.io/collector/config/configopaque" + "go.opentelemetry.io/collector/config/configtls" semconv "go.opentelemetry.io/collector/semconv/v1.21.0" "go.uber.org/zap" @@ -105,6 +107,8 @@ type Supervisor struct { agentHasStarted bool agentStartHealthCheckAttempts int + + connectedToOpAMPServer chan struct{} } func NewSupervisor(logger *zap.Logger, configFile string) (*Supervisor, error) { @@ -114,6 +118,7 @@ func NewSupervisor(logger *zap.Logger, configFile string) (*Supervisor, error) { effectiveConfigFilePath: "effective.yaml", agentConfigOwnMetricsSection: &atomic.Value{}, effectiveConfig: &atomic.Value{}, + connectedToOpAMPServer: make(chan struct{}), } if err := s.createTemplates(); err != nil { @@ -152,6 +157,10 @@ func NewSupervisor(logger *zap.Logger, configFile string) (*Supervisor, error) { return nil, fmt.Errorf("cannot start OpAMP client: %w", err) } + if connErr := s.waitForOpAMPConnection(); connErr != nil { + return nil, fmt.Errorf("failed to connect to the OpAMP server: %w", err) + } + s.commander, err = commander.NewCommander( s.logger, s.config.Agent, @@ -341,6 +350,10 @@ func (s *Supervisor) Capabilities() protobufs.AgentCapabilities { if c.ReportsRemoteConfig != nil && *c.ReportsRemoteConfig { supportedCapabilities |= protobufs.AgentCapabilities_AgentCapabilities_ReportsRemoteConfig } + + if c.AcceptsOpAMPConnectionSettings != nil && *c.AcceptsOpAMPConnectionSettings { + supportedCapabilities |= protobufs.AgentCapabilities_AgentCapabilities_AcceptsOpAMPConnectionSettings + } } return supportedCapabilities } @@ -353,12 +366,15 @@ func (s *Supervisor) startOpAMP() error { return err } + s.logger.Debug("Connecting to OpAMP server...", zap.String("endpoint", s.config.Server.Endpoint), zap.Any("headers", s.config.Server.Headers)) settings := types.StartSettings{ OpAMPServerURL: s.config.Server.Endpoint, + Header: s.config.Server.Headers, TLSConfig: tlsConfig, InstanceUid: s.instanceID.String(), Callbacks: types.CallbacksStruct{ OnConnectFunc: func(_ context.Context) { + s.connectedToOpAMPServer <- struct{}{} s.logger.Debug("Connected to the server.") }, OnConnectFailedFunc: func(_ context.Context, err error) { @@ -368,9 +384,9 @@ func (s *Supervisor) startOpAMP() error { s.logger.Error("Server returned an error response", zap.String("message", err.ErrorMessage)) }, OnMessageFunc: s.onMessage, - OnOpampConnectionSettingsFunc: func(_ context.Context, _ *protobufs.OpAMPConnectionSettings) error { - // TODO: https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/21043 - s.logger.Debug("Received ConnectionSettings request") + OnOpampConnectionSettingsFunc: func(ctx context.Context, settings *protobufs.OpAMPConnectionSettings) error { + //nolint:errcheck + go s.onOpampConnectionSettings(ctx, settings) return nil }, OnCommandFunc: func(_ context.Context, command *protobufs.ServerToAgentCommand) error { @@ -412,6 +428,88 @@ func (s *Supervisor) startOpAMP() error { return nil } +func (s *Supervisor) stopOpAMP() error { + s.logger.Debug("Stopping OpAMP client...") + ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) + defer cancel() + err := s.opampClient.Stop(ctx) + // TODO(srikanthccv): remove context.DeadlineExceeded after https://github.com/open-telemetry/opamp-go/pull/213 + if err != nil && !errors.Is(err, context.DeadlineExceeded) { + return err + } + s.logger.Debug("OpAMP client stopped.") + return nil +} + +func (s *Supervisor) getHeadersFromSettings(protoHeaders *protobufs.Headers) http.Header { + headers := make(http.Header) + for _, header := range protoHeaders.Headers { + headers.Add(header.Key, header.Value) + } + return headers +} + +func (s *Supervisor) onOpampConnectionSettings(_ context.Context, settings *protobufs.OpAMPConnectionSettings) error { + if settings == nil { + s.logger.Debug("Received ConnectionSettings request with nil settings") + return nil + } + + newServerConfig := &config.OpAMPServer{} + + if settings.DestinationEndpoint != "" { + newServerConfig.Endpoint = settings.DestinationEndpoint + } + if settings.Headers != nil { + newServerConfig.Headers = s.getHeadersFromSettings(settings.Headers) + } + if settings.Certificate != nil { + if len(settings.Certificate.CaPublicKey) != 0 { + newServerConfig.TLSSetting.CAPem = configopaque.String(settings.Certificate.CaPublicKey) + } + if len(settings.Certificate.PublicKey) != 0 { + newServerConfig.TLSSetting.CertPem = configopaque.String(settings.Certificate.PublicKey) + } + if len(settings.Certificate.PrivateKey) != 0 { + newServerConfig.TLSSetting.KeyPem = configopaque.String(settings.Certificate.PrivateKey) + } + } else { + newServerConfig.TLSSetting = configtls.ClientConfig{Insecure: true} + } + + if err := s.stopOpAMP(); err != nil { + s.logger.Error("Cannot stop the OpAMP client", zap.Error(err)) + return err + } + + // take a copy of the current OpAMP server config + oldServerConfig := s.config.Server + // update the OpAMP server config + s.config.Server = newServerConfig + + if err := s.startOpAMP(); err != nil { + s.logger.Error("Cannot connect to the OpAMP server using the new settings", zap.Error(err)) + // revert the OpAMP server config + s.config.Server = oldServerConfig + // start the OpAMP client with the old settings + if err := s.startOpAMP(); err != nil { + s.logger.Error("Cannot reconnect to the OpAMP server after restoring old settings", zap.Error(err)) + return err + } + } + return s.waitForOpAMPConnection() +} + +func (s *Supervisor) waitForOpAMPConnection() error { + // wait for the OpAMP client to connect to the server or timeout + select { + case <-s.connectedToOpAMPServer: + return nil + case <-time.After(10 * time.Second): + return errors.New("timed out waiting for the server to connect") + } +} + // TODO: Persist instance ID. https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/21073 func (s *Supervisor) createInstanceID() (ulid.ULID, error) { entropy := ulid.Monotonic(rand.New(rand.NewSource(0)), 0) @@ -779,7 +877,7 @@ func (s *Supervisor) Shutdown() { s.logger.Error("Could not report health to OpAMP server", zap.Error(err)) } - err = s.opampClient.Stop(context.Background()) + err = s.stopOpAMP() if err != nil { s.logger.Error("Could not stop the OpAMP client", zap.Error(err)) diff --git a/cmd/opampsupervisor/testdata/supervisor/supervisor_accepts_conn.yaml b/cmd/opampsupervisor/testdata/supervisor/supervisor_accepts_conn.yaml new file mode 100644 index 000000000000..0282577b252a --- /dev/null +++ b/cmd/opampsupervisor/testdata/supervisor/supervisor_accepts_conn.yaml @@ -0,0 +1,15 @@ +server: + endpoint: ws://{{.url}}/v1/opamp + tls: + insecure: true + +capabilities: + reports_effective_config: true + reports_own_metrics: true + reports_health: true + accepts_remote_config: true + reports_remote_config: true + accepts_opamp_connection_settings: true + +agent: + executable: ../../bin/otelcontribcol_{{.goos}}_{{.goarch}}{{.extension}} From fe59abb5412d54e93f03517601013561b074d104 Mon Sep 17 00:00:00 2001 From: Roger Coll Date: Tue, 9 Apr 2024 14:22:54 +0200 Subject: [PATCH 12/21] [podmanreceiver] Add metrics and resource metadata (#30232) **Description:** - Adds "metadata.yml" file to autogenerate metrics and resources. - [Update: not done in this PR] Fixes invalid network metrics: "rx -> input" and "tx -> output" **Link to tracking Issue:** https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/28640 **Testing:** Previous tests preserved. **Documentation:** --------- Co-authored-by: Mackenzie <63265430+mackjmr@users.noreply.github.com> --- .chloggen/add_podman_metadata.yaml | 27 + receiver/podmanreceiver/README.md | 6 + receiver/podmanreceiver/config.go | 5 + receiver/podmanreceiver/config_test.go | 10 +- receiver/podmanreceiver/documentation.md | 120 +++ receiver/podmanreceiver/factory.go | 7 +- receiver/podmanreceiver/go.mod | 2 +- receiver/podmanreceiver/go.sum | 2 - .../internal/metadata/generated_config.go | 134 +++ .../metadata/generated_config_test.go | 142 ++++ .../internal/metadata/generated_metrics.go | 775 ++++++++++++++++++ .../metadata/generated_metrics_test.go | 286 +++++++ .../internal/metadata/generated_resource.go | 57 ++ .../metadata/generated_resource_test.go | 58 ++ .../internal/metadata/testdata/config.yaml | 67 ++ receiver/podmanreceiver/metadata.yaml | 117 +++ receiver/podmanreceiver/metrics.go | 130 --- receiver/podmanreceiver/receiver.go | 69 +- receiver/podmanreceiver/receiver_test.go | 13 +- ...metrics_test.go => record_metrics_test.go} | 22 +- 20 files changed, 1881 insertions(+), 168 deletions(-) create mode 100755 .chloggen/add_podman_metadata.yaml create mode 100644 receiver/podmanreceiver/documentation.md create mode 100644 receiver/podmanreceiver/internal/metadata/generated_config.go create mode 100644 receiver/podmanreceiver/internal/metadata/generated_config_test.go create mode 100644 receiver/podmanreceiver/internal/metadata/generated_metrics.go create mode 100644 receiver/podmanreceiver/internal/metadata/generated_metrics_test.go create mode 100644 receiver/podmanreceiver/internal/metadata/generated_resource.go create mode 100644 receiver/podmanreceiver/internal/metadata/generated_resource_test.go create mode 100644 receiver/podmanreceiver/internal/metadata/testdata/config.yaml delete mode 100644 receiver/podmanreceiver/metrics.go rename receiver/podmanreceiver/{metrics_test.go => record_metrics_test.go} (86%) diff --git a/.chloggen/add_podman_metadata.yaml b/.chloggen/add_podman_metadata.yaml new file mode 100755 index 000000000000..935cfe849002 --- /dev/null +++ b/.chloggen/add_podman_metadata.yaml @@ -0,0 +1,27 @@ +# Use this changelog template to create an entry for release notes. + +# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' +change_type: breaking + +# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver) +component: podmanreceiver + +# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). +note: "Adds metrics and resources metadata and sets seconds precision for cpu metrics" + +# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists. +issues: [28640] + +# (Optional) One or more lines of additional information to render under the primary note. +# These lines will be padded with 2 spaces and then inserted directly into the document. +# Use pipe (|) for multiline entries. +subtext: + +# If your change doesn't affect end users or the exported elements of any package, +# you should instead start your pull request title with [chore] or use the "Skip Changelog" label. +# Optional: The change log or logs in which this entry should be included. +# e.g. '[user]' or '[user, api]' +# Include 'user' if the change is relevant to end users. +# Include 'api' if there is a change to a library API. +# Default: '[user]' +change_logs: [] diff --git a/receiver/podmanreceiver/README.md b/receiver/podmanreceiver/README.md index c2a96910cfbc..7056b46a39d8 100644 --- a/receiver/podmanreceiver/README.md +++ b/receiver/podmanreceiver/README.md @@ -32,6 +32,7 @@ The following settings are optional: - `collection_interval` (default = `10s`): The interval at which to gather container stats. - `initial_delay` (default = `1s`): defines how long this receiver waits before starting. - `timeout` (default = `5s`): The maximum amount of time to wait for Podman API responses. +- `metrics` (defaults at [./documentation.md](./documentation.md)): Enables/disables individual metrics. See [./documentation.md](./documentation.md) for full detail. Example: @@ -42,6 +43,9 @@ receivers: timeout: 10s collection_interval: 10s initial_delay: 1s + metrics: + container.cpu.usage.system: + enabled: false ``` The full list of settings exposed for this receiver are documented [here](./config.go) @@ -84,6 +88,8 @@ The receiver emits the following metrics: container.cpu.percent container.cpu.usage.percpu +See [./documentation.md](./documentation.md) for full detail. + ## Building This receiver uses the official libpod Go bindings for Podman. In order to include diff --git a/receiver/podmanreceiver/config.go b/receiver/podmanreceiver/config.go index bf80db303c8c..b59df15c7aad 100644 --- a/receiver/podmanreceiver/config.go +++ b/receiver/podmanreceiver/config.go @@ -9,6 +9,8 @@ import ( "go.opentelemetry.io/collector/component" "go.opentelemetry.io/collector/config/configopaque" "go.opentelemetry.io/collector/receiver/scraperhelper" + + "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/podmanreceiver/internal/metadata" ) var _ component.Config = (*Config)(nil) @@ -22,6 +24,9 @@ type Config struct { APIVersion string `mapstructure:"api_version"` SSHKey string `mapstructure:"ssh_key"` SSHPassphrase configopaque.String `mapstructure:"ssh_passphrase"` + + // MetricsBuilderConfig config. Enable or disable stats by name. + metadata.MetricsBuilderConfig `mapstructure:",squash"` } func (config Config) Validate() error { diff --git a/receiver/podmanreceiver/config_test.go b/receiver/podmanreceiver/config_test.go index fc415e629ffc..a10307e36329 100644 --- a/receiver/podmanreceiver/config_test.go +++ b/receiver/podmanreceiver/config_test.go @@ -36,8 +36,9 @@ func TestLoadConfig(t *testing.T) { InitialDelay: time.Second, Timeout: 5 * time.Second, }, - APIVersion: defaultAPIVersion, - Endpoint: "unix:///run/podman/podman.sock", + APIVersion: defaultAPIVersion, + Endpoint: "unix:///run/podman/podman.sock", + MetricsBuilderConfig: metadata.DefaultMetricsBuilderConfig(), }, }, { @@ -48,8 +49,9 @@ func TestLoadConfig(t *testing.T) { InitialDelay: time.Second, Timeout: 20 * time.Second, }, - APIVersion: defaultAPIVersion, - Endpoint: "http://example.com/", + APIVersion: defaultAPIVersion, + Endpoint: "http://example.com/", + MetricsBuilderConfig: metadata.DefaultMetricsBuilderConfig(), }, }, } diff --git a/receiver/podmanreceiver/documentation.md b/receiver/podmanreceiver/documentation.md new file mode 100644 index 000000000000..6e5bb91e9912 --- /dev/null +++ b/receiver/podmanreceiver/documentation.md @@ -0,0 +1,120 @@ +[comment]: <> (Code generated by mdatagen. DO NOT EDIT.) + +# podman_stats + +## Default Metrics + +The following metrics are emitted by default. Each of them can be disabled by applying the following configuration: + +```yaml +metrics: + : + enabled: false +``` + +### container.blockio.io_service_bytes_recursive.read + +Number of bytes transferred from the disk by the container + +[More docs](https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt). + +| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | +| ---- | ----------- | ---------- | ----------------------- | --------- | +| {operations} | Sum | Int | Cumulative | true | + +### container.blockio.io_service_bytes_recursive.write + +Number of bytes transferred to the disk by the container + +[More docs](https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt). + +| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | +| ---- | ----------- | ---------- | ----------------------- | --------- | +| {operations} | Sum | Int | Cumulative | true | + +### container.cpu.percent + +Percent of CPU used by the container. + +| Unit | Metric Type | Value Type | +| ---- | ----------- | ---------- | +| 1 | Gauge | Double | + +### container.cpu.usage.percpu + +Total CPU time consumed per CPU-core. + +| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | +| ---- | ----------- | ---------- | ----------------------- | --------- | +| s | Sum | Int | Cumulative | true | + +#### Attributes + +| Name | Description | Values | +| ---- | ----------- | ------ | +| core | The CPU core number when utilising per-CPU metrics. | Any Str | + +### container.cpu.usage.system + +System CPU usage. + +| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | +| ---- | ----------- | ---------- | ----------------------- | --------- | +| s | Sum | Int | Cumulative | true | + +### container.cpu.usage.total + +Total CPU time consumed. + +| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | +| ---- | ----------- | ---------- | ----------------------- | --------- | +| s | Sum | Int | Cumulative | true | + +### container.memory.percent + +Percentage of memory used. + +| Unit | Metric Type | Value Type | +| ---- | ----------- | ---------- | +| 1 | Gauge | Double | + +### container.memory.usage.limit + +Memory limit of the container. + +| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | +| ---- | ----------- | ---------- | ----------------------- | --------- | +| By | Sum | Int | Cumulative | false | + +### container.memory.usage.total + +Memory usage of the container. + +| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | +| ---- | ----------- | ---------- | ----------------------- | --------- | +| By | Sum | Int | Cumulative | false | + +### container.network.io.usage.rx_bytes + +Bytes received by the container. + +| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | +| ---- | ----------- | ---------- | ----------------------- | --------- | +| By | Sum | Int | Cumulative | true | + +### container.network.io.usage.tx_bytes + +Bytes sent by the container. + +| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | +| ---- | ----------- | ---------- | ----------------------- | --------- | +| By | Sum | Int | Cumulative | true | + +## Resource Attributes + +| Name | Description | Values | Enabled | +| ---- | ----------- | ------ | ------- | +| container.id | The ID of the container. | Any Str | true | +| container.image.name | The name of the image in use by the container. | Any Str | true | +| container.name | The name of the container. | Any Str | true | +| container.runtime | The runtime of the container. For this receiver, it will always be 'podman'. | Any Str | true | diff --git a/receiver/podmanreceiver/factory.go b/receiver/podmanreceiver/factory.go index 14dcfde7b9b5..f154e628d3ea 100644 --- a/receiver/podmanreceiver/factory.go +++ b/receiver/podmanreceiver/factory.go @@ -32,9 +32,10 @@ func createDefaultConfig() *Config { cfg.Timeout = 5 * time.Second return &Config{ - ControllerConfig: cfg, - Endpoint: "unix:///run/podman/podman.sock", - APIVersion: defaultAPIVersion, + ControllerConfig: cfg, + Endpoint: "unix:///run/podman/podman.sock", + APIVersion: defaultAPIVersion, + MetricsBuilderConfig: metadata.DefaultMetricsBuilderConfig(), } } diff --git a/receiver/podmanreceiver/go.mod b/receiver/podmanreceiver/go.mod index 593603765fa5..df50cc350bcb 100644 --- a/receiver/podmanreceiver/go.mod +++ b/receiver/podmanreceiver/go.mod @@ -3,6 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/receiver/podman go 1.21 require ( + github.com/google/go-cmp v0.6.0 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b @@ -10,7 +11,6 @@ require ( go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 diff --git a/receiver/podmanreceiver/go.sum b/receiver/podmanreceiver/go.sum index 8970c742ff00..dd9d40ea25b7 100644 --- a/receiver/podmanreceiver/go.sum +++ b/receiver/podmanreceiver/go.sum @@ -80,8 +80,6 @@ go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/podmanreceiver/internal/metadata/generated_config.go b/receiver/podmanreceiver/internal/metadata/generated_config.go new file mode 100644 index 000000000000..7edc12b42acf --- /dev/null +++ b/receiver/podmanreceiver/internal/metadata/generated_config.go @@ -0,0 +1,134 @@ +// Code generated by mdatagen. DO NOT EDIT. + +package metadata + +import "go.opentelemetry.io/collector/confmap" + +// MetricConfig provides common config for a particular metric. +type MetricConfig struct { + Enabled bool `mapstructure:"enabled"` + + enabledSetByUser bool +} + +func (ms *MetricConfig) Unmarshal(parser *confmap.Conf) error { + if parser == nil { + return nil + } + err := parser.Unmarshal(ms) + if err != nil { + return err + } + ms.enabledSetByUser = parser.IsSet("enabled") + return nil +} + +// MetricsConfig provides config for podman_stats metrics. +type MetricsConfig struct { + ContainerBlockioIoServiceBytesRecursiveRead MetricConfig `mapstructure:"container.blockio.io_service_bytes_recursive.read"` + ContainerBlockioIoServiceBytesRecursiveWrite MetricConfig `mapstructure:"container.blockio.io_service_bytes_recursive.write"` + ContainerCPUPercent MetricConfig `mapstructure:"container.cpu.percent"` + ContainerCPUUsagePercpu MetricConfig `mapstructure:"container.cpu.usage.percpu"` + ContainerCPUUsageSystem MetricConfig `mapstructure:"container.cpu.usage.system"` + ContainerCPUUsageTotal MetricConfig `mapstructure:"container.cpu.usage.total"` + ContainerMemoryPercent MetricConfig `mapstructure:"container.memory.percent"` + ContainerMemoryUsageLimit MetricConfig `mapstructure:"container.memory.usage.limit"` + ContainerMemoryUsageTotal MetricConfig `mapstructure:"container.memory.usage.total"` + ContainerNetworkIoUsageRxBytes MetricConfig `mapstructure:"container.network.io.usage.rx_bytes"` + ContainerNetworkIoUsageTxBytes MetricConfig `mapstructure:"container.network.io.usage.tx_bytes"` +} + +func DefaultMetricsConfig() MetricsConfig { + return MetricsConfig{ + ContainerBlockioIoServiceBytesRecursiveRead: MetricConfig{ + Enabled: true, + }, + ContainerBlockioIoServiceBytesRecursiveWrite: MetricConfig{ + Enabled: true, + }, + ContainerCPUPercent: MetricConfig{ + Enabled: true, + }, + ContainerCPUUsagePercpu: MetricConfig{ + Enabled: true, + }, + ContainerCPUUsageSystem: MetricConfig{ + Enabled: true, + }, + ContainerCPUUsageTotal: MetricConfig{ + Enabled: true, + }, + ContainerMemoryPercent: MetricConfig{ + Enabled: true, + }, + ContainerMemoryUsageLimit: MetricConfig{ + Enabled: true, + }, + ContainerMemoryUsageTotal: MetricConfig{ + Enabled: true, + }, + ContainerNetworkIoUsageRxBytes: MetricConfig{ + Enabled: true, + }, + ContainerNetworkIoUsageTxBytes: MetricConfig{ + Enabled: true, + }, + } +} + +// ResourceAttributeConfig provides common config for a particular resource attribute. +type ResourceAttributeConfig struct { + Enabled bool `mapstructure:"enabled"` + + enabledSetByUser bool +} + +func (rac *ResourceAttributeConfig) Unmarshal(parser *confmap.Conf) error { + if parser == nil { + return nil + } + err := parser.Unmarshal(rac) + if err != nil { + return err + } + rac.enabledSetByUser = parser.IsSet("enabled") + return nil +} + +// ResourceAttributesConfig provides config for podman_stats resource attributes. +type ResourceAttributesConfig struct { + ContainerID ResourceAttributeConfig `mapstructure:"container.id"` + ContainerImageName ResourceAttributeConfig `mapstructure:"container.image.name"` + ContainerName ResourceAttributeConfig `mapstructure:"container.name"` + ContainerRuntime ResourceAttributeConfig `mapstructure:"container.runtime"` +} + +func DefaultResourceAttributesConfig() ResourceAttributesConfig { + return ResourceAttributesConfig{ + ContainerID: ResourceAttributeConfig{ + Enabled: true, + }, + ContainerImageName: ResourceAttributeConfig{ + Enabled: true, + }, + ContainerName: ResourceAttributeConfig{ + Enabled: true, + }, + ContainerRuntime: ResourceAttributeConfig{ + Enabled: true, + }, + } +} + +// MetricsBuilderConfig is a configuration for podman_stats metrics builder. +type MetricsBuilderConfig struct { + Metrics MetricsConfig `mapstructure:"metrics"` + ResourceAttributes ResourceAttributesConfig `mapstructure:"resource_attributes"` +} + +func DefaultMetricsBuilderConfig() MetricsBuilderConfig { + return MetricsBuilderConfig{ + Metrics: DefaultMetricsConfig(), + ResourceAttributes: DefaultResourceAttributesConfig(), + } +} diff --git a/receiver/podmanreceiver/internal/metadata/generated_config_test.go b/receiver/podmanreceiver/internal/metadata/generated_config_test.go new file mode 100644 index 000000000000..db4823127769 --- /dev/null +++ b/receiver/podmanreceiver/internal/metadata/generated_config_test.go @@ -0,0 +1,142 @@ +// Code generated by mdatagen. DO NOT EDIT. + +package metadata + +import ( + "path/filepath" + "testing" + + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + "github.com/stretchr/testify/require" + "go.opentelemetry.io/collector/component" + "go.opentelemetry.io/collector/confmap/confmaptest" +) + +func TestMetricsBuilderConfig(t *testing.T) { + tests := []struct { + name string + want MetricsBuilderConfig + }{ + { + name: "default", + want: DefaultMetricsBuilderConfig(), + }, + { + name: "all_set", + want: MetricsBuilderConfig{ + Metrics: MetricsConfig{ + ContainerBlockioIoServiceBytesRecursiveRead: MetricConfig{Enabled: true}, + ContainerBlockioIoServiceBytesRecursiveWrite: MetricConfig{Enabled: true}, + ContainerCPUPercent: MetricConfig{Enabled: true}, + ContainerCPUUsagePercpu: MetricConfig{Enabled: true}, + ContainerCPUUsageSystem: MetricConfig{Enabled: true}, + ContainerCPUUsageTotal: MetricConfig{Enabled: true}, + ContainerMemoryPercent: MetricConfig{Enabled: true}, + ContainerMemoryUsageLimit: MetricConfig{Enabled: true}, + ContainerMemoryUsageTotal: MetricConfig{Enabled: true}, + ContainerNetworkIoUsageRxBytes: MetricConfig{Enabled: true}, + ContainerNetworkIoUsageTxBytes: MetricConfig{Enabled: true}, + }, + ResourceAttributes: ResourceAttributesConfig{ + ContainerID: ResourceAttributeConfig{Enabled: true}, + ContainerImageName: ResourceAttributeConfig{Enabled: true}, + ContainerName: ResourceAttributeConfig{Enabled: true}, + ContainerRuntime: ResourceAttributeConfig{Enabled: true}, + }, + }, + }, + { + name: "none_set", + want: MetricsBuilderConfig{ + Metrics: MetricsConfig{ + ContainerBlockioIoServiceBytesRecursiveRead: MetricConfig{Enabled: false}, + ContainerBlockioIoServiceBytesRecursiveWrite: MetricConfig{Enabled: false}, + ContainerCPUPercent: MetricConfig{Enabled: false}, + ContainerCPUUsagePercpu: MetricConfig{Enabled: false}, + ContainerCPUUsageSystem: MetricConfig{Enabled: false}, + ContainerCPUUsageTotal: MetricConfig{Enabled: false}, + ContainerMemoryPercent: MetricConfig{Enabled: false}, + ContainerMemoryUsageLimit: MetricConfig{Enabled: false}, + ContainerMemoryUsageTotal: MetricConfig{Enabled: false}, + ContainerNetworkIoUsageRxBytes: MetricConfig{Enabled: false}, + ContainerNetworkIoUsageTxBytes: MetricConfig{Enabled: false}, + }, + ResourceAttributes: ResourceAttributesConfig{ + ContainerID: ResourceAttributeConfig{Enabled: false}, + ContainerImageName: ResourceAttributeConfig{Enabled: false}, + ContainerName: ResourceAttributeConfig{Enabled: false}, + ContainerRuntime: ResourceAttributeConfig{Enabled: false}, + }, + }, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + cfg := loadMetricsBuilderConfig(t, tt.name) + if diff := cmp.Diff(tt.want, cfg, cmpopts.IgnoreUnexported(MetricConfig{}, ResourceAttributeConfig{})); diff != "" { + t.Errorf("Config mismatch (-expected +actual):\n%s", diff) + } + }) + } +} + +func loadMetricsBuilderConfig(t *testing.T, name string) MetricsBuilderConfig { + cm, err := confmaptest.LoadConf(filepath.Join("testdata", "config.yaml")) + require.NoError(t, err) + sub, err := cm.Sub(name) + require.NoError(t, err) + cfg := DefaultMetricsBuilderConfig() + require.NoError(t, component.UnmarshalConfig(sub, &cfg)) + return cfg +} + +func TestResourceAttributesConfig(t *testing.T) { + tests := []struct { + name string + want ResourceAttributesConfig + }{ + { + name: "default", + want: DefaultResourceAttributesConfig(), + }, + { + name: "all_set", + want: ResourceAttributesConfig{ + ContainerID: ResourceAttributeConfig{Enabled: true}, + ContainerImageName: ResourceAttributeConfig{Enabled: true}, + ContainerName: ResourceAttributeConfig{Enabled: true}, + ContainerRuntime: ResourceAttributeConfig{Enabled: true}, + }, + }, + { + name: "none_set", + want: ResourceAttributesConfig{ + ContainerID: ResourceAttributeConfig{Enabled: false}, + ContainerImageName: ResourceAttributeConfig{Enabled: false}, + ContainerName: ResourceAttributeConfig{Enabled: false}, + ContainerRuntime: ResourceAttributeConfig{Enabled: false}, + }, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + cfg := loadResourceAttributesConfig(t, tt.name) + if diff := cmp.Diff(tt.want, cfg, cmpopts.IgnoreUnexported(ResourceAttributeConfig{})); diff != "" { + t.Errorf("Config mismatch (-expected +actual):\n%s", diff) + } + }) + } +} + +func loadResourceAttributesConfig(t *testing.T, name string) ResourceAttributesConfig { + cm, err := confmaptest.LoadConf(filepath.Join("testdata", "config.yaml")) + require.NoError(t, err) + sub, err := cm.Sub(name) + require.NoError(t, err) + sub, err = sub.Sub("resource_attributes") + require.NoError(t, err) + cfg := DefaultResourceAttributesConfig() + require.NoError(t, component.UnmarshalConfig(sub, &cfg)) + return cfg +} diff --git a/receiver/podmanreceiver/internal/metadata/generated_metrics.go b/receiver/podmanreceiver/internal/metadata/generated_metrics.go new file mode 100644 index 000000000000..b2a628971b8b --- /dev/null +++ b/receiver/podmanreceiver/internal/metadata/generated_metrics.go @@ -0,0 +1,775 @@ +// Code generated by mdatagen. DO NOT EDIT. + +package metadata + +import ( + "time" + + "go.opentelemetry.io/collector/component" + "go.opentelemetry.io/collector/pdata/pcommon" + "go.opentelemetry.io/collector/pdata/pmetric" + "go.opentelemetry.io/collector/receiver" +) + +type metricContainerBlockioIoServiceBytesRecursiveRead struct { + data pmetric.Metric // data buffer for generated metric. + config MetricConfig // metric config provided by user. + capacity int // max observed number of data points added to the metric. +} + +// init fills container.blockio.io_service_bytes_recursive.read metric with initial data. +func (m *metricContainerBlockioIoServiceBytesRecursiveRead) init() { + m.data.SetName("container.blockio.io_service_bytes_recursive.read") + m.data.SetDescription("Number of bytes transferred from the disk by the container") + m.data.SetUnit("{operations}") + m.data.SetEmptySum() + m.data.Sum().SetIsMonotonic(true) + m.data.Sum().SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) +} + +func (m *metricContainerBlockioIoServiceBytesRecursiveRead) recordDataPoint(start pcommon.Timestamp, ts pcommon.Timestamp, val int64) { + if !m.config.Enabled { + return + } + dp := m.data.Sum().DataPoints().AppendEmpty() + dp.SetStartTimestamp(start) + dp.SetTimestamp(ts) + dp.SetIntValue(val) +} + +// updateCapacity saves max length of data point slices that will be used for the slice capacity. +func (m *metricContainerBlockioIoServiceBytesRecursiveRead) updateCapacity() { + if m.data.Sum().DataPoints().Len() > m.capacity { + m.capacity = m.data.Sum().DataPoints().Len() + } +} + +// emit appends recorded metric data to a metrics slice and prepares it for recording another set of data points. +func (m *metricContainerBlockioIoServiceBytesRecursiveRead) emit(metrics pmetric.MetricSlice) { + if m.config.Enabled && m.data.Sum().DataPoints().Len() > 0 { + m.updateCapacity() + m.data.MoveTo(metrics.AppendEmpty()) + m.init() + } +} + +func newMetricContainerBlockioIoServiceBytesRecursiveRead(cfg MetricConfig) metricContainerBlockioIoServiceBytesRecursiveRead { + m := metricContainerBlockioIoServiceBytesRecursiveRead{config: cfg} + if cfg.Enabled { + m.data = pmetric.NewMetric() + m.init() + } + return m +} + +type metricContainerBlockioIoServiceBytesRecursiveWrite struct { + data pmetric.Metric // data buffer for generated metric. + config MetricConfig // metric config provided by user. + capacity int // max observed number of data points added to the metric. +} + +// init fills container.blockio.io_service_bytes_recursive.write metric with initial data. +func (m *metricContainerBlockioIoServiceBytesRecursiveWrite) init() { + m.data.SetName("container.blockio.io_service_bytes_recursive.write") + m.data.SetDescription("Number of bytes transferred to the disk by the container") + m.data.SetUnit("{operations}") + m.data.SetEmptySum() + m.data.Sum().SetIsMonotonic(true) + m.data.Sum().SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) +} + +func (m *metricContainerBlockioIoServiceBytesRecursiveWrite) recordDataPoint(start pcommon.Timestamp, ts pcommon.Timestamp, val int64) { + if !m.config.Enabled { + return + } + dp := m.data.Sum().DataPoints().AppendEmpty() + dp.SetStartTimestamp(start) + dp.SetTimestamp(ts) + dp.SetIntValue(val) +} + +// updateCapacity saves max length of data point slices that will be used for the slice capacity. +func (m *metricContainerBlockioIoServiceBytesRecursiveWrite) updateCapacity() { + if m.data.Sum().DataPoints().Len() > m.capacity { + m.capacity = m.data.Sum().DataPoints().Len() + } +} + +// emit appends recorded metric data to a metrics slice and prepares it for recording another set of data points. +func (m *metricContainerBlockioIoServiceBytesRecursiveWrite) emit(metrics pmetric.MetricSlice) { + if m.config.Enabled && m.data.Sum().DataPoints().Len() > 0 { + m.updateCapacity() + m.data.MoveTo(metrics.AppendEmpty()) + m.init() + } +} + +func newMetricContainerBlockioIoServiceBytesRecursiveWrite(cfg MetricConfig) metricContainerBlockioIoServiceBytesRecursiveWrite { + m := metricContainerBlockioIoServiceBytesRecursiveWrite{config: cfg} + if cfg.Enabled { + m.data = pmetric.NewMetric() + m.init() + } + return m +} + +type metricContainerCPUPercent struct { + data pmetric.Metric // data buffer for generated metric. + config MetricConfig // metric config provided by user. + capacity int // max observed number of data points added to the metric. +} + +// init fills container.cpu.percent metric with initial data. +func (m *metricContainerCPUPercent) init() { + m.data.SetName("container.cpu.percent") + m.data.SetDescription("Percent of CPU used by the container.") + m.data.SetUnit("1") + m.data.SetEmptyGauge() +} + +func (m *metricContainerCPUPercent) recordDataPoint(start pcommon.Timestamp, ts pcommon.Timestamp, val float64) { + if !m.config.Enabled { + return + } + dp := m.data.Gauge().DataPoints().AppendEmpty() + dp.SetStartTimestamp(start) + dp.SetTimestamp(ts) + dp.SetDoubleValue(val) +} + +// updateCapacity saves max length of data point slices that will be used for the slice capacity. +func (m *metricContainerCPUPercent) updateCapacity() { + if m.data.Gauge().DataPoints().Len() > m.capacity { + m.capacity = m.data.Gauge().DataPoints().Len() + } +} + +// emit appends recorded metric data to a metrics slice and prepares it for recording another set of data points. +func (m *metricContainerCPUPercent) emit(metrics pmetric.MetricSlice) { + if m.config.Enabled && m.data.Gauge().DataPoints().Len() > 0 { + m.updateCapacity() + m.data.MoveTo(metrics.AppendEmpty()) + m.init() + } +} + +func newMetricContainerCPUPercent(cfg MetricConfig) metricContainerCPUPercent { + m := metricContainerCPUPercent{config: cfg} + if cfg.Enabled { + m.data = pmetric.NewMetric() + m.init() + } + return m +} + +type metricContainerCPUUsagePercpu struct { + data pmetric.Metric // data buffer for generated metric. + config MetricConfig // metric config provided by user. + capacity int // max observed number of data points added to the metric. +} + +// init fills container.cpu.usage.percpu metric with initial data. +func (m *metricContainerCPUUsagePercpu) init() { + m.data.SetName("container.cpu.usage.percpu") + m.data.SetDescription("Total CPU time consumed per CPU-core.") + m.data.SetUnit("s") + m.data.SetEmptySum() + m.data.Sum().SetIsMonotonic(true) + m.data.Sum().SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) + m.data.Sum().DataPoints().EnsureCapacity(m.capacity) +} + +func (m *metricContainerCPUUsagePercpu) recordDataPoint(start pcommon.Timestamp, ts pcommon.Timestamp, val int64, coreAttributeValue string) { + if !m.config.Enabled { + return + } + dp := m.data.Sum().DataPoints().AppendEmpty() + dp.SetStartTimestamp(start) + dp.SetTimestamp(ts) + dp.SetIntValue(val) + dp.Attributes().PutStr("core", coreAttributeValue) +} + +// updateCapacity saves max length of data point slices that will be used for the slice capacity. +func (m *metricContainerCPUUsagePercpu) updateCapacity() { + if m.data.Sum().DataPoints().Len() > m.capacity { + m.capacity = m.data.Sum().DataPoints().Len() + } +} + +// emit appends recorded metric data to a metrics slice and prepares it for recording another set of data points. +func (m *metricContainerCPUUsagePercpu) emit(metrics pmetric.MetricSlice) { + if m.config.Enabled && m.data.Sum().DataPoints().Len() > 0 { + m.updateCapacity() + m.data.MoveTo(metrics.AppendEmpty()) + m.init() + } +} + +func newMetricContainerCPUUsagePercpu(cfg MetricConfig) metricContainerCPUUsagePercpu { + m := metricContainerCPUUsagePercpu{config: cfg} + if cfg.Enabled { + m.data = pmetric.NewMetric() + m.init() + } + return m +} + +type metricContainerCPUUsageSystem struct { + data pmetric.Metric // data buffer for generated metric. + config MetricConfig // metric config provided by user. + capacity int // max observed number of data points added to the metric. +} + +// init fills container.cpu.usage.system metric with initial data. +func (m *metricContainerCPUUsageSystem) init() { + m.data.SetName("container.cpu.usage.system") + m.data.SetDescription("System CPU usage.") + m.data.SetUnit("s") + m.data.SetEmptySum() + m.data.Sum().SetIsMonotonic(true) + m.data.Sum().SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) +} + +func (m *metricContainerCPUUsageSystem) recordDataPoint(start pcommon.Timestamp, ts pcommon.Timestamp, val int64) { + if !m.config.Enabled { + return + } + dp := m.data.Sum().DataPoints().AppendEmpty() + dp.SetStartTimestamp(start) + dp.SetTimestamp(ts) + dp.SetIntValue(val) +} + +// updateCapacity saves max length of data point slices that will be used for the slice capacity. +func (m *metricContainerCPUUsageSystem) updateCapacity() { + if m.data.Sum().DataPoints().Len() > m.capacity { + m.capacity = m.data.Sum().DataPoints().Len() + } +} + +// emit appends recorded metric data to a metrics slice and prepares it for recording another set of data points. +func (m *metricContainerCPUUsageSystem) emit(metrics pmetric.MetricSlice) { + if m.config.Enabled && m.data.Sum().DataPoints().Len() > 0 { + m.updateCapacity() + m.data.MoveTo(metrics.AppendEmpty()) + m.init() + } +} + +func newMetricContainerCPUUsageSystem(cfg MetricConfig) metricContainerCPUUsageSystem { + m := metricContainerCPUUsageSystem{config: cfg} + if cfg.Enabled { + m.data = pmetric.NewMetric() + m.init() + } + return m +} + +type metricContainerCPUUsageTotal struct { + data pmetric.Metric // data buffer for generated metric. + config MetricConfig // metric config provided by user. + capacity int // max observed number of data points added to the metric. +} + +// init fills container.cpu.usage.total metric with initial data. +func (m *metricContainerCPUUsageTotal) init() { + m.data.SetName("container.cpu.usage.total") + m.data.SetDescription("Total CPU time consumed.") + m.data.SetUnit("s") + m.data.SetEmptySum() + m.data.Sum().SetIsMonotonic(true) + m.data.Sum().SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) +} + +func (m *metricContainerCPUUsageTotal) recordDataPoint(start pcommon.Timestamp, ts pcommon.Timestamp, val int64) { + if !m.config.Enabled { + return + } + dp := m.data.Sum().DataPoints().AppendEmpty() + dp.SetStartTimestamp(start) + dp.SetTimestamp(ts) + dp.SetIntValue(val) +} + +// updateCapacity saves max length of data point slices that will be used for the slice capacity. +func (m *metricContainerCPUUsageTotal) updateCapacity() { + if m.data.Sum().DataPoints().Len() > m.capacity { + m.capacity = m.data.Sum().DataPoints().Len() + } +} + +// emit appends recorded metric data to a metrics slice and prepares it for recording another set of data points. +func (m *metricContainerCPUUsageTotal) emit(metrics pmetric.MetricSlice) { + if m.config.Enabled && m.data.Sum().DataPoints().Len() > 0 { + m.updateCapacity() + m.data.MoveTo(metrics.AppendEmpty()) + m.init() + } +} + +func newMetricContainerCPUUsageTotal(cfg MetricConfig) metricContainerCPUUsageTotal { + m := metricContainerCPUUsageTotal{config: cfg} + if cfg.Enabled { + m.data = pmetric.NewMetric() + m.init() + } + return m +} + +type metricContainerMemoryPercent struct { + data pmetric.Metric // data buffer for generated metric. + config MetricConfig // metric config provided by user. + capacity int // max observed number of data points added to the metric. +} + +// init fills container.memory.percent metric with initial data. +func (m *metricContainerMemoryPercent) init() { + m.data.SetName("container.memory.percent") + m.data.SetDescription("Percentage of memory used.") + m.data.SetUnit("1") + m.data.SetEmptyGauge() +} + +func (m *metricContainerMemoryPercent) recordDataPoint(start pcommon.Timestamp, ts pcommon.Timestamp, val float64) { + if !m.config.Enabled { + return + } + dp := m.data.Gauge().DataPoints().AppendEmpty() + dp.SetStartTimestamp(start) + dp.SetTimestamp(ts) + dp.SetDoubleValue(val) +} + +// updateCapacity saves max length of data point slices that will be used for the slice capacity. +func (m *metricContainerMemoryPercent) updateCapacity() { + if m.data.Gauge().DataPoints().Len() > m.capacity { + m.capacity = m.data.Gauge().DataPoints().Len() + } +} + +// emit appends recorded metric data to a metrics slice and prepares it for recording another set of data points. +func (m *metricContainerMemoryPercent) emit(metrics pmetric.MetricSlice) { + if m.config.Enabled && m.data.Gauge().DataPoints().Len() > 0 { + m.updateCapacity() + m.data.MoveTo(metrics.AppendEmpty()) + m.init() + } +} + +func newMetricContainerMemoryPercent(cfg MetricConfig) metricContainerMemoryPercent { + m := metricContainerMemoryPercent{config: cfg} + if cfg.Enabled { + m.data = pmetric.NewMetric() + m.init() + } + return m +} + +type metricContainerMemoryUsageLimit struct { + data pmetric.Metric // data buffer for generated metric. + config MetricConfig // metric config provided by user. + capacity int // max observed number of data points added to the metric. +} + +// init fills container.memory.usage.limit metric with initial data. +func (m *metricContainerMemoryUsageLimit) init() { + m.data.SetName("container.memory.usage.limit") + m.data.SetDescription("Memory limit of the container.") + m.data.SetUnit("By") + m.data.SetEmptySum() + m.data.Sum().SetIsMonotonic(false) + m.data.Sum().SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) +} + +func (m *metricContainerMemoryUsageLimit) recordDataPoint(start pcommon.Timestamp, ts pcommon.Timestamp, val int64) { + if !m.config.Enabled { + return + } + dp := m.data.Sum().DataPoints().AppendEmpty() + dp.SetStartTimestamp(start) + dp.SetTimestamp(ts) + dp.SetIntValue(val) +} + +// updateCapacity saves max length of data point slices that will be used for the slice capacity. +func (m *metricContainerMemoryUsageLimit) updateCapacity() { + if m.data.Sum().DataPoints().Len() > m.capacity { + m.capacity = m.data.Sum().DataPoints().Len() + } +} + +// emit appends recorded metric data to a metrics slice and prepares it for recording another set of data points. +func (m *metricContainerMemoryUsageLimit) emit(metrics pmetric.MetricSlice) { + if m.config.Enabled && m.data.Sum().DataPoints().Len() > 0 { + m.updateCapacity() + m.data.MoveTo(metrics.AppendEmpty()) + m.init() + } +} + +func newMetricContainerMemoryUsageLimit(cfg MetricConfig) metricContainerMemoryUsageLimit { + m := metricContainerMemoryUsageLimit{config: cfg} + if cfg.Enabled { + m.data = pmetric.NewMetric() + m.init() + } + return m +} + +type metricContainerMemoryUsageTotal struct { + data pmetric.Metric // data buffer for generated metric. + config MetricConfig // metric config provided by user. + capacity int // max observed number of data points added to the metric. +} + +// init fills container.memory.usage.total metric with initial data. +func (m *metricContainerMemoryUsageTotal) init() { + m.data.SetName("container.memory.usage.total") + m.data.SetDescription("Memory usage of the container.") + m.data.SetUnit("By") + m.data.SetEmptySum() + m.data.Sum().SetIsMonotonic(false) + m.data.Sum().SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) +} + +func (m *metricContainerMemoryUsageTotal) recordDataPoint(start pcommon.Timestamp, ts pcommon.Timestamp, val int64) { + if !m.config.Enabled { + return + } + dp := m.data.Sum().DataPoints().AppendEmpty() + dp.SetStartTimestamp(start) + dp.SetTimestamp(ts) + dp.SetIntValue(val) +} + +// updateCapacity saves max length of data point slices that will be used for the slice capacity. +func (m *metricContainerMemoryUsageTotal) updateCapacity() { + if m.data.Sum().DataPoints().Len() > m.capacity { + m.capacity = m.data.Sum().DataPoints().Len() + } +} + +// emit appends recorded metric data to a metrics slice and prepares it for recording another set of data points. +func (m *metricContainerMemoryUsageTotal) emit(metrics pmetric.MetricSlice) { + if m.config.Enabled && m.data.Sum().DataPoints().Len() > 0 { + m.updateCapacity() + m.data.MoveTo(metrics.AppendEmpty()) + m.init() + } +} + +func newMetricContainerMemoryUsageTotal(cfg MetricConfig) metricContainerMemoryUsageTotal { + m := metricContainerMemoryUsageTotal{config: cfg} + if cfg.Enabled { + m.data = pmetric.NewMetric() + m.init() + } + return m +} + +type metricContainerNetworkIoUsageRxBytes struct { + data pmetric.Metric // data buffer for generated metric. + config MetricConfig // metric config provided by user. + capacity int // max observed number of data points added to the metric. +} + +// init fills container.network.io.usage.rx_bytes metric with initial data. +func (m *metricContainerNetworkIoUsageRxBytes) init() { + m.data.SetName("container.network.io.usage.rx_bytes") + m.data.SetDescription("Bytes received by the container.") + m.data.SetUnit("By") + m.data.SetEmptySum() + m.data.Sum().SetIsMonotonic(true) + m.data.Sum().SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) +} + +func (m *metricContainerNetworkIoUsageRxBytes) recordDataPoint(start pcommon.Timestamp, ts pcommon.Timestamp, val int64) { + if !m.config.Enabled { + return + } + dp := m.data.Sum().DataPoints().AppendEmpty() + dp.SetStartTimestamp(start) + dp.SetTimestamp(ts) + dp.SetIntValue(val) +} + +// updateCapacity saves max length of data point slices that will be used for the slice capacity. +func (m *metricContainerNetworkIoUsageRxBytes) updateCapacity() { + if m.data.Sum().DataPoints().Len() > m.capacity { + m.capacity = m.data.Sum().DataPoints().Len() + } +} + +// emit appends recorded metric data to a metrics slice and prepares it for recording another set of data points. +func (m *metricContainerNetworkIoUsageRxBytes) emit(metrics pmetric.MetricSlice) { + if m.config.Enabled && m.data.Sum().DataPoints().Len() > 0 { + m.updateCapacity() + m.data.MoveTo(metrics.AppendEmpty()) + m.init() + } +} + +func newMetricContainerNetworkIoUsageRxBytes(cfg MetricConfig) metricContainerNetworkIoUsageRxBytes { + m := metricContainerNetworkIoUsageRxBytes{config: cfg} + if cfg.Enabled { + m.data = pmetric.NewMetric() + m.init() + } + return m +} + +type metricContainerNetworkIoUsageTxBytes struct { + data pmetric.Metric // data buffer for generated metric. + config MetricConfig // metric config provided by user. + capacity int // max observed number of data points added to the metric. +} + +// init fills container.network.io.usage.tx_bytes metric with initial data. +func (m *metricContainerNetworkIoUsageTxBytes) init() { + m.data.SetName("container.network.io.usage.tx_bytes") + m.data.SetDescription("Bytes sent by the container.") + m.data.SetUnit("By") + m.data.SetEmptySum() + m.data.Sum().SetIsMonotonic(true) + m.data.Sum().SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) +} + +func (m *metricContainerNetworkIoUsageTxBytes) recordDataPoint(start pcommon.Timestamp, ts pcommon.Timestamp, val int64) { + if !m.config.Enabled { + return + } + dp := m.data.Sum().DataPoints().AppendEmpty() + dp.SetStartTimestamp(start) + dp.SetTimestamp(ts) + dp.SetIntValue(val) +} + +// updateCapacity saves max length of data point slices that will be used for the slice capacity. +func (m *metricContainerNetworkIoUsageTxBytes) updateCapacity() { + if m.data.Sum().DataPoints().Len() > m.capacity { + m.capacity = m.data.Sum().DataPoints().Len() + } +} + +// emit appends recorded metric data to a metrics slice and prepares it for recording another set of data points. +func (m *metricContainerNetworkIoUsageTxBytes) emit(metrics pmetric.MetricSlice) { + if m.config.Enabled && m.data.Sum().DataPoints().Len() > 0 { + m.updateCapacity() + m.data.MoveTo(metrics.AppendEmpty()) + m.init() + } +} + +func newMetricContainerNetworkIoUsageTxBytes(cfg MetricConfig) metricContainerNetworkIoUsageTxBytes { + m := metricContainerNetworkIoUsageTxBytes{config: cfg} + if cfg.Enabled { + m.data = pmetric.NewMetric() + m.init() + } + return m +} + +// MetricsBuilder provides an interface for scrapers to report metrics while taking care of all the transformations +// required to produce metric representation defined in metadata and user config. +type MetricsBuilder struct { + config MetricsBuilderConfig // config of the metrics builder. + startTime pcommon.Timestamp // start time that will be applied to all recorded data points. + metricsCapacity int // maximum observed number of metrics per resource. + metricsBuffer pmetric.Metrics // accumulates metrics data before emitting. + buildInfo component.BuildInfo // contains version information. + metricContainerBlockioIoServiceBytesRecursiveRead metricContainerBlockioIoServiceBytesRecursiveRead + metricContainerBlockioIoServiceBytesRecursiveWrite metricContainerBlockioIoServiceBytesRecursiveWrite + metricContainerCPUPercent metricContainerCPUPercent + metricContainerCPUUsagePercpu metricContainerCPUUsagePercpu + metricContainerCPUUsageSystem metricContainerCPUUsageSystem + metricContainerCPUUsageTotal metricContainerCPUUsageTotal + metricContainerMemoryPercent metricContainerMemoryPercent + metricContainerMemoryUsageLimit metricContainerMemoryUsageLimit + metricContainerMemoryUsageTotal metricContainerMemoryUsageTotal + metricContainerNetworkIoUsageRxBytes metricContainerNetworkIoUsageRxBytes + metricContainerNetworkIoUsageTxBytes metricContainerNetworkIoUsageTxBytes +} + +// metricBuilderOption applies changes to default metrics builder. +type metricBuilderOption func(*MetricsBuilder) + +// WithStartTime sets startTime on the metrics builder. +func WithStartTime(startTime pcommon.Timestamp) metricBuilderOption { + return func(mb *MetricsBuilder) { + mb.startTime = startTime + } +} + +func NewMetricsBuilder(mbc MetricsBuilderConfig, settings receiver.CreateSettings, options ...metricBuilderOption) *MetricsBuilder { + mb := &MetricsBuilder{ + config: mbc, + startTime: pcommon.NewTimestampFromTime(time.Now()), + metricsBuffer: pmetric.NewMetrics(), + buildInfo: settings.BuildInfo, + metricContainerBlockioIoServiceBytesRecursiveRead: newMetricContainerBlockioIoServiceBytesRecursiveRead(mbc.Metrics.ContainerBlockioIoServiceBytesRecursiveRead), + metricContainerBlockioIoServiceBytesRecursiveWrite: newMetricContainerBlockioIoServiceBytesRecursiveWrite(mbc.Metrics.ContainerBlockioIoServiceBytesRecursiveWrite), + metricContainerCPUPercent: newMetricContainerCPUPercent(mbc.Metrics.ContainerCPUPercent), + metricContainerCPUUsagePercpu: newMetricContainerCPUUsagePercpu(mbc.Metrics.ContainerCPUUsagePercpu), + metricContainerCPUUsageSystem: newMetricContainerCPUUsageSystem(mbc.Metrics.ContainerCPUUsageSystem), + metricContainerCPUUsageTotal: newMetricContainerCPUUsageTotal(mbc.Metrics.ContainerCPUUsageTotal), + metricContainerMemoryPercent: newMetricContainerMemoryPercent(mbc.Metrics.ContainerMemoryPercent), + metricContainerMemoryUsageLimit: newMetricContainerMemoryUsageLimit(mbc.Metrics.ContainerMemoryUsageLimit), + metricContainerMemoryUsageTotal: newMetricContainerMemoryUsageTotal(mbc.Metrics.ContainerMemoryUsageTotal), + metricContainerNetworkIoUsageRxBytes: newMetricContainerNetworkIoUsageRxBytes(mbc.Metrics.ContainerNetworkIoUsageRxBytes), + metricContainerNetworkIoUsageTxBytes: newMetricContainerNetworkIoUsageTxBytes(mbc.Metrics.ContainerNetworkIoUsageTxBytes), + } + for _, op := range options { + op(mb) + } + return mb +} + +// NewResourceBuilder returns a new resource builder that should be used to build a resource associated with for the emitted metrics. +func (mb *MetricsBuilder) NewResourceBuilder() *ResourceBuilder { + return NewResourceBuilder(mb.config.ResourceAttributes) +} + +// updateCapacity updates max length of metrics and resource attributes that will be used for the slice capacity. +func (mb *MetricsBuilder) updateCapacity(rm pmetric.ResourceMetrics) { + if mb.metricsCapacity < rm.ScopeMetrics().At(0).Metrics().Len() { + mb.metricsCapacity = rm.ScopeMetrics().At(0).Metrics().Len() + } +} + +// ResourceMetricsOption applies changes to provided resource metrics. +type ResourceMetricsOption func(pmetric.ResourceMetrics) + +// WithResource sets the provided resource on the emitted ResourceMetrics. +// It's recommended to use ResourceBuilder to create the resource. +func WithResource(res pcommon.Resource) ResourceMetricsOption { + return func(rm pmetric.ResourceMetrics) { + res.CopyTo(rm.Resource()) + } +} + +// WithStartTimeOverride overrides start time for all the resource metrics data points. +// This option should be only used if different start time has to be set on metrics coming from different resources. +func WithStartTimeOverride(start pcommon.Timestamp) ResourceMetricsOption { + return func(rm pmetric.ResourceMetrics) { + var dps pmetric.NumberDataPointSlice + metrics := rm.ScopeMetrics().At(0).Metrics() + for i := 0; i < metrics.Len(); i++ { + switch metrics.At(i).Type() { + case pmetric.MetricTypeGauge: + dps = metrics.At(i).Gauge().DataPoints() + case pmetric.MetricTypeSum: + dps = metrics.At(i).Sum().DataPoints() + } + for j := 0; j < dps.Len(); j++ { + dps.At(j).SetStartTimestamp(start) + } + } + } +} + +// EmitForResource saves all the generated metrics under a new resource and updates the internal state to be ready for +// recording another set of data points as part of another resource. This function can be helpful when one scraper +// needs to emit metrics from several resources. Otherwise calling this function is not required, +// just `Emit` function can be called instead. +// Resource attributes should be provided as ResourceMetricsOption arguments. +func (mb *MetricsBuilder) EmitForResource(rmo ...ResourceMetricsOption) { + rm := pmetric.NewResourceMetrics() + ils := rm.ScopeMetrics().AppendEmpty() + ils.Scope().SetName("otelcol/podmanreceiver") + ils.Scope().SetVersion(mb.buildInfo.Version) + ils.Metrics().EnsureCapacity(mb.metricsCapacity) + mb.metricContainerBlockioIoServiceBytesRecursiveRead.emit(ils.Metrics()) + mb.metricContainerBlockioIoServiceBytesRecursiveWrite.emit(ils.Metrics()) + mb.metricContainerCPUPercent.emit(ils.Metrics()) + mb.metricContainerCPUUsagePercpu.emit(ils.Metrics()) + mb.metricContainerCPUUsageSystem.emit(ils.Metrics()) + mb.metricContainerCPUUsageTotal.emit(ils.Metrics()) + mb.metricContainerMemoryPercent.emit(ils.Metrics()) + mb.metricContainerMemoryUsageLimit.emit(ils.Metrics()) + mb.metricContainerMemoryUsageTotal.emit(ils.Metrics()) + mb.metricContainerNetworkIoUsageRxBytes.emit(ils.Metrics()) + mb.metricContainerNetworkIoUsageTxBytes.emit(ils.Metrics()) + + for _, op := range rmo { + op(rm) + } + if ils.Metrics().Len() > 0 { + mb.updateCapacity(rm) + rm.MoveTo(mb.metricsBuffer.ResourceMetrics().AppendEmpty()) + } +} + +// Emit returns all the metrics accumulated by the metrics builder and updates the internal state to be ready for +// recording another set of metrics. This function will be responsible for applying all the transformations required to +// produce metric representation defined in metadata and user config, e.g. delta or cumulative. +func (mb *MetricsBuilder) Emit(rmo ...ResourceMetricsOption) pmetric.Metrics { + mb.EmitForResource(rmo...) + metrics := mb.metricsBuffer + mb.metricsBuffer = pmetric.NewMetrics() + return metrics +} + +// RecordContainerBlockioIoServiceBytesRecursiveReadDataPoint adds a data point to container.blockio.io_service_bytes_recursive.read metric. +func (mb *MetricsBuilder) RecordContainerBlockioIoServiceBytesRecursiveReadDataPoint(ts pcommon.Timestamp, val int64) { + mb.metricContainerBlockioIoServiceBytesRecursiveRead.recordDataPoint(mb.startTime, ts, val) +} + +// RecordContainerBlockioIoServiceBytesRecursiveWriteDataPoint adds a data point to container.blockio.io_service_bytes_recursive.write metric. +func (mb *MetricsBuilder) RecordContainerBlockioIoServiceBytesRecursiveWriteDataPoint(ts pcommon.Timestamp, val int64) { + mb.metricContainerBlockioIoServiceBytesRecursiveWrite.recordDataPoint(mb.startTime, ts, val) +} + +// RecordContainerCPUPercentDataPoint adds a data point to container.cpu.percent metric. +func (mb *MetricsBuilder) RecordContainerCPUPercentDataPoint(ts pcommon.Timestamp, val float64) { + mb.metricContainerCPUPercent.recordDataPoint(mb.startTime, ts, val) +} + +// RecordContainerCPUUsagePercpuDataPoint adds a data point to container.cpu.usage.percpu metric. +func (mb *MetricsBuilder) RecordContainerCPUUsagePercpuDataPoint(ts pcommon.Timestamp, val int64, coreAttributeValue string) { + mb.metricContainerCPUUsagePercpu.recordDataPoint(mb.startTime, ts, val, coreAttributeValue) +} + +// RecordContainerCPUUsageSystemDataPoint adds a data point to container.cpu.usage.system metric. +func (mb *MetricsBuilder) RecordContainerCPUUsageSystemDataPoint(ts pcommon.Timestamp, val int64) { + mb.metricContainerCPUUsageSystem.recordDataPoint(mb.startTime, ts, val) +} + +// RecordContainerCPUUsageTotalDataPoint adds a data point to container.cpu.usage.total metric. +func (mb *MetricsBuilder) RecordContainerCPUUsageTotalDataPoint(ts pcommon.Timestamp, val int64) { + mb.metricContainerCPUUsageTotal.recordDataPoint(mb.startTime, ts, val) +} + +// RecordContainerMemoryPercentDataPoint adds a data point to container.memory.percent metric. +func (mb *MetricsBuilder) RecordContainerMemoryPercentDataPoint(ts pcommon.Timestamp, val float64) { + mb.metricContainerMemoryPercent.recordDataPoint(mb.startTime, ts, val) +} + +// RecordContainerMemoryUsageLimitDataPoint adds a data point to container.memory.usage.limit metric. +func (mb *MetricsBuilder) RecordContainerMemoryUsageLimitDataPoint(ts pcommon.Timestamp, val int64) { + mb.metricContainerMemoryUsageLimit.recordDataPoint(mb.startTime, ts, val) +} + +// RecordContainerMemoryUsageTotalDataPoint adds a data point to container.memory.usage.total metric. +func (mb *MetricsBuilder) RecordContainerMemoryUsageTotalDataPoint(ts pcommon.Timestamp, val int64) { + mb.metricContainerMemoryUsageTotal.recordDataPoint(mb.startTime, ts, val) +} + +// RecordContainerNetworkIoUsageRxBytesDataPoint adds a data point to container.network.io.usage.rx_bytes metric. +func (mb *MetricsBuilder) RecordContainerNetworkIoUsageRxBytesDataPoint(ts pcommon.Timestamp, val int64) { + mb.metricContainerNetworkIoUsageRxBytes.recordDataPoint(mb.startTime, ts, val) +} + +// RecordContainerNetworkIoUsageTxBytesDataPoint adds a data point to container.network.io.usage.tx_bytes metric. +func (mb *MetricsBuilder) RecordContainerNetworkIoUsageTxBytesDataPoint(ts pcommon.Timestamp, val int64) { + mb.metricContainerNetworkIoUsageTxBytes.recordDataPoint(mb.startTime, ts, val) +} + +// Reset resets metrics builder to its initial state. It should be used when external metrics source is restarted, +// and metrics builder should update its startTime and reset it's internal state accordingly. +func (mb *MetricsBuilder) Reset(options ...metricBuilderOption) { + mb.startTime = pcommon.NewTimestampFromTime(time.Now()) + for _, op := range options { + op(mb) + } +} diff --git a/receiver/podmanreceiver/internal/metadata/generated_metrics_test.go b/receiver/podmanreceiver/internal/metadata/generated_metrics_test.go new file mode 100644 index 000000000000..0b9a0868d03a --- /dev/null +++ b/receiver/podmanreceiver/internal/metadata/generated_metrics_test.go @@ -0,0 +1,286 @@ +// Code generated by mdatagen. DO NOT EDIT. + +package metadata + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "go.opentelemetry.io/collector/pdata/pcommon" + "go.opentelemetry.io/collector/pdata/pmetric" + "go.opentelemetry.io/collector/receiver/receivertest" + "go.uber.org/zap" + "go.uber.org/zap/zaptest/observer" +) + +type testConfigCollection int + +const ( + testSetDefault testConfigCollection = iota + testSetAll + testSetNone +) + +func TestMetricsBuilder(t *testing.T) { + tests := []struct { + name string + configSet testConfigCollection + }{ + { + name: "default", + configSet: testSetDefault, + }, + { + name: "all_set", + configSet: testSetAll, + }, + { + name: "none_set", + configSet: testSetNone, + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + start := pcommon.Timestamp(1_000_000_000) + ts := pcommon.Timestamp(1_000_001_000) + observedZapCore, observedLogs := observer.New(zap.WarnLevel) + settings := receivertest.NewNopCreateSettings() + settings.Logger = zap.New(observedZapCore) + mb := NewMetricsBuilder(loadMetricsBuilderConfig(t, test.name), settings, WithStartTime(start)) + + expectedWarnings := 0 + + assert.Equal(t, expectedWarnings, observedLogs.Len()) + + defaultMetricsCount := 0 + allMetricsCount := 0 + + defaultMetricsCount++ + allMetricsCount++ + mb.RecordContainerBlockioIoServiceBytesRecursiveReadDataPoint(ts, 1) + + defaultMetricsCount++ + allMetricsCount++ + mb.RecordContainerBlockioIoServiceBytesRecursiveWriteDataPoint(ts, 1) + + defaultMetricsCount++ + allMetricsCount++ + mb.RecordContainerCPUPercentDataPoint(ts, 1) + + defaultMetricsCount++ + allMetricsCount++ + mb.RecordContainerCPUUsagePercpuDataPoint(ts, 1, "core-val") + + defaultMetricsCount++ + allMetricsCount++ + mb.RecordContainerCPUUsageSystemDataPoint(ts, 1) + + defaultMetricsCount++ + allMetricsCount++ + mb.RecordContainerCPUUsageTotalDataPoint(ts, 1) + + defaultMetricsCount++ + allMetricsCount++ + mb.RecordContainerMemoryPercentDataPoint(ts, 1) + + defaultMetricsCount++ + allMetricsCount++ + mb.RecordContainerMemoryUsageLimitDataPoint(ts, 1) + + defaultMetricsCount++ + allMetricsCount++ + mb.RecordContainerMemoryUsageTotalDataPoint(ts, 1) + + defaultMetricsCount++ + allMetricsCount++ + mb.RecordContainerNetworkIoUsageRxBytesDataPoint(ts, 1) + + defaultMetricsCount++ + allMetricsCount++ + mb.RecordContainerNetworkIoUsageTxBytesDataPoint(ts, 1) + + rb := mb.NewResourceBuilder() + rb.SetContainerID("container.id-val") + rb.SetContainerImageName("container.image.name-val") + rb.SetContainerName("container.name-val") + rb.SetContainerRuntime("container.runtime-val") + res := rb.Emit() + metrics := mb.Emit(WithResource(res)) + + if test.configSet == testSetNone { + assert.Equal(t, 0, metrics.ResourceMetrics().Len()) + return + } + + assert.Equal(t, 1, metrics.ResourceMetrics().Len()) + rm := metrics.ResourceMetrics().At(0) + assert.Equal(t, res, rm.Resource()) + assert.Equal(t, 1, rm.ScopeMetrics().Len()) + ms := rm.ScopeMetrics().At(0).Metrics() + if test.configSet == testSetDefault { + assert.Equal(t, defaultMetricsCount, ms.Len()) + } + if test.configSet == testSetAll { + assert.Equal(t, allMetricsCount, ms.Len()) + } + validatedMetrics := make(map[string]bool) + for i := 0; i < ms.Len(); i++ { + switch ms.At(i).Name() { + case "container.blockio.io_service_bytes_recursive.read": + assert.False(t, validatedMetrics["container.blockio.io_service_bytes_recursive.read"], "Found a duplicate in the metrics slice: container.blockio.io_service_bytes_recursive.read") + validatedMetrics["container.blockio.io_service_bytes_recursive.read"] = true + assert.Equal(t, pmetric.MetricTypeSum, ms.At(i).Type()) + assert.Equal(t, 1, ms.At(i).Sum().DataPoints().Len()) + assert.Equal(t, "Number of bytes transferred from the disk by the container", ms.At(i).Description()) + assert.Equal(t, "{operations}", ms.At(i).Unit()) + assert.Equal(t, true, ms.At(i).Sum().IsMonotonic()) + assert.Equal(t, pmetric.AggregationTemporalityCumulative, ms.At(i).Sum().AggregationTemporality()) + dp := ms.At(i).Sum().DataPoints().At(0) + assert.Equal(t, start, dp.StartTimestamp()) + assert.Equal(t, ts, dp.Timestamp()) + assert.Equal(t, pmetric.NumberDataPointValueTypeInt, dp.ValueType()) + assert.Equal(t, int64(1), dp.IntValue()) + case "container.blockio.io_service_bytes_recursive.write": + assert.False(t, validatedMetrics["container.blockio.io_service_bytes_recursive.write"], "Found a duplicate in the metrics slice: container.blockio.io_service_bytes_recursive.write") + validatedMetrics["container.blockio.io_service_bytes_recursive.write"] = true + assert.Equal(t, pmetric.MetricTypeSum, ms.At(i).Type()) + assert.Equal(t, 1, ms.At(i).Sum().DataPoints().Len()) + assert.Equal(t, "Number of bytes transferred to the disk by the container", ms.At(i).Description()) + assert.Equal(t, "{operations}", ms.At(i).Unit()) + assert.Equal(t, true, ms.At(i).Sum().IsMonotonic()) + assert.Equal(t, pmetric.AggregationTemporalityCumulative, ms.At(i).Sum().AggregationTemporality()) + dp := ms.At(i).Sum().DataPoints().At(0) + assert.Equal(t, start, dp.StartTimestamp()) + assert.Equal(t, ts, dp.Timestamp()) + assert.Equal(t, pmetric.NumberDataPointValueTypeInt, dp.ValueType()) + assert.Equal(t, int64(1), dp.IntValue()) + case "container.cpu.percent": + assert.False(t, validatedMetrics["container.cpu.percent"], "Found a duplicate in the metrics slice: container.cpu.percent") + validatedMetrics["container.cpu.percent"] = true + assert.Equal(t, pmetric.MetricTypeGauge, ms.At(i).Type()) + assert.Equal(t, 1, ms.At(i).Gauge().DataPoints().Len()) + assert.Equal(t, "Percent of CPU used by the container.", ms.At(i).Description()) + assert.Equal(t, "1", ms.At(i).Unit()) + dp := ms.At(i).Gauge().DataPoints().At(0) + assert.Equal(t, start, dp.StartTimestamp()) + assert.Equal(t, ts, dp.Timestamp()) + assert.Equal(t, pmetric.NumberDataPointValueTypeDouble, dp.ValueType()) + assert.Equal(t, float64(1), dp.DoubleValue()) + case "container.cpu.usage.percpu": + assert.False(t, validatedMetrics["container.cpu.usage.percpu"], "Found a duplicate in the metrics slice: container.cpu.usage.percpu") + validatedMetrics["container.cpu.usage.percpu"] = true + assert.Equal(t, pmetric.MetricTypeSum, ms.At(i).Type()) + assert.Equal(t, 1, ms.At(i).Sum().DataPoints().Len()) + assert.Equal(t, "Total CPU time consumed per CPU-core.", ms.At(i).Description()) + assert.Equal(t, "s", ms.At(i).Unit()) + assert.Equal(t, true, ms.At(i).Sum().IsMonotonic()) + assert.Equal(t, pmetric.AggregationTemporalityCumulative, ms.At(i).Sum().AggregationTemporality()) + dp := ms.At(i).Sum().DataPoints().At(0) + assert.Equal(t, start, dp.StartTimestamp()) + assert.Equal(t, ts, dp.Timestamp()) + assert.Equal(t, pmetric.NumberDataPointValueTypeInt, dp.ValueType()) + assert.Equal(t, int64(1), dp.IntValue()) + attrVal, ok := dp.Attributes().Get("core") + assert.True(t, ok) + assert.EqualValues(t, "core-val", attrVal.Str()) + case "container.cpu.usage.system": + assert.False(t, validatedMetrics["container.cpu.usage.system"], "Found a duplicate in the metrics slice: container.cpu.usage.system") + validatedMetrics["container.cpu.usage.system"] = true + assert.Equal(t, pmetric.MetricTypeSum, ms.At(i).Type()) + assert.Equal(t, 1, ms.At(i).Sum().DataPoints().Len()) + assert.Equal(t, "System CPU usage.", ms.At(i).Description()) + assert.Equal(t, "s", ms.At(i).Unit()) + assert.Equal(t, true, ms.At(i).Sum().IsMonotonic()) + assert.Equal(t, pmetric.AggregationTemporalityCumulative, ms.At(i).Sum().AggregationTemporality()) + dp := ms.At(i).Sum().DataPoints().At(0) + assert.Equal(t, start, dp.StartTimestamp()) + assert.Equal(t, ts, dp.Timestamp()) + assert.Equal(t, pmetric.NumberDataPointValueTypeInt, dp.ValueType()) + assert.Equal(t, int64(1), dp.IntValue()) + case "container.cpu.usage.total": + assert.False(t, validatedMetrics["container.cpu.usage.total"], "Found a duplicate in the metrics slice: container.cpu.usage.total") + validatedMetrics["container.cpu.usage.total"] = true + assert.Equal(t, pmetric.MetricTypeSum, ms.At(i).Type()) + assert.Equal(t, 1, ms.At(i).Sum().DataPoints().Len()) + assert.Equal(t, "Total CPU time consumed.", ms.At(i).Description()) + assert.Equal(t, "s", ms.At(i).Unit()) + assert.Equal(t, true, ms.At(i).Sum().IsMonotonic()) + assert.Equal(t, pmetric.AggregationTemporalityCumulative, ms.At(i).Sum().AggregationTemporality()) + dp := ms.At(i).Sum().DataPoints().At(0) + assert.Equal(t, start, dp.StartTimestamp()) + assert.Equal(t, ts, dp.Timestamp()) + assert.Equal(t, pmetric.NumberDataPointValueTypeInt, dp.ValueType()) + assert.Equal(t, int64(1), dp.IntValue()) + case "container.memory.percent": + assert.False(t, validatedMetrics["container.memory.percent"], "Found a duplicate in the metrics slice: container.memory.percent") + validatedMetrics["container.memory.percent"] = true + assert.Equal(t, pmetric.MetricTypeGauge, ms.At(i).Type()) + assert.Equal(t, 1, ms.At(i).Gauge().DataPoints().Len()) + assert.Equal(t, "Percentage of memory used.", ms.At(i).Description()) + assert.Equal(t, "1", ms.At(i).Unit()) + dp := ms.At(i).Gauge().DataPoints().At(0) + assert.Equal(t, start, dp.StartTimestamp()) + assert.Equal(t, ts, dp.Timestamp()) + assert.Equal(t, pmetric.NumberDataPointValueTypeDouble, dp.ValueType()) + assert.Equal(t, float64(1), dp.DoubleValue()) + case "container.memory.usage.limit": + assert.False(t, validatedMetrics["container.memory.usage.limit"], "Found a duplicate in the metrics slice: container.memory.usage.limit") + validatedMetrics["container.memory.usage.limit"] = true + assert.Equal(t, pmetric.MetricTypeSum, ms.At(i).Type()) + assert.Equal(t, 1, ms.At(i).Sum().DataPoints().Len()) + assert.Equal(t, "Memory limit of the container.", ms.At(i).Description()) + assert.Equal(t, "By", ms.At(i).Unit()) + assert.Equal(t, false, ms.At(i).Sum().IsMonotonic()) + assert.Equal(t, pmetric.AggregationTemporalityCumulative, ms.At(i).Sum().AggregationTemporality()) + dp := ms.At(i).Sum().DataPoints().At(0) + assert.Equal(t, start, dp.StartTimestamp()) + assert.Equal(t, ts, dp.Timestamp()) + assert.Equal(t, pmetric.NumberDataPointValueTypeInt, dp.ValueType()) + assert.Equal(t, int64(1), dp.IntValue()) + case "container.memory.usage.total": + assert.False(t, validatedMetrics["container.memory.usage.total"], "Found a duplicate in the metrics slice: container.memory.usage.total") + validatedMetrics["container.memory.usage.total"] = true + assert.Equal(t, pmetric.MetricTypeSum, ms.At(i).Type()) + assert.Equal(t, 1, ms.At(i).Sum().DataPoints().Len()) + assert.Equal(t, "Memory usage of the container.", ms.At(i).Description()) + assert.Equal(t, "By", ms.At(i).Unit()) + assert.Equal(t, false, ms.At(i).Sum().IsMonotonic()) + assert.Equal(t, pmetric.AggregationTemporalityCumulative, ms.At(i).Sum().AggregationTemporality()) + dp := ms.At(i).Sum().DataPoints().At(0) + assert.Equal(t, start, dp.StartTimestamp()) + assert.Equal(t, ts, dp.Timestamp()) + assert.Equal(t, pmetric.NumberDataPointValueTypeInt, dp.ValueType()) + assert.Equal(t, int64(1), dp.IntValue()) + case "container.network.io.usage.rx_bytes": + assert.False(t, validatedMetrics["container.network.io.usage.rx_bytes"], "Found a duplicate in the metrics slice: container.network.io.usage.rx_bytes") + validatedMetrics["container.network.io.usage.rx_bytes"] = true + assert.Equal(t, pmetric.MetricTypeSum, ms.At(i).Type()) + assert.Equal(t, 1, ms.At(i).Sum().DataPoints().Len()) + assert.Equal(t, "Bytes received by the container.", ms.At(i).Description()) + assert.Equal(t, "By", ms.At(i).Unit()) + assert.Equal(t, true, ms.At(i).Sum().IsMonotonic()) + assert.Equal(t, pmetric.AggregationTemporalityCumulative, ms.At(i).Sum().AggregationTemporality()) + dp := ms.At(i).Sum().DataPoints().At(0) + assert.Equal(t, start, dp.StartTimestamp()) + assert.Equal(t, ts, dp.Timestamp()) + assert.Equal(t, pmetric.NumberDataPointValueTypeInt, dp.ValueType()) + assert.Equal(t, int64(1), dp.IntValue()) + case "container.network.io.usage.tx_bytes": + assert.False(t, validatedMetrics["container.network.io.usage.tx_bytes"], "Found a duplicate in the metrics slice: container.network.io.usage.tx_bytes") + validatedMetrics["container.network.io.usage.tx_bytes"] = true + assert.Equal(t, pmetric.MetricTypeSum, ms.At(i).Type()) + assert.Equal(t, 1, ms.At(i).Sum().DataPoints().Len()) + assert.Equal(t, "Bytes sent by the container.", ms.At(i).Description()) + assert.Equal(t, "By", ms.At(i).Unit()) + assert.Equal(t, true, ms.At(i).Sum().IsMonotonic()) + assert.Equal(t, pmetric.AggregationTemporalityCumulative, ms.At(i).Sum().AggregationTemporality()) + dp := ms.At(i).Sum().DataPoints().At(0) + assert.Equal(t, start, dp.StartTimestamp()) + assert.Equal(t, ts, dp.Timestamp()) + assert.Equal(t, pmetric.NumberDataPointValueTypeInt, dp.ValueType()) + assert.Equal(t, int64(1), dp.IntValue()) + } + } + }) + } +} diff --git a/receiver/podmanreceiver/internal/metadata/generated_resource.go b/receiver/podmanreceiver/internal/metadata/generated_resource.go new file mode 100644 index 000000000000..3fb5a3cd56fd --- /dev/null +++ b/receiver/podmanreceiver/internal/metadata/generated_resource.go @@ -0,0 +1,57 @@ +// Code generated by mdatagen. DO NOT EDIT. + +package metadata + +import ( + "go.opentelemetry.io/collector/pdata/pcommon" +) + +// ResourceBuilder is a helper struct to build resources predefined in metadata.yaml. +// The ResourceBuilder is not thread-safe and must not to be used in multiple goroutines. +type ResourceBuilder struct { + config ResourceAttributesConfig + res pcommon.Resource +} + +// NewResourceBuilder creates a new ResourceBuilder. This method should be called on the start of the application. +func NewResourceBuilder(rac ResourceAttributesConfig) *ResourceBuilder { + return &ResourceBuilder{ + config: rac, + res: pcommon.NewResource(), + } +} + +// SetContainerID sets provided value as "container.id" attribute. +func (rb *ResourceBuilder) SetContainerID(val string) { + if rb.config.ContainerID.Enabled { + rb.res.Attributes().PutStr("container.id", val) + } +} + +// SetContainerImageName sets provided value as "container.image.name" attribute. +func (rb *ResourceBuilder) SetContainerImageName(val string) { + if rb.config.ContainerImageName.Enabled { + rb.res.Attributes().PutStr("container.image.name", val) + } +} + +// SetContainerName sets provided value as "container.name" attribute. +func (rb *ResourceBuilder) SetContainerName(val string) { + if rb.config.ContainerName.Enabled { + rb.res.Attributes().PutStr("container.name", val) + } +} + +// SetContainerRuntime sets provided value as "container.runtime" attribute. +func (rb *ResourceBuilder) SetContainerRuntime(val string) { + if rb.config.ContainerRuntime.Enabled { + rb.res.Attributes().PutStr("container.runtime", val) + } +} + +// Emit returns the built resource and resets the internal builder state. +func (rb *ResourceBuilder) Emit() pcommon.Resource { + r := rb.res + rb.res = pcommon.NewResource() + return r +} diff --git a/receiver/podmanreceiver/internal/metadata/generated_resource_test.go b/receiver/podmanreceiver/internal/metadata/generated_resource_test.go new file mode 100644 index 000000000000..c1d9bafe1da0 --- /dev/null +++ b/receiver/podmanreceiver/internal/metadata/generated_resource_test.go @@ -0,0 +1,58 @@ +// Code generated by mdatagen. DO NOT EDIT. + +package metadata + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestResourceBuilder(t *testing.T) { + for _, test := range []string{"default", "all_set", "none_set"} { + t.Run(test, func(t *testing.T) { + cfg := loadResourceAttributesConfig(t, test) + rb := NewResourceBuilder(cfg) + rb.SetContainerID("container.id-val") + rb.SetContainerImageName("container.image.name-val") + rb.SetContainerName("container.name-val") + rb.SetContainerRuntime("container.runtime-val") + + res := rb.Emit() + assert.Equal(t, 0, rb.Emit().Attributes().Len()) // Second call should return empty Resource + + switch test { + case "default": + assert.Equal(t, 4, res.Attributes().Len()) + case "all_set": + assert.Equal(t, 4, res.Attributes().Len()) + case "none_set": + assert.Equal(t, 0, res.Attributes().Len()) + return + default: + assert.Failf(t, "unexpected test case: %s", test) + } + + val, ok := res.Attributes().Get("container.id") + assert.True(t, ok) + if ok { + assert.EqualValues(t, "container.id-val", val.Str()) + } + val, ok = res.Attributes().Get("container.image.name") + assert.True(t, ok) + if ok { + assert.EqualValues(t, "container.image.name-val", val.Str()) + } + val, ok = res.Attributes().Get("container.name") + assert.True(t, ok) + if ok { + assert.EqualValues(t, "container.name-val", val.Str()) + } + val, ok = res.Attributes().Get("container.runtime") + assert.True(t, ok) + if ok { + assert.EqualValues(t, "container.runtime-val", val.Str()) + } + }) + } +} diff --git a/receiver/podmanreceiver/internal/metadata/testdata/config.yaml b/receiver/podmanreceiver/internal/metadata/testdata/config.yaml new file mode 100644 index 000000000000..9fafe024c230 --- /dev/null +++ b/receiver/podmanreceiver/internal/metadata/testdata/config.yaml @@ -0,0 +1,67 @@ +default: +all_set: + metrics: + container.blockio.io_service_bytes_recursive.read: + enabled: true + container.blockio.io_service_bytes_recursive.write: + enabled: true + container.cpu.percent: + enabled: true + container.cpu.usage.percpu: + enabled: true + container.cpu.usage.system: + enabled: true + container.cpu.usage.total: + enabled: true + container.memory.percent: + enabled: true + container.memory.usage.limit: + enabled: true + container.memory.usage.total: + enabled: true + container.network.io.usage.rx_bytes: + enabled: true + container.network.io.usage.tx_bytes: + enabled: true + resource_attributes: + container.id: + enabled: true + container.image.name: + enabled: true + container.name: + enabled: true + container.runtime: + enabled: true +none_set: + metrics: + container.blockio.io_service_bytes_recursive.read: + enabled: false + container.blockio.io_service_bytes_recursive.write: + enabled: false + container.cpu.percent: + enabled: false + container.cpu.usage.percpu: + enabled: false + container.cpu.usage.system: + enabled: false + container.cpu.usage.total: + enabled: false + container.memory.percent: + enabled: false + container.memory.usage.limit: + enabled: false + container.memory.usage.total: + enabled: false + container.network.io.usage.rx_bytes: + enabled: false + container.network.io.usage.tx_bytes: + enabled: false + resource_attributes: + container.id: + enabled: false + container.image.name: + enabled: false + container.name: + enabled: false + container.runtime: + enabled: false diff --git a/receiver/podmanreceiver/metadata.yaml b/receiver/podmanreceiver/metadata.yaml index de3c3f37fe8d..b1ce716920c3 100644 --- a/receiver/podmanreceiver/metadata.yaml +++ b/receiver/podmanreceiver/metadata.yaml @@ -10,6 +10,123 @@ status: active: [rogercoll] unsupported_platforms: [windows] +resource_attributes: + container.runtime: + description: "The runtime of the container. For this receiver, it will always be 'podman'." + type: string + enabled: true + container.id: + description: "The ID of the container." + type: string + enabled: true + container.image.name: + description: "The name of the image in use by the container." + type: string + enabled: true + container.name: + description: "The name of the container." + type: string + enabled: true + +attributes: + core: + description: "The CPU core number when utilising per-CPU metrics." + type: string + +metrics: + # CPU + container.cpu.usage.system: + enabled: true + description: "System CPU usage." + unit: s + sum: + value_type: int + monotonic: true + aggregation_temporality: cumulative + container.cpu.usage.total: + enabled: true + description: "Total CPU time consumed." + unit: s + sum: + value_type: int + monotonic: true + aggregation_temporality: cumulative + container.cpu.usage.percpu: + enabled: true + description: "Total CPU time consumed per CPU-core." + unit: s + sum: + value_type: int + monotonic: true + aggregation_temporality: cumulative + attributes: + - core + container.cpu.percent: + enabled: true + description: "Percent of CPU used by the container." + unit: 1 + gauge: + value_type: double + # Memory + container.memory.usage.limit: + enabled: true + description: "Memory limit of the container." + unit: By + sum: + value_type: int + aggregation_temporality: cumulative + monotonic: false + container.memory.usage.total: + enabled: true + description: "Memory usage of the container." + unit: By + sum: + value_type: int + aggregation_temporality: cumulative + monotonic: false + container.memory.percent: + enabled: true + description: "Percentage of memory used." + unit: 1 + gauge: + value_type: double + # Network + container.network.io.usage.rx_bytes: + enabled: true + description: "Bytes received by the container." + unit: By + sum: + value_type: int + monotonic: true + aggregation_temporality: cumulative + container.network.io.usage.tx_bytes: + enabled: true + description: "Bytes sent by the container." + unit: By + sum: + value_type: int + monotonic: true + aggregation_temporality: cumulative + # BlockIO + container.blockio.io_service_bytes_recursive.read: + enabled: true + description: "Number of bytes transferred from the disk by the container" + extended_documentation: "[More docs](https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt)." + unit: "{operations}" + sum: + value_type: int + monotonic: true + aggregation_temporality: cumulative + container.blockio.io_service_bytes_recursive.write: + enabled: true + description: "Number of bytes transferred to the disk by the container" + extended_documentation: "[More docs](https://www.kernel.org/doc/Documentation/cgroup-v1/blkio-controller.txt)." + unit: "{operations}" + sum: + value_type: int + monotonic: true + aggregation_temporality: cumulative + # TODO: Update the receiver to pass the tests tests: skip_lifecycle: true diff --git a/receiver/podmanreceiver/metrics.go b/receiver/podmanreceiver/metrics.go deleted file mode 100644 index ee0dcae29da2..000000000000 --- a/receiver/podmanreceiver/metrics.go +++ /dev/null @@ -1,130 +0,0 @@ -// Copyright The OpenTelemetry Authors -// SPDX-License-Identifier: Apache-2.0 - -//go:build !windows - -package podmanreceiver // import "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/podmanreceiver" - -import ( - "fmt" - "time" - - "go.opentelemetry.io/collector/pdata/pcommon" - "go.opentelemetry.io/collector/pdata/pmetric" - conventions "go.opentelemetry.io/collector/semconv/v1.6.1" -) - -type point struct { - intVal uint64 - doubleVal float64 - attributes map[string]string -} - -func containerStatsToMetrics(ts time.Time, container container, stats *containerStats) pmetric.Metrics { - pbts := pcommon.NewTimestampFromTime(ts) - - md := pmetric.NewMetrics() - rs := md.ResourceMetrics().AppendEmpty() - - resourceAttr := rs.Resource().Attributes() - resourceAttr.PutStr(conventions.AttributeContainerRuntime, "podman") - resourceAttr.PutStr(conventions.AttributeContainerName, stats.Name) - resourceAttr.PutStr(conventions.AttributeContainerID, stats.ContainerID) - resourceAttr.PutStr(conventions.AttributeContainerImageName, container.Image) - - ms := rs.ScopeMetrics().AppendEmpty().Metrics() - appendIOMetrics(ms, stats, pbts) - appendCPUMetrics(ms, stats, pbts) - appendNetworkMetrics(ms, stats, pbts) - appendMemoryMetrics(ms, stats, pbts) - - return md -} - -func appendMemoryMetrics(ms pmetric.MetricSlice, stats *containerStats, ts pcommon.Timestamp) { - gaugeI(ms, "memory.usage.limit", "By", []point{{intVal: stats.MemLimit}}, ts) - gaugeI(ms, "memory.usage.total", "By", []point{{intVal: stats.MemUsage}}, ts) - gaugeF(ms, "memory.percent", "1", []point{{doubleVal: stats.MemPerc}}, ts) -} - -func appendNetworkMetrics(ms pmetric.MetricSlice, stats *containerStats, ts pcommon.Timestamp) { - sum(ms, "network.io.usage.tx_bytes", "By", []point{{intVal: stats.NetInput}}, ts) - sum(ms, "network.io.usage.rx_bytes", "By", []point{{intVal: stats.NetOutput}}, ts) -} - -func appendIOMetrics(ms pmetric.MetricSlice, stats *containerStats, ts pcommon.Timestamp) { - sum(ms, "blockio.io_service_bytes_recursive.write", "By", []point{{intVal: stats.BlockOutput}}, ts) - sum(ms, "blockio.io_service_bytes_recursive.read", "By", []point{{intVal: stats.BlockInput}}, ts) -} - -func appendCPUMetrics(ms pmetric.MetricSlice, stats *containerStats, ts pcommon.Timestamp) { - sum(ms, "cpu.usage.system", "ns", []point{{intVal: stats.CPUSystemNano}}, ts) - sum(ms, "cpu.usage.total", "ns", []point{{intVal: stats.CPUNano}}, ts) - gaugeF(ms, "cpu.percent", "1", []point{{doubleVal: stats.CPU}}, ts) - - points := make([]point, len(stats.PerCPU)) - for i, cpu := range stats.PerCPU { - points[i] = point{ - intVal: cpu, - attributes: map[string]string{ - "core": fmt.Sprintf("cpu%d", i), - }, - } - } - sum(ms, "cpu.usage.percpu", "ns", points, ts) -} - -func initMetric(ms pmetric.MetricSlice, name, unit string) pmetric.Metric { - m := ms.AppendEmpty() - m.SetName(fmt.Sprintf("container.%s", name)) - m.SetUnit(unit) - return m -} - -func sum(ilm pmetric.MetricSlice, metricName string, unit string, points []point, ts pcommon.Timestamp) { - metric := initMetric(ilm, metricName, unit) - sum := metric.SetEmptySum() - sum.SetIsMonotonic(true) - sum.SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) - - dataPoints := sum.DataPoints() - - for _, pt := range points { - dataPoint := dataPoints.AppendEmpty() - dataPoint.SetTimestamp(ts) - dataPoint.SetIntValue(int64(pt.intVal)) - setDataPointAttributes(dataPoint, pt.attributes) - } -} - -func gauge(ms pmetric.MetricSlice, metricName string, unit string) pmetric.NumberDataPointSlice { - metric := initMetric(ms, metricName, unit) - gauge := metric.SetEmptyGauge() - return gauge.DataPoints() -} - -func gaugeI(ms pmetric.MetricSlice, metricName string, unit string, points []point, ts pcommon.Timestamp) { - dataPoints := gauge(ms, metricName, unit) - for _, pt := range points { - dataPoint := dataPoints.AppendEmpty() - dataPoint.SetTimestamp(ts) - dataPoint.SetIntValue(int64(pt.intVal)) - setDataPointAttributes(dataPoint, pt.attributes) - } -} - -func gaugeF(ms pmetric.MetricSlice, metricName string, unit string, points []point, ts pcommon.Timestamp) { - dataPoints := gauge(ms, metricName, unit) - for _, pt := range points { - dataPoint := dataPoints.AppendEmpty() - dataPoint.SetTimestamp(ts) - dataPoint.SetDoubleValue(pt.doubleVal) - setDataPointAttributes(dataPoint, pt.attributes) - } -} - -func setDataPointAttributes(dataPoint pmetric.NumberDataPoint, attributes map[string]string) { - for k, v := range attributes { - dataPoint.Attributes().PutStr(k, v) - } -} diff --git a/receiver/podmanreceiver/receiver.go b/receiver/podmanreceiver/receiver.go index 1a748cfa7fd4..4ea3cc218468 100644 --- a/receiver/podmanreceiver/receiver.go +++ b/receiver/podmanreceiver/receiver.go @@ -13,6 +13,7 @@ import ( "go.opentelemetry.io/collector/component" "go.opentelemetry.io/collector/consumer" + "go.opentelemetry.io/collector/pdata/pcommon" "go.opentelemetry.io/collector/pdata/pmetric" "go.opentelemetry.io/collector/receiver" "go.opentelemetry.io/collector/receiver/scrapererror" @@ -27,6 +28,7 @@ type metricsReceiver struct { set receiver.CreateSettings clientFactory clientFactory scraper *ContainerScraper + mb *metadata.MetricsBuilder } func newMetricsReceiver( @@ -49,6 +51,7 @@ func newMetricsReceiver( config: config, clientFactory: clientFactory, set: set, + mb: metadata.NewMetricsBuilder(config.MetricsBuilderConfig, set), } scrp, err := scraperhelper.NewScraper(metadata.Type.String(), recv.scrape, scraperhelper.WithStart(recv.start)) @@ -74,8 +77,9 @@ func (r *metricsReceiver) start(ctx context.Context, _ component.Host) error { } type result struct { - md pmetric.Metrics - err error + container container + containerStats containerStats + err error } func (r *metricsReceiver) scrape(ctx context.Context) (pmetric.Metrics, error) { @@ -88,11 +92,7 @@ func (r *metricsReceiver) scrape(ctx context.Context) (pmetric.Metrics, error) { go func(c container) { defer wg.Done() stats, err := r.scraper.fetchContainerStats(ctx, c) - if err != nil { - results <- result{md: pmetric.Metrics{}, err: err} - return - } - results <- result{md: containerStatsToMetrics(time.Now(), c, &stats), err: nil} + results <- result{container: c, containerStats: stats, err: err} }(c) } @@ -100,15 +100,62 @@ func (r *metricsReceiver) scrape(ctx context.Context) (pmetric.Metrics, error) { close(results) var errs error - md := pmetric.NewMetrics() + now := pcommon.NewTimestampFromTime(time.Now()) + for res := range results { if res.err != nil { // Don't know the number of failed metrics, but one container fetch is a partial error. errs = multierr.Append(errs, scrapererror.NewPartialScrapeError(res.err, 0)) - fmt.Println("No stats found!") continue } - res.md.ResourceMetrics().CopyTo(md.ResourceMetrics()) + r.recordContainerStats(now, res.container, &res.containerStats) + } + return r.mb.Emit(), errs +} + +func (r *metricsReceiver) recordContainerStats(now pcommon.Timestamp, container container, stats *containerStats) { + r.recordCPUMetrics(now, stats) + r.recordNetworkMetrics(now, stats) + r.recordMemoryMetrics(now, stats) + r.recordIOMetrics(now, stats) + + rb := r.mb.NewResourceBuilder() + rb.SetContainerRuntime("podman") + rb.SetContainerName(stats.Name) + rb.SetContainerID(stats.ContainerID) + rb.SetContainerImageName(container.Image) + + r.mb.EmitForResource(metadata.WithResource(rb.Emit())) +} + +func (r *metricsReceiver) recordCPUMetrics(now pcommon.Timestamp, stats *containerStats) { + r.mb.RecordContainerCPUUsageSystemDataPoint(now, int64(toSecondsWithNanosecondPrecision(stats.CPUSystemNano))) + r.mb.RecordContainerCPUUsageTotalDataPoint(now, int64(toSecondsWithNanosecondPrecision(stats.CPUNano))) + r.mb.RecordContainerCPUPercentDataPoint(now, stats.CPU) + + for i, cpu := range stats.PerCPU { + r.mb.RecordContainerCPUUsagePercpuDataPoint(now, int64(toSecondsWithNanosecondPrecision(cpu)), fmt.Sprintf("cpu%d", i)) } - return md, nil + +} + +func (r *metricsReceiver) recordNetworkMetrics(now pcommon.Timestamp, stats *containerStats) { + r.mb.RecordContainerNetworkIoUsageRxBytesDataPoint(now, int64(stats.NetOutput)) + r.mb.RecordContainerNetworkIoUsageTxBytesDataPoint(now, int64(stats.NetInput)) +} + +func (r *metricsReceiver) recordMemoryMetrics(now pcommon.Timestamp, stats *containerStats) { + r.mb.RecordContainerMemoryUsageTotalDataPoint(now, int64(stats.MemUsage)) + r.mb.RecordContainerMemoryUsageLimitDataPoint(now, int64(stats.MemLimit)) + r.mb.RecordContainerMemoryPercentDataPoint(now, stats.MemPerc) +} + +func (r *metricsReceiver) recordIOMetrics(now pcommon.Timestamp, stats *containerStats) { + r.mb.RecordContainerBlockioIoServiceBytesRecursiveReadDataPoint(now, int64(stats.BlockInput)) + r.mb.RecordContainerBlockioIoServiceBytesRecursiveWriteDataPoint(now, int64(stats.BlockOutput)) +} + +// nanoseconds to seconds conversion truncating the fractional part +func toSecondsWithNanosecondPrecision(nanoseconds uint64) uint64 { + return nanoseconds / 1e9 } diff --git a/receiver/podmanreceiver/receiver_test.go b/receiver/podmanreceiver/receiver_test.go index 4f568149a688..cd08f24bdfda 100644 --- a/receiver/podmanreceiver/receiver_test.go +++ b/receiver/podmanreceiver/receiver_test.go @@ -65,10 +65,11 @@ func TestScraperLoop(t *testing.T) { assert.NotNil(t, r) go func() { + sampleStats := genContainerStats() client <- containerStatsReport{ - Stats: []containerStats{{ - ContainerID: "c1", - }}, + Stats: []containerStats{ + *sampleStats, + }, Error: containerStatsReportError{}, } }() @@ -76,7 +77,9 @@ func TestScraperLoop(t *testing.T) { assert.NoError(t, r.Start(ctx, componenttest.NewNopHost())) md := <-consumer - assert.Equal(t, md.ResourceMetrics().Len(), 1) + assert.Equal(t, 1, md.ResourceMetrics().Len()) + + assertStatsEqualToMetrics(t, genContainerStats(), md) assert.NoError(t, r.Shutdown(ctx)) } @@ -102,7 +105,7 @@ func (c mockClient) ping(context.Context) error { type mockConsumer chan pmetric.Metrics func (c mockClient) list(context.Context, url.Values) ([]container, error) { - return []container{{ID: "c1"}}, nil + return []container{{ID: "c1", Image: "localimage"}}, nil } func (c mockClient) events(context.Context, url.Values) (<-chan event, <-chan error) { diff --git a/receiver/podmanreceiver/metrics_test.go b/receiver/podmanreceiver/record_metrics_test.go similarity index 86% rename from receiver/podmanreceiver/metrics_test.go rename to receiver/podmanreceiver/record_metrics_test.go index 3846efea9d93..a665c0be331d 100644 --- a/receiver/podmanreceiver/metrics_test.go +++ b/receiver/podmanreceiver/record_metrics_test.go @@ -8,17 +8,15 @@ package podmanreceiver import ( "fmt" "testing" - "time" "github.com/stretchr/testify/assert" "go.opentelemetry.io/collector/pdata/pmetric" ) -func TestTranslateStatsToMetrics(t *testing.T) { - ts := time.Now() - stats := genContainerStats() - md := containerStatsToMetrics(ts, container{Image: "localimage"}, stats) - assertStatsEqualToMetrics(t, stats, md) +type point struct { + intVal uint64 + doubleVal float64 + attributes map[string]string } func assertStatsEqualToMetrics(t *testing.T, podmanStats *containerStats, md pmetric.Metrics) { @@ -34,7 +32,7 @@ func assertStatsEqualToMetrics(t *testing.T, podmanStats *containerStats, md pme for k, v := range resourceAttrs { attr, exists := rsm.Resource().Attributes().Get(k) assert.True(t, exists) - assert.Equal(t, attr.Str(), v) + assert.Equal(t, v, attr.Str()) } assert.Equal(t, rsm.ScopeMetrics().Len(), 1) @@ -46,9 +44,9 @@ func assertStatsEqualToMetrics(t *testing.T, podmanStats *containerStats, md pme m := metrics.At(i) switch m.Name() { case "container.memory.usage.limit": - assertMetricEqual(t, m, pmetric.MetricTypeGauge, []point{{intVal: podmanStats.MemLimit}}) + assertMetricEqual(t, m, pmetric.MetricTypeSum, []point{{intVal: podmanStats.MemLimit}}) case "container.memory.usage.total": - assertMetricEqual(t, m, pmetric.MetricTypeGauge, []point{{intVal: podmanStats.MemUsage}}) + assertMetricEqual(t, m, pmetric.MetricTypeSum, []point{{intVal: podmanStats.MemUsage}}) case "container.memory.percent": assertMetricEqual(t, m, pmetric.MetricTypeGauge, []point{{doubleVal: podmanStats.MemPerc}}) case "container.network.io.usage.tx_bytes": @@ -62,15 +60,15 @@ func assertStatsEqualToMetrics(t *testing.T, podmanStats *containerStats, md pme assertMetricEqual(t, m, pmetric.MetricTypeSum, []point{{intVal: podmanStats.BlockInput}}) case "container.cpu.usage.system": - assertMetricEqual(t, m, pmetric.MetricTypeSum, []point{{intVal: podmanStats.CPUSystemNano}}) + assertMetricEqual(t, m, pmetric.MetricTypeSum, []point{{intVal: toSecondsWithNanosecondPrecision(podmanStats.CPUSystemNano)}}) case "container.cpu.usage.total": - assertMetricEqual(t, m, pmetric.MetricTypeSum, []point{{intVal: podmanStats.CPUNano}}) + assertMetricEqual(t, m, pmetric.MetricTypeSum, []point{{intVal: toSecondsWithNanosecondPrecision(podmanStats.CPUNano)}}) case "container.cpu.percent": assertMetricEqual(t, m, pmetric.MetricTypeGauge, []point{{doubleVal: podmanStats.CPU}}) case "container.cpu.usage.percpu": points := make([]point, len(podmanStats.PerCPU)) for i, v := range podmanStats.PerCPU { - points[i] = point{intVal: v, attributes: map[string]string{"core": fmt.Sprintf("cpu%d", i)}} + points[i] = point{intVal: toSecondsWithNanosecondPrecision(v), attributes: map[string]string{"core": fmt.Sprintf("cpu%d", i)}} } assertMetricEqual(t, m, pmetric.MetricTypeSum, points) From 17fe4f8b40e674cded761c3ecd8cd0c7b8555e68 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 14:52:30 +0200 Subject: [PATCH 13/21] Update module github.com/klauspost/compress to v1.17.8 (#32252) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/klauspost/compress](https://togithub.com/klauspost/compress) | `v1.17.7` -> `v1.17.8` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fklauspost%2fcompress/v1.17.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fklauspost%2fcompress/v1.17.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fklauspost%2fcompress/v1.17.7/v1.17.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fklauspost%2fcompress/v1.17.7/v1.17.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes
klauspost/compress (github.com/klauspost/compress) ### [`v1.17.8`](https://togithub.com/klauspost/compress/releases/tag/v1.17.8) [Compare Source](https://togithub.com/klauspost/compress/compare/v1.17.7...v1.17.8) #### What's Changed - zstd: Reject blocks where reserved values are not 0 by [@​klauspost](https://togithub.com/klauspost) in [https://github.com/klauspost/compress/pull/885](https://togithub.com/klauspost/compress/pull/885) - zstd: Add RLE detection+encoding by [@​klauspost](https://togithub.com/klauspost) in [https://github.com/klauspost/compress/pull/938](https://togithub.com/klauspost/compress/pull/938) #### New Contributors - [@​ankon](https://togithub.com/ankon) made their first contribution in [https://github.com/klauspost/compress/pull/932](https://togithub.com/klauspost/compress/pull/932) - [@​kindhuge](https://togithub.com/kindhuge) made their first contribution in [https://github.com/klauspost/compress/pull/946](https://togithub.com/klauspost/compress/pull/946) **Full Changelog**: https://github.com/klauspost/compress/compare/v1.17.7...v1.17.8
--- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- cmd/configschema/go.mod | 2 +- cmd/configschema/go.sum | 4 ++-- cmd/otelcontribcol/go.mod | 2 +- cmd/otelcontribcol/go.sum | 4 ++-- cmd/oteltestbedcol/go.mod | 2 +- cmd/oteltestbedcol/go.sum | 4 ++-- exporter/fileexporter/go.mod | 2 +- exporter/fileexporter/go.sum | 4 ++-- exporter/sapmexporter/go.mod | 2 +- exporter/sapmexporter/go.sum | 4 ++-- go.mod | 2 +- go.sum | 4 ++-- receiver/sapmreceiver/go.mod | 2 +- receiver/sapmreceiver/go.sum | 4 ++-- testbed/go.mod | 2 +- testbed/go.sum | 4 ++-- 16 files changed, 24 insertions(+), 24 deletions(-) diff --git a/cmd/configschema/go.mod b/cmd/configschema/go.mod index 2119734bb344..317e6bf08249 100644 --- a/cmd/configschema/go.mod +++ b/cmd/configschema/go.mod @@ -430,7 +430,7 @@ require ( github.com/json-iterator/go v1.1.12 // indirect github.com/julienschmidt/httprouter v1.3.0 // indirect github.com/karrick/godirwalk v1.17.0 // indirect - github.com/klauspost/compress v1.17.7 // indirect + github.com/klauspost/compress v1.17.8 // indirect github.com/klauspost/cpuid/v2 v2.2.5 // indirect github.com/knadh/koanf/maps v0.1.1 // indirect github.com/knadh/koanf/providers/confmap v0.1.0 // indirect diff --git a/cmd/configschema/go.sum b/cmd/configschema/go.sum index d30504dd78a4..a29830c8993b 100644 --- a/cmd/configschema/go.sum +++ b/cmd/configschema/go.sum @@ -1082,8 +1082,8 @@ github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/compress v1.10.8/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU= +github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/knadh/koanf/maps v0.1.1 h1:G5TjmUh2D7G2YWf5SQQqSiHRJEjaicvU0KpypqB3NIs= diff --git a/cmd/otelcontribcol/go.mod b/cmd/otelcontribcol/go.mod index 2128901e0625..5eda54ca9112 100644 --- a/cmd/otelcontribcol/go.mod +++ b/cmd/otelcontribcol/go.mod @@ -487,7 +487,7 @@ require ( github.com/json-iterator/go v1.1.12 // indirect github.com/julienschmidt/httprouter v1.3.0 // indirect github.com/karrick/godirwalk v1.17.0 // indirect - github.com/klauspost/compress v1.17.7 // indirect + github.com/klauspost/compress v1.17.8 // indirect github.com/klauspost/cpuid/v2 v2.2.5 // indirect github.com/knadh/koanf/maps v0.1.1 // indirect github.com/knadh/koanf/providers/confmap v0.1.0 // indirect diff --git a/cmd/otelcontribcol/go.sum b/cmd/otelcontribcol/go.sum index 1b624441be68..94bd4de01d48 100644 --- a/cmd/otelcontribcol/go.sum +++ b/cmd/otelcontribcol/go.sum @@ -1078,8 +1078,8 @@ github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/compress v1.10.8/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU= +github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/knadh/koanf/maps v0.1.1 h1:G5TjmUh2D7G2YWf5SQQqSiHRJEjaicvU0KpypqB3NIs= diff --git a/cmd/oteltestbedcol/go.mod b/cmd/oteltestbedcol/go.mod index 72f73a1a78eb..e2fc29596ddf 100644 --- a/cmd/oteltestbedcol/go.mod +++ b/cmd/oteltestbedcol/go.mod @@ -144,7 +144,7 @@ require ( github.com/josharian/intern v1.0.0 // indirect github.com/jpillora/backoff v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect - github.com/klauspost/compress v1.17.7 // indirect + github.com/klauspost/compress v1.17.8 // indirect github.com/knadh/koanf/maps v0.1.1 // indirect github.com/knadh/koanf/providers/confmap v0.1.0 // indirect github.com/knadh/koanf/v2 v2.1.0 // indirect diff --git a/cmd/oteltestbedcol/go.sum b/cmd/oteltestbedcol/go.sum index 12a3ae814715..e6c5cfb918ae 100644 --- a/cmd/oteltestbedcol/go.sum +++ b/cmd/oteltestbedcol/go.sum @@ -419,8 +419,8 @@ github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7V github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU= +github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/knadh/koanf/maps v0.1.1 h1:G5TjmUh2D7G2YWf5SQQqSiHRJEjaicvU0KpypqB3NIs= github.com/knadh/koanf/maps v0.1.1/go.mod h1:npD/QZY3V6ghQDdcQzl1W4ICNVTkohC8E73eI2xW4yI= github.com/knadh/koanf/providers/confmap v0.1.0 h1:gOkxhHkemwG4LezxxN8DMOFopOPghxRVp7JbIvdvqzU= diff --git a/exporter/fileexporter/go.mod b/exporter/fileexporter/go.mod index 9b9d465c69a2..8dcb1751415b 100644 --- a/exporter/fileexporter/go.mod +++ b/exporter/fileexporter/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/hashicorp/golang-lru/v2 v2.0.7 - github.com/klauspost/compress v1.17.7 + github.com/klauspost/compress v1.17.8 github.com/open-telemetry/opentelemetry-collector-contrib/extension/encoding/otlpencodingextension v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent v0.97.0 diff --git a/exporter/fileexporter/go.sum b/exporter/fileexporter/go.sum index 1f7bc4ecd673..fc2000c06f05 100644 --- a/exporter/fileexporter/go.sum +++ b/exporter/fileexporter/go.sum @@ -32,8 +32,8 @@ github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnr github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU= +github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/knadh/koanf/maps v0.1.1 h1:G5TjmUh2D7G2YWf5SQQqSiHRJEjaicvU0KpypqB3NIs= github.com/knadh/koanf/maps v0.1.1/go.mod h1:npD/QZY3V6ghQDdcQzl1W4ICNVTkohC8E73eI2xW4yI= github.com/knadh/koanf/providers/confmap v0.1.0 h1:gOkxhHkemwG4LezxxN8DMOFopOPghxRVp7JbIvdvqzU= diff --git a/exporter/sapmexporter/go.mod b/exporter/sapmexporter/go.mod index 74309ec4645d..a6cddfb9f073 100644 --- a/exporter/sapmexporter/go.mod +++ b/exporter/sapmexporter/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/cenkalti/backoff/v4 v4.3.0 github.com/jaegertracing/jaeger v1.55.0 - github.com/klauspost/compress v1.17.7 + github.com/klauspost/compress v1.17.8 github.com/open-telemetry/opentelemetry-collector-contrib/internal/splunk v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/batchperresourceattr v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.97.0 diff --git a/exporter/sapmexporter/go.sum b/exporter/sapmexporter/go.sum index c6c0ba98a52c..7e0844efab66 100644 --- a/exporter/sapmexporter/go.sum +++ b/exporter/sapmexporter/go.sum @@ -66,8 +66,8 @@ github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnr github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU= +github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/knadh/koanf/maps v0.1.1 h1:G5TjmUh2D7G2YWf5SQQqSiHRJEjaicvU0KpypqB3NIs= github.com/knadh/koanf/maps v0.1.1/go.mod h1:npD/QZY3V6ghQDdcQzl1W4ICNVTkohC8E73eI2xW4yI= github.com/knadh/koanf/providers/confmap v0.1.0 h1:gOkxhHkemwG4LezxxN8DMOFopOPghxRVp7JbIvdvqzU= diff --git a/go.mod b/go.mod index 0bd8891ae1c1..c10b9ef3c851 100644 --- a/go.mod +++ b/go.mod @@ -453,7 +453,7 @@ require ( github.com/json-iterator/go v1.1.12 // indirect github.com/julienschmidt/httprouter v1.3.0 // indirect github.com/karrick/godirwalk v1.17.0 // indirect - github.com/klauspost/compress v1.17.7 // indirect + github.com/klauspost/compress v1.17.8 // indirect github.com/klauspost/cpuid/v2 v2.2.5 // indirect github.com/knadh/koanf/maps v0.1.1 // indirect github.com/knadh/koanf/providers/confmap v0.1.0 // indirect diff --git a/go.sum b/go.sum index e3360b972aea..dc47dc45dd39 100644 --- a/go.sum +++ b/go.sum @@ -1083,8 +1083,8 @@ github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/compress v1.10.8/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU= +github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/knadh/koanf/maps v0.1.1 h1:G5TjmUh2D7G2YWf5SQQqSiHRJEjaicvU0KpypqB3NIs= diff --git a/receiver/sapmreceiver/go.mod b/receiver/sapmreceiver/go.mod index e1434fa4cf11..3117332356d7 100644 --- a/receiver/sapmreceiver/go.mod +++ b/receiver/sapmreceiver/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/gorilla/mux v1.8.1 github.com/jaegertracing/jaeger v1.55.0 - github.com/klauspost/compress v1.17.7 + github.com/klauspost/compress v1.17.8 github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/splunk v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.97.0 diff --git a/receiver/sapmreceiver/go.sum b/receiver/sapmreceiver/go.sum index b603a4e59e17..4045672e30cb 100644 --- a/receiver/sapmreceiver/go.sum +++ b/receiver/sapmreceiver/go.sum @@ -44,8 +44,8 @@ github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnr github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU= +github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/knadh/koanf/maps v0.1.1 h1:G5TjmUh2D7G2YWf5SQQqSiHRJEjaicvU0KpypqB3NIs= github.com/knadh/koanf/maps v0.1.1/go.mod h1:npD/QZY3V6ghQDdcQzl1W4ICNVTkohC8E73eI2xW4yI= github.com/knadh/koanf/providers/confmap v0.1.0 h1:gOkxhHkemwG4LezxxN8DMOFopOPghxRVp7JbIvdvqzU= diff --git a/testbed/go.mod b/testbed/go.mod index 658a56224c5e..a10a11dd6003 100644 --- a/testbed/go.mod +++ b/testbed/go.mod @@ -155,7 +155,7 @@ require ( github.com/josharian/intern v1.0.0 // indirect github.com/jpillora/backoff v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect - github.com/klauspost/compress v1.17.7 // indirect + github.com/klauspost/compress v1.17.8 // indirect github.com/knadh/koanf/maps v0.1.1 // indirect github.com/knadh/koanf/providers/confmap v0.1.0 // indirect github.com/knadh/koanf/v2 v2.1.0 // indirect diff --git a/testbed/go.sum b/testbed/go.sum index 6f5ac33377b9..9eab2f9288f1 100644 --- a/testbed/go.sum +++ b/testbed/go.sum @@ -402,8 +402,8 @@ github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8 github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU= +github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/knadh/koanf/maps v0.1.1 h1:G5TjmUh2D7G2YWf5SQQqSiHRJEjaicvU0KpypqB3NIs= github.com/knadh/koanf/maps v0.1.1/go.mod h1:npD/QZY3V6ghQDdcQzl1W4ICNVTkohC8E73eI2xW4yI= github.com/knadh/koanf/providers/confmap v0.1.0 h1:gOkxhHkemwG4LezxxN8DMOFopOPghxRVp7JbIvdvqzU= From 13fca794d57a15e68b41b95ea8df64ff7564f04d Mon Sep 17 00:00:00 2001 From: George Krajcsovits Date: Tue, 9 Apr 2024 14:59:30 +0200 Subject: [PATCH 14/21] [receiver/prometheusreceiver] implement append native histogram (#28663) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description:** Implement native histogram append MVP. Very similar to appending a float sample. Limitations: - Only support integer counter histograms fully. - In case a histogram has both classic and native buckets, we only store one of them. Governed by scrape_classic_histograms scrape option. The reason is that in the OTEL model the metric family is identified by the normalized name (without _count, _sum, _bucket suffixes for the classic histograms), meaning that the classic and native histograms would map to the same metric family in OTEL model , but that cannot have both Histogram and ExponentialHistogram types at the same time. - Gauge histograms are dropped with warning as that temporality is unsupported, see https://github.com/open-telemetry/opentelemetry-specification/issues/2714 - NoRecordedValue attribute might be unreliable. Prometheus scrape marks all series with float NaN values when stale, but transactions in prometheusreceiver are stateless, meaning that we have to use heuristics to figure out if we need to add a NoRecordedValue data point to an Exponential Histogram metric. (Need work in Prometheus.) Additionally: - Created timestamp supported. - Float counter histograms not fully tested and lose precision, but we don't expect instrumentation to expose these anyway. **Link to tracking Issue:** Fixes: #26555 **Testing:** Added unit tests and e2e tests. **Documentation:** TBD: will have to call out protobuf negotiation while no text format. #27030 --------- Signed-off-by: György Krajcsovits Co-authored-by: David Ashpole --- ...theusreceiver-append-native-histogram.yaml | 36 ++ receiver/prometheusreceiver/README.md | 23 +- receiver/prometheusreceiver/factory.go | 8 + .../prometheusreceiver/internal/appendable.go | 33 +- .../internal/metricfamily.go | 163 ++++++- .../internal/metricfamily_test.go | 194 ++++++++ .../internal/metrics_adjuster.go | 61 ++- .../internal/metrics_adjuster_test.go | 70 ++- .../internal/metricsutil_test.go | 93 ++++ .../internal/starttimemetricadjuster.go | 9 +- .../internal/starttimemetricadjuster_test.go | 9 +- .../internal/transaction.go | 157 ++++-- .../internal/transaction_test.go | 359 ++++++++++++-- .../prometheusreceiver/metrics_receiver.go | 8 + .../metrics_receiver_helper_test.go | 43 +- .../metrics_receiver_protobuf_test.go | 454 ++++++++++++++++++ 16 files changed, 1618 insertions(+), 102 deletions(-) create mode 100644 .chloggen/prometheusreceiver-append-native-histogram.yaml diff --git a/.chloggen/prometheusreceiver-append-native-histogram.yaml b/.chloggen/prometheusreceiver-append-native-histogram.yaml new file mode 100644 index 000000000000..34fb9ea34dec --- /dev/null +++ b/.chloggen/prometheusreceiver-append-native-histogram.yaml @@ -0,0 +1,36 @@ +# Use this changelog template to create an entry for release notes. + +# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' +change_type: enhancement + +# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver) +component: prometheusreceiver + +# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). +note: Allows receiving prometheus native histograms + +# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists. +issues: [26555] + +# (Optional) One or more lines of additional information to render under the primary note. +# These lines will be padded with 2 spaces and then inserted directly into the document. +# Use pipe (|) for multiline entries. +subtext: | + - Native histograms are compatible with OTEL exponential histograms. + - The feature can be enabled via the feature gate `receiver.prometheusreceiver.EnableNativeHistograms`. + Run the collector with the command line option `--feature-gates=receiver.prometheusreceiver.EnableNativeHistograms`. + - Currently the feature also requires that targets are scraped via the ProtoBuf format. + To start scraping native histograms, set + `config.global.scrape_protocols` to `[ PrometheusProto, OpenMetricsText1.0.0, OpenMetricsText0.0.1, PrometheusText0.0.4 ]` in the + receiver configuration. This requirement will be lifted once Prometheus can scrape native histograms over text formats. + - For more up to date information see the README.md file of the receiver at + https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/receiver/prometheusreceiver/README.md#prometheus-native-histograms. + +# If your change doesn't affect end users or the exported elements of any package, +# you should instead start your pull request title with [chore] or use the "Skip Changelog" label. +# Optional: The change log or logs in which this entry should be included. +# e.g. '[user]' or '[user, api]' +# Include 'user' if the change is relevant to end users. +# Include 'api' if there is a change to a library API. +# Default: '[user]' +change_logs: [] diff --git a/receiver/prometheusreceiver/README.md b/receiver/prometheusreceiver/README.md index 7eb086fb4c9e..9b2f1f844eab 100644 --- a/receiver/prometheusreceiver/README.md +++ b/receiver/prometheusreceiver/README.md @@ -67,6 +67,12 @@ prometheus --config.file=prom.yaml "--feature-gates=receiver.prometheusreceiver.UseCreatedMetric" ``` +- `receiver.prometheusreceiver.EnableNativeHistograms`: process and turn native histogram metrics into OpenTelemetry exponential histograms. For more details consult the [Prometheus native histograms](#prometheus-native-histograms) section. + +```shell +"--feature-gates=receiver.prometheusreceiver.EnableNativeHistograms" +``` + - `report_extra_scrape_metrics`: Extra Prometheus scrape metrics can be reported by setting this parameter to `true` You can copy and paste that same configuration under: @@ -123,7 +129,22 @@ receivers: - targets: ['0.0.0.0:8888'] ``` -## OpenTelemetry Operator +## Prometheus native histograms + +Native histograms are an experimental [feature](https://prometheus.io/docs/prometheus/latest/feature_flags/#native-histograms) of Prometheus. + +To start scraping native histograms, set `config.global.scrape_protocols` to `[ PrometheusProto, OpenMetricsText1.0.0, OpenMetricsText0.0.1, PrometheusText0.0.4 ]` +in the receiver configuration. This requirement will be lifted once Prometheus can scrape native histograms over text formats. + +To enable converting native histograms to OpenTelemetry exponential histograms, enable the feature gate `receiver.prometheusreceiver.EnableNativeHistograms`. +The feature is considered experimental. + +This feature applies to the most common integer counter histograms, gauge histograms are dropped. +In case a metric has both the conventional (aka classic) buckets and also native histogram buckets, only the native histogram buckets will be +taken into account to create the corresponding exponential histogram. To scrape the classic buckets instead use the +[scrape option](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#scrape_config) `scrape_classic_histograms`. + +## OpenTelemetry Operator Additional to this static job definitions this receiver allows to query a list of jobs from the OpenTelemetryOperators TargetAllocator or a compatible endpoint. diff --git a/receiver/prometheusreceiver/factory.go b/receiver/prometheusreceiver/factory.go index 91eba1919a9b..e3717e15aa3c 100644 --- a/receiver/prometheusreceiver/factory.go +++ b/receiver/prometheusreceiver/factory.go @@ -25,6 +25,14 @@ var useCreatedMetricGate = featuregate.GlobalRegistry().MustRegister( " retrieve the start time for Summary, Histogram and Sum metrics from _created metric"), ) +var enableNativeHistogramsGate = featuregate.GlobalRegistry().MustRegister( + "receiver.prometheusreceiver.EnableNativeHistograms", + featuregate.StageAlpha, + featuregate.WithRegisterDescription("When enabled, the Prometheus receiver will convert"+ + " Prometheus native histograms to OTEL exponential histograms and ignore"+ + " those Prometheus classic histograms that have a native histogram alternative"), +) + // NewFactory creates a new Prometheus receiver factory. func NewFactory() receiver.Factory { return receiver.NewFactory( diff --git a/receiver/prometheusreceiver/internal/appendable.go b/receiver/prometheusreceiver/internal/appendable.go index 33acfa4608cc..2be6e408a8de 100644 --- a/receiver/prometheusreceiver/internal/appendable.go +++ b/receiver/prometheusreceiver/internal/appendable.go @@ -17,12 +17,13 @@ import ( // appendable translates Prometheus scraping diffs into OpenTelemetry format. type appendable struct { - sink consumer.Metrics - metricAdjuster MetricsAdjuster - useStartTimeMetric bool - trimSuffixes bool - startTimeMetricRegex *regexp.Regexp - externalLabels labels.Labels + sink consumer.Metrics + metricAdjuster MetricsAdjuster + useStartTimeMetric bool + enableNativeHistograms bool + trimSuffixes bool + startTimeMetricRegex *regexp.Regexp + externalLabels labels.Labels settings receiver.CreateSettings obsrecv *receiverhelper.ObsReport @@ -36,6 +37,7 @@ func NewAppendable( useStartTimeMetric bool, startTimeMetricRegex *regexp.Regexp, useCreatedMetric bool, + enableNativeHistograms bool, externalLabels labels.Labels, trimSuffixes bool) (storage.Appendable, error) { var metricAdjuster MetricsAdjuster @@ -51,17 +53,18 @@ func NewAppendable( } return &appendable{ - sink: sink, - settings: set, - metricAdjuster: metricAdjuster, - useStartTimeMetric: useStartTimeMetric, - startTimeMetricRegex: startTimeMetricRegex, - externalLabels: externalLabels, - obsrecv: obsrecv, - trimSuffixes: trimSuffixes, + sink: sink, + settings: set, + metricAdjuster: metricAdjuster, + useStartTimeMetric: useStartTimeMetric, + enableNativeHistograms: enableNativeHistograms, + startTimeMetricRegex: startTimeMetricRegex, + externalLabels: externalLabels, + obsrecv: obsrecv, + trimSuffixes: trimSuffixes, }, nil } func (o *appendable) Appender(ctx context.Context) storage.Appender { - return newTransaction(ctx, o.metricAdjuster, o.sink, o.externalLabels, o.settings, o.obsrecv, o.trimSuffixes) + return newTransaction(ctx, o.metricAdjuster, o.sink, o.externalLabels, o.settings, o.obsrecv, o.trimSuffixes, o.enableNativeHistograms) } diff --git a/receiver/prometheusreceiver/internal/metricfamily.go b/receiver/prometheusreceiver/internal/metricfamily.go index 63ff895d4e26..ba87700d0442 100644 --- a/receiver/prometheusreceiver/internal/metricfamily.go +++ b/receiver/prometheusreceiver/internal/metricfamily.go @@ -11,6 +11,7 @@ import ( "strings" "github.com/prometheus/prometheus/model/exemplar" + "github.com/prometheus/prometheus/model/histogram" "github.com/prometheus/prometheus/model/labels" "github.com/prometheus/prometheus/model/value" "github.com/prometheus/prometheus/scrape" @@ -49,6 +50,8 @@ type metricGroup struct { hasSum bool created float64 value float64 + hValue *histogram.Histogram + fhValue *histogram.FloatHistogram complexValue []*dataPoint exemplars pmetric.ExemplarSlice } @@ -156,6 +159,118 @@ func (mg *metricGroup) toDistributionPoint(dest pmetric.HistogramDataPointSlice) mg.setExemplars(point.Exemplars()) } +// toExponentialHistogramDataPoints is based on +// https://opentelemetry.io/docs/specs/otel/compatibility/prometheus_and_openmetrics/#exponential-histograms +func (mg *metricGroup) toExponentialHistogramDataPoints(dest pmetric.ExponentialHistogramDataPointSlice) { + if !mg.hasCount { + return + } + point := dest.AppendEmpty() + point.SetTimestamp(timestampFromMs(mg.ts)) + + // We do not set Min or Max as native histograms don't have that information. + switch { + case mg.fhValue != nil: + fh := mg.fhValue + + if value.IsStaleNaN(fh.Sum) { + point.SetFlags(pmetric.DefaultDataPointFlags.WithNoRecordedValue(true)) + // The count and sum are initialized to 0, so we don't need to set them. + } else { + point.SetScale(fh.Schema) + // Input is a float native histogram. This conversion will lose + // precision,but we don't actually expect float histograms in scrape, + // since these are typically the result of operations on integer + // native histograms in the database. + point.SetCount(uint64(fh.Count)) + point.SetSum(fh.Sum) + point.SetZeroThreshold(fh.ZeroThreshold) + point.SetZeroCount(uint64(fh.ZeroCount)) + + if len(fh.PositiveSpans) > 0 { + point.Positive().SetOffset(fh.PositiveSpans[0].Offset - 1) // -1 because OTEL offset are for the lower bound, not the upper bound + convertAbsoluteBuckets(fh.PositiveSpans, fh.PositiveBuckets, point.Positive().BucketCounts()) + } + if len(fh.NegativeSpans) > 0 { + point.Negative().SetOffset(fh.NegativeSpans[0].Offset - 1) // -1 because OTEL offset are for the lower bound, not the upper bound + convertAbsoluteBuckets(fh.NegativeSpans, fh.NegativeBuckets, point.Negative().BucketCounts()) + } + } + + case mg.hValue != nil: + h := mg.hValue + + if value.IsStaleNaN(h.Sum) { + point.SetFlags(pmetric.DefaultDataPointFlags.WithNoRecordedValue(true)) + // The count and sum are initialized to 0, so we don't need to set them. + } else { + point.SetScale(h.Schema) + point.SetCount(h.Count) + point.SetSum(h.Sum) + point.SetZeroThreshold(h.ZeroThreshold) + point.SetZeroCount(h.ZeroCount) + + if len(h.PositiveSpans) > 0 { + point.Positive().SetOffset(h.PositiveSpans[0].Offset - 1) // -1 because OTEL offset are for the lower bound, not the upper bound + convertDeltaBuckets(h.PositiveSpans, h.PositiveBuckets, point.Positive().BucketCounts()) + } + if len(h.NegativeSpans) > 0 { + point.Negative().SetOffset(h.NegativeSpans[0].Offset - 1) // -1 because OTEL offset are for the lower bound, not the upper bound + convertDeltaBuckets(h.NegativeSpans, h.NegativeBuckets, point.Negative().BucketCounts()) + } + } + + default: + // This should never happen. + return + } + + tsNanos := timestampFromMs(mg.ts) + if mg.created != 0 { + point.SetStartTimestamp(timestampFromFloat64(mg.created)) + } else { + // metrics_adjuster adjusts the startTimestamp to the initial scrape timestamp + point.SetStartTimestamp(tsNanos) + } + point.SetTimestamp(tsNanos) + populateAttributes(pmetric.MetricTypeHistogram, mg.ls, point.Attributes()) + mg.setExemplars(point.Exemplars()) +} + +func convertDeltaBuckets(spans []histogram.Span, deltas []int64, buckets pcommon.UInt64Slice) { + buckets.EnsureCapacity(len(deltas)) + bucketIdx := 0 + bucketCount := int64(0) + for spanIdx, span := range spans { + if spanIdx > 0 { + for i := int32(0); i < span.Offset; i++ { + buckets.Append(uint64(0)) + } + } + for i := uint32(0); i < span.Length; i++ { + bucketCount += deltas[bucketIdx] + bucketIdx++ + buckets.Append(uint64(bucketCount)) + } + } +} + +func convertAbsoluteBuckets(spans []histogram.Span, counts []float64, buckets pcommon.UInt64Slice) { + buckets.EnsureCapacity(len(counts)) + bucketIdx := 0 + for spanIdx, span := range spans { + if spanIdx > 0 { + for i := int32(0); i < span.Offset; i++ { + buckets.Append(uint64(0)) + } + } + for i := uint32(0); i < span.Length; i++ { + buckets.Append(uint64(counts[bucketIdx])) + bucketIdx++ + } + } +} + func (mg *metricGroup) setExemplars(exemplars pmetric.ExemplarSlice) { if mg == nil { return @@ -296,13 +411,17 @@ func (mf *metricFamily) addSeries(seriesRef uint64, metricName string, ls labels } mg.complexValue = append(mg.complexValue, &dataPoint{value: v, boundary: boundary}) } + case pmetric.MetricTypeExponentialHistogram: + if metricName == mf.metadata.Metric+metricSuffixCreated { + mg.created = v + } case pmetric.MetricTypeSum: if metricName == mf.metadata.Metric+metricSuffixCreated { mg.created = v } else { mg.value = v } - case pmetric.MetricTypeEmpty, pmetric.MetricTypeGauge, pmetric.MetricTypeExponentialHistogram: + case pmetric.MetricTypeEmpty, pmetric.MetricTypeGauge: fallthrough default: mg.value = v @@ -311,6 +430,37 @@ func (mf *metricFamily) addSeries(seriesRef uint64, metricName string, ls labels return nil } +func (mf *metricFamily) addExponentialHistogramSeries(seriesRef uint64, metricName string, ls labels.Labels, t int64, h *histogram.Histogram, fh *histogram.FloatHistogram) error { + mg := mf.loadMetricGroupOrCreate(seriesRef, ls, t) + if mg.ts != t { + return fmt.Errorf("inconsistent timestamps on metric points for metric %v", metricName) + } + if mg.mtype != pmetric.MetricTypeExponentialHistogram { + return fmt.Errorf("metric type mismatch for exponential histogram metric %v type %s", metricName, mg.mtype.String()) + } + switch { + case fh != nil: + if mg.hValue != nil { + return fmt.Errorf("exponential histogram %v already has float counts", metricName) + } + mg.count = fh.Count + mg.sum = fh.Sum + mg.hasCount = true + mg.hasSum = true + mg.fhValue = fh + case h != nil: + if mg.fhValue != nil { + return fmt.Errorf("exponential histogram %v already has integer counts", metricName) + } + mg.count = float64(h.Count) + mg.sum = h.Sum + mg.hasCount = true + mg.hasSum = true + mg.hValue = h + } + return nil +} + func (mf *metricFamily) appendMetric(metrics pmetric.MetricSlice, trimSuffixes bool) { metric := pmetric.NewMetric() // Trims type and unit suffixes from metric name @@ -352,7 +502,16 @@ func (mf *metricFamily) appendMetric(metrics pmetric.MetricSlice, trimSuffixes b } pointCount = sdpL.Len() - case pmetric.MetricTypeEmpty, pmetric.MetricTypeGauge, pmetric.MetricTypeExponentialHistogram: + case pmetric.MetricTypeExponentialHistogram: + histogram := metric.SetEmptyExponentialHistogram() + histogram.SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) + hdpL := histogram.DataPoints() + for _, mg := range mf.groupOrders { + mg.toExponentialHistogramDataPoints(hdpL) + } + pointCount = hdpL.Len() + + case pmetric.MetricTypeEmpty, pmetric.MetricTypeGauge: fallthrough default: // Everything else should be set to a Gauge. gauge := metric.SetEmptyGauge() diff --git a/receiver/prometheusreceiver/internal/metricfamily_test.go b/receiver/prometheusreceiver/internal/metricfamily_test.go index 7b37d1c6c51b..586be1992912 100644 --- a/receiver/prometheusreceiver/internal/metricfamily_test.go +++ b/receiver/prometheusreceiver/internal/metricfamily_test.go @@ -9,6 +9,7 @@ import ( "time" "github.com/prometheus/common/model" + "github.com/prometheus/prometheus/model/histogram" "github.com/prometheus/prometheus/model/labels" "github.com/prometheus/prometheus/model/value" "github.com/prometheus/prometheus/scrape" @@ -293,6 +294,199 @@ func TestMetricGroupData_toDistributionUnitTest(t *testing.T) { } } +func TestMetricGroupData_toExponentialDistributionUnitTest(t *testing.T) { + type scrape struct { + at int64 + metric string + extraLabel labels.Label + + // Only one kind of value should be set. + value float64 + integerHistogram *histogram.Histogram + floatHistogram *histogram.FloatHistogram // TODO: add tests for float histograms. + } + tests := []struct { + name string + metricName string + labels labels.Labels + scrapes []*scrape + want func() pmetric.ExponentialHistogramDataPoint + wantErr bool + intervalStartTimeMs int64 + }{ + { + name: "integer histogram with startTimestamp", + metricName: "request_duration_seconds", + intervalStartTimeMs: 11, + labels: labels.FromMap(map[string]string{"a": "A", "b": "B"}), + scrapes: []*scrape{ + { + at: 11, + metric: "request_duration_seconds", + integerHistogram: &histogram.Histogram{ + CounterResetHint: histogram.UnknownCounterReset, + Schema: 1, + ZeroThreshold: 0.42, + ZeroCount: 1, + Count: 66, + Sum: 1004.78, + PositiveSpans: []histogram.Span{{Offset: 1, Length: 2}, {Offset: 3, Length: 1}}, + PositiveBuckets: []int64{33, -30, 26}, // Delta encoded counts: 33, 3=(33-30), 30=(3+27) -> 65 + NegativeSpans: []histogram.Span{{Offset: 0, Length: 1}}, + NegativeBuckets: []int64{1}, // Delta encoded counts: 1 + }, + }, + }, + want: func() pmetric.ExponentialHistogramDataPoint { + point := pmetric.NewExponentialHistogramDataPoint() + point.SetCount(66) + point.SetSum(1004.78) + point.SetTimestamp(pcommon.Timestamp(11 * time.Millisecond)) // the time in milliseconds -> nanoseconds. + point.SetStartTimestamp(pcommon.Timestamp(11 * time.Millisecond)) // the time in milliseconds -> nanoseconds. + point.SetScale(1) + point.SetZeroThreshold(0.42) + point.SetZeroCount(1) + point.Positive().SetOffset(0) + point.Positive().BucketCounts().FromRaw([]uint64{33, 3, 0, 0, 0, 29}) + point.Negative().SetOffset(-1) + point.Negative().BucketCounts().FromRaw([]uint64{1}) + attributes := point.Attributes() + attributes.PutStr("a", "A") + attributes.PutStr("b", "B") + return point + }, + }, + { + name: "integer histogram with startTimestamp from _created", + metricName: "request_duration_seconds", + intervalStartTimeMs: 11, + labels: labels.FromMap(map[string]string{"a": "A"}), + scrapes: []*scrape{ + { + at: 11, + metric: "request_duration_seconds", + integerHistogram: &histogram.Histogram{ + CounterResetHint: histogram.UnknownCounterReset, + Schema: 1, + ZeroThreshold: 0.42, + ZeroCount: 1, + Count: 66, + Sum: 1004.78, + PositiveSpans: []histogram.Span{{Offset: 1, Length: 2}, {Offset: 3, Length: 1}}, + PositiveBuckets: []int64{33, -30, 26}, // Delta encoded counts: 33, 3=(33-30), 30=(3+27) -> 65 + NegativeSpans: []histogram.Span{{Offset: 0, Length: 1}}, + NegativeBuckets: []int64{1}, // Delta encoded counts: 1 + }, + }, + { + at: 11, + metric: "request_duration_seconds_created", + value: 600.78, + }, + }, + want: func() pmetric.ExponentialHistogramDataPoint { + point := pmetric.NewExponentialHistogramDataPoint() + point.SetCount(66) + point.SetSum(1004.78) + point.SetTimestamp(pcommon.Timestamp(11 * time.Millisecond)) // the time in milliseconds -> nanoseconds. + point.SetStartTimestamp(timestampFromFloat64(600.78)) // the time in milliseconds -> nanoseconds. + point.SetScale(1) + point.SetZeroThreshold(0.42) + point.SetZeroCount(1) + point.Positive().SetOffset(0) + point.Positive().BucketCounts().FromRaw([]uint64{33, 3, 0, 0, 0, 29}) + point.Negative().SetOffset(-1) + point.Negative().BucketCounts().FromRaw([]uint64{1}) + attributes := point.Attributes() + attributes.PutStr("a", "A") + return point + }, + }, + { + name: "integer histogram that is stale", + metricName: "request_duration_seconds", + intervalStartTimeMs: 11, + labels: labels.FromMap(map[string]string{"a": "A", "b": "B"}), + scrapes: []*scrape{ + { + at: 11, + metric: "request_duration_seconds", + integerHistogram: &histogram.Histogram{ + Sum: math.Float64frombits(value.StaleNaN), + }, + }, + }, + want: func() pmetric.ExponentialHistogramDataPoint { + point := pmetric.NewExponentialHistogramDataPoint() + point.SetTimestamp(pcommon.Timestamp(11 * time.Millisecond)) // the time in milliseconds -> nanoseconds. + point.SetFlags(pmetric.DefaultDataPointFlags.WithNoRecordedValue(true)) + point.SetStartTimestamp(pcommon.Timestamp(11 * time.Millisecond)) // the time in milliseconds -> nanoseconds. + attributes := point.Attributes() + attributes.PutStr("a", "A") + attributes.PutStr("b", "B") + return point + }, + }, + } + + for _, tt := range tests { + tt := tt + t.Run(tt.name, func(t *testing.T) { + mp := newMetricFamily(tt.metricName, mc, zap.NewNop()) + for i, tv := range tt.scrapes { + var lbls labels.Labels + if tv.extraLabel.Name != "" { + lbls = labels.NewBuilder(tt.labels).Set(tv.extraLabel.Name, tv.extraLabel.Value).Labels() + } else { + lbls = tt.labels.Copy() + } + + var err error + switch { + case tv.integerHistogram != nil: + mp.mtype = pmetric.MetricTypeExponentialHistogram + sRef, _ := getSeriesRef(nil, lbls, mp.mtype) + err = mp.addExponentialHistogramSeries(sRef, tv.metric, lbls, tv.at, tv.integerHistogram, nil) + case tv.floatHistogram != nil: + mp.mtype = pmetric.MetricTypeExponentialHistogram + sRef, _ := getSeriesRef(nil, lbls, mp.mtype) + err = mp.addExponentialHistogramSeries(sRef, tv.metric, lbls, tv.at, nil, tv.floatHistogram) + default: + sRef, _ := getSeriesRef(nil, lbls, mp.mtype) + err = mp.addSeries(sRef, tv.metric, lbls, tv.at, tv.value) + } + if tt.wantErr { + if i != 0 { + require.Error(t, err) + } + } else { + require.NoError(t, err) + } + } + if tt.wantErr { + // Don't check the result if we got an error + return + } + + require.Len(t, mp.groups, 1) + + sl := pmetric.NewMetricSlice() + mp.appendMetric(sl, false) + + require.Equal(t, 1, sl.Len(), "Exactly one metric expected") + metric := sl.At(0) + require.Equal(t, mc[tt.metricName].Help, metric.Description(), "Expected help metadata in metric description") + require.Equal(t, mc[tt.metricName].Unit, metric.Unit(), "Expected unit metadata in metric") + + hdpL := metric.ExponentialHistogram().DataPoints() + require.Equal(t, 1, hdpL.Len(), "Exactly one point expected") + got := hdpL.At(0) + want := tt.want() + require.Equal(t, want, got, "Expected the points to be equal") + }) + } +} + func TestMetricGroupData_toSummaryUnitTest(t *testing.T) { type scrape struct { at int64 diff --git a/receiver/prometheusreceiver/internal/metrics_adjuster.go b/receiver/prometheusreceiver/internal/metrics_adjuster.go index ab03810b57fd..26825fd6ae54 100644 --- a/receiver/prometheusreceiver/internal/metrics_adjuster.go +++ b/receiver/prometheusreceiver/internal/metrics_adjuster.go @@ -102,11 +102,17 @@ func (tsm *timeseriesMap) get(metric pmetric.Metric, kv pcommon.Map) (*timeserie name: name, attributes: getAttributesSignature(kv), } - if metric.Type() == pmetric.MetricTypeHistogram { + switch metric.Type() { + case pmetric.MetricTypeHistogram: // There are 2 types of Histograms whose aggregation temporality needs distinguishing: // * CumulativeHistogram // * GaugeHistogram key.aggTemporality = metric.Histogram().AggregationTemporality() + case pmetric.MetricTypeExponentialHistogram: + // There are 2 types of ExponentialHistograms whose aggregation temporality needs distinguishing: + // * CumulativeHistogram + // * GaugeHistogram + key.aggTemporality = metric.ExponentialHistogram().AggregationTemporality() } tsm.mark = true @@ -285,7 +291,10 @@ func (a *initialPointAdjuster) AdjustMetrics(metrics pmetric.Metrics) error { case pmetric.MetricTypeSum: a.adjustMetricSum(tsm, metric) - case pmetric.MetricTypeEmpty, pmetric.MetricTypeExponentialHistogram: + case pmetric.MetricTypeExponentialHistogram: + a.adjustMetricExponentialHistogram(tsm, metric) + + case pmetric.MetricTypeEmpty: fallthrough default: @@ -346,6 +355,54 @@ func (a *initialPointAdjuster) adjustMetricHistogram(tsm *timeseriesMap, current } } +func (a *initialPointAdjuster) adjustMetricExponentialHistogram(tsm *timeseriesMap, current pmetric.Metric) { + histogram := current.ExponentialHistogram() + if histogram.AggregationTemporality() != pmetric.AggregationTemporalityCumulative { + // Only dealing with CumulativeDistributions. + return + } + + currentPoints := histogram.DataPoints() + for i := 0; i < currentPoints.Len(); i++ { + currentDist := currentPoints.At(i) + + // start timestamp was set from _created + if a.useCreatedMetric && + !currentDist.Flags().NoRecordedValue() && + currentDist.StartTimestamp() < currentDist.Timestamp() { + continue + } + + tsi, found := tsm.get(current, currentDist.Attributes()) + if !found { + // initialize everything. + tsi.histogram.startTime = currentDist.StartTimestamp() + tsi.histogram.previousCount = currentDist.Count() + tsi.histogram.previousSum = currentDist.Sum() + continue + } + + if currentDist.Flags().NoRecordedValue() { + // TODO: Investigate why this does not reset. + currentDist.SetStartTimestamp(tsi.histogram.startTime) + continue + } + + if currentDist.Count() < tsi.histogram.previousCount || currentDist.Sum() < tsi.histogram.previousSum { + // reset re-initialize everything. + tsi.histogram.startTime = currentDist.StartTimestamp() + tsi.histogram.previousCount = currentDist.Count() + tsi.histogram.previousSum = currentDist.Sum() + continue + } + + // Update only previous values. + tsi.histogram.previousCount = currentDist.Count() + tsi.histogram.previousSum = currentDist.Sum() + currentDist.SetStartTimestamp(tsi.histogram.startTime) + } +} + func (a *initialPointAdjuster) adjustMetricSum(tsm *timeseriesMap, current pmetric.Metric) { currentPoints := current.Sum().DataPoints() for i := 0; i < currentPoints.Len(); i++ { diff --git a/receiver/prometheusreceiver/internal/metrics_adjuster_test.go b/receiver/prometheusreceiver/internal/metrics_adjuster_test.go index df38dea9e968..d80dcf512ac1 100644 --- a/receiver/prometheusreceiver/internal/metrics_adjuster_test.go +++ b/receiver/prometheusreceiver/internal/metrics_adjuster_test.go @@ -25,10 +25,11 @@ var ( bounds0 = []float64{1, 2, 4} percent0 = []float64{10, 50, 90} - sum1 = "sum1" - gauge1 = "gauge1" - histogram1 = "histogram1" - summary1 = "summary1" + sum1 = "sum1" + gauge1 = "gauge1" + histogram1 = "histogram1" + summary1 = "summary1" + exponentialHistogram1 = "exponentialHistogram1" k1v1k2v2 = []*kv{ {"k1", "v1"}, @@ -246,6 +247,67 @@ func TestHistogramFlagNoRecordedValueFirstObservation(t *testing.T) { runScript(t, NewInitialPointAdjuster(zap.NewNop(), time.Minute, true), "job", "0", script) } +// In TestExponentHistogram we exclude negative buckets on purpose as they are +// not considered the main use case - response times that are most commonly +// observed are never negative. Negative buckets would make the Sum() non +// monotonic and cause unexpected resets. +func TestExponentialHistogram(t *testing.T) { + script := []*metricsAdjusterTest{ + { + description: "Exponential Histogram: round 1 - initial instance, start time is established", + metrics: metrics(exponentialHistogramMetric(exponentialHistogram1, exponentialHistogramPoint(k1v1k2v2, t1, t1, 3, 1, 0, []uint64{}, -2, []uint64{4, 2, 3, 7}))), + adjusted: metrics(exponentialHistogramMetric(exponentialHistogram1, exponentialHistogramPoint(k1v1k2v2, t1, t1, 3, 1, 0, []uint64{}, -2, []uint64{4, 2, 3, 7}))), + }, { + description: "Exponential Histogram: round 2 - instance adjusted based on round 1", + metrics: metrics(exponentialHistogramMetric(exponentialHistogram1, exponentialHistogramPoint(k1v1k2v2, t2, t2, 3, 1, 0, []uint64{}, -2, []uint64{6, 2, 3, 7}))), + adjusted: metrics(exponentialHistogramMetric(exponentialHistogram1, exponentialHistogramPoint(k1v1k2v2, t1, t2, 3, 1, 0, []uint64{}, -2, []uint64{6, 2, 3, 7}))), + }, { + description: "Exponential Histogram: round 3 - instance reset (value less than previous value), start time is reset", + metrics: metrics(exponentialHistogramMetric(histogram1, exponentialHistogramPoint(k1v1k2v2, t3, t3, 3, 1, 0, []uint64{}, -2, []uint64{5, 3, 2, 7}))), + adjusted: metrics(exponentialHistogramMetric(histogram1, exponentialHistogramPoint(k1v1k2v2, t3, t3, 3, 1, 0, []uint64{}, -2, []uint64{5, 3, 2, 7}))), + }, { + description: "Exponential Histogram: round 4 - instance adjusted based on round 3", + metrics: metrics(exponentialHistogramMetric(histogram1, exponentialHistogramPoint(k1v1k2v2, t4, t4, 3, 1, 0, []uint64{}, -2, []uint64{7, 4, 2, 12}))), + adjusted: metrics(exponentialHistogramMetric(histogram1, exponentialHistogramPoint(k1v1k2v2, t3, t4, 3, 1, 0, []uint64{}, -2, []uint64{7, 4, 2, 12}))), + }, + } + runScript(t, NewInitialPointAdjuster(zap.NewNop(), time.Minute, true), "job", "0", script) +} + +func TestExponentialHistogramFlagNoRecordedValue(t *testing.T) { + script := []*metricsAdjusterTest{ + { + description: "Histogram: round 1 - initial instance, start time is established", + metrics: metrics(exponentialHistogramMetric(histogram1, exponentialHistogramPoint(k1v1k2v2, t1, t1, 0, 2, 2, []uint64{7, 4, 2, 12}, 3, []uint64{}))), + adjusted: metrics(exponentialHistogramMetric(histogram1, exponentialHistogramPoint(k1v1k2v2, t1, t1, 0, 2, 2, []uint64{7, 4, 2, 12}, 3, []uint64{}))), + }, + { + description: "Histogram: round 2 - instance adjusted based on round 1", + metrics: metrics(exponentialHistogramMetric(histogram1, exponentialHistogramPointNoValue(k1v1k2v2, tUnknown, t2))), + adjusted: metrics(exponentialHistogramMetric(histogram1, exponentialHistogramPointNoValue(k1v1k2v2, t1, t2))), + }, + } + + runScript(t, NewInitialPointAdjuster(zap.NewNop(), time.Minute, true), "job", "0", script) +} + +func TestExponentialHistogramFlagNoRecordedValueFirstObservation(t *testing.T) { + script := []*metricsAdjusterTest{ + { + description: "Histogram: round 1 - initial instance, start time is unknown", + metrics: metrics(exponentialHistogramMetric(histogram1, exponentialHistogramPointNoValue(k1v1k2v2, tUnknown, t1))), + adjusted: metrics(exponentialHistogramMetric(histogram1, exponentialHistogramPointNoValue(k1v1k2v2, tUnknown, t1))), + }, + { + description: "Histogram: round 2 - instance unchanged", + metrics: metrics(exponentialHistogramMetric(histogram1, exponentialHistogramPointNoValue(k1v1k2v2, tUnknown, t2))), + adjusted: metrics(exponentialHistogramMetric(histogram1, exponentialHistogramPointNoValue(k1v1k2v2, tUnknown, t2))), + }, + } + + runScript(t, NewInitialPointAdjuster(zap.NewNop(), time.Minute, true), "job", "0", script) +} + func TestSummaryFlagNoRecordedValueFirstObservation(t *testing.T) { script := []*metricsAdjusterTest{ { diff --git a/receiver/prometheusreceiver/internal/metricsutil_test.go b/receiver/prometheusreceiver/internal/metricsutil_test.go index 4ba25cfe846e..8a0670a1d7ea 100644 --- a/receiver/prometheusreceiver/internal/metricsutil_test.go +++ b/receiver/prometheusreceiver/internal/metricsutil_test.go @@ -78,6 +78,99 @@ func histogramMetric(name string, points ...pmetric.HistogramDataPoint) pmetric. return metric } +func exponentialHistogramMetric(name string, points ...pmetric.ExponentialHistogramDataPoint) pmetric.Metric { + metric := pmetric.NewMetric() + metric.SetName(name) + histogram := metric.SetEmptyExponentialHistogram() + histogram.SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) + + destPointL := histogram.DataPoints() + // By default the AggregationTemporality is Cumulative until it'll be changed by the caller. + for _, point := range points { + destPoint := destPointL.AppendEmpty() + point.CopyTo(destPoint) + } + + return metric +} + +func exponentialHistogramPointRaw(attributes []*kv, startTimestamp, timestamp pcommon.Timestamp) pmetric.ExponentialHistogramDataPoint { + hdp := pmetric.NewExponentialHistogramDataPoint() + hdp.SetStartTimestamp(startTimestamp) + hdp.SetTimestamp(timestamp) + + attrs := hdp.Attributes() + for _, kv := range attributes { + attrs.PutStr(kv.Key, kv.Value) + } + + return hdp +} + +func exponentialHistogramPoint(attributes []*kv, startTimestamp, timestamp pcommon.Timestamp, scale int32, zeroCount uint64, negativeOffset int32, negativeBuckets []uint64, positiveOffset int32, positiveBuckets []uint64) pmetric.ExponentialHistogramDataPoint { + hdp := exponentialHistogramPointRaw(attributes, startTimestamp, timestamp) + hdp.SetScale(scale) + hdp.SetZeroCount(zeroCount) + hdp.Negative().SetOffset(negativeOffset) + hdp.Negative().BucketCounts().FromRaw(negativeBuckets) + hdp.Positive().SetOffset(positiveOffset) + hdp.Positive().BucketCounts().FromRaw(positiveBuckets) + + count := uint64(0) + sum := float64(0) + for i, bCount := range positiveBuckets { + count += bCount + sum += float64(bCount) * float64(i) + } + for i, bCount := range negativeBuckets { + count += bCount + sum -= float64(bCount) * float64(i) + } + hdp.SetCount(count) + hdp.SetSum(sum) + return hdp +} + +func exponentialHistogramPointNoValue(attributes []*kv, startTimestamp, timestamp pcommon.Timestamp) pmetric.ExponentialHistogramDataPoint { + hdp := exponentialHistogramPointRaw(attributes, startTimestamp, timestamp) + hdp.SetFlags(pmetric.DefaultDataPointFlags.WithNoRecordedValue(true)) + + return hdp +} + +// exponentialHistogramPointSimplified let's you define an exponential +// histogram with just a few parameters. +// Scale and ZeroCount are set to the provided values. +// Positive and negative buckets are generated using the offset and bucketCount +// parameters by adding buckets from offset in both positive and negative +// directions. Bucket counts start from 1 and increase by 1 for each bucket. +// Sum and Count will be proportional to the bucket count. +func exponentialHistogramPointSimplified(attributes []*kv, startTimestamp, timestamp pcommon.Timestamp, scale int32, zeroCount uint64, offset int32, bucketCount int) pmetric.ExponentialHistogramDataPoint { + hdp := exponentialHistogramPointRaw(attributes, startTimestamp, timestamp) + hdp.SetScale(scale) + hdp.SetZeroCount(zeroCount) + + positive := hdp.Positive() + positive.SetOffset(offset) + positive.BucketCounts().EnsureCapacity(bucketCount) + negative := hdp.Negative() + negative.SetOffset(offset) + negative.BucketCounts().EnsureCapacity(bucketCount) + + var sum float64 + var count uint64 + for i := 0; i < bucketCount; i++ { + positive.BucketCounts().Append(uint64(i + 1)) + negative.BucketCounts().Append(uint64(i + 1)) + count += uint64(i+1) + uint64(i+1) + sum += float64(i+1)*10 + float64(i+1)*10.0 + } + hdp.SetCount(count) + hdp.SetSum(sum) + + return hdp +} + func doublePointRaw(attributes []*kv, startTimestamp, timestamp pcommon.Timestamp) pmetric.NumberDataPoint { ndp := pmetric.NewNumberDataPoint() ndp.SetStartTimestamp(startTimestamp) diff --git a/receiver/prometheusreceiver/internal/starttimemetricadjuster.go b/receiver/prometheusreceiver/internal/starttimemetricadjuster.go index 9195136e7841..ca7ae2a29171 100644 --- a/receiver/prometheusreceiver/internal/starttimemetricadjuster.go +++ b/receiver/prometheusreceiver/internal/starttimemetricadjuster.go @@ -68,7 +68,14 @@ func (stma *startTimeMetricAdjuster) AdjustMetrics(metrics pmetric.Metrics) erro dp.SetStartTimestamp(startTimeTs) } - case pmetric.MetricTypeEmpty, pmetric.MetricTypeExponentialHistogram: + case pmetric.MetricTypeExponentialHistogram: + dataPoints := metric.ExponentialHistogram().DataPoints() + for l := 0; l < dataPoints.Len(); l++ { + dp := dataPoints.At(l) + dp.SetStartTimestamp(startTimeTs) + } + + case pmetric.MetricTypeEmpty: fallthrough default: diff --git a/receiver/prometheusreceiver/internal/starttimemetricadjuster_test.go b/receiver/prometheusreceiver/internal/starttimemetricadjuster_test.go index 89e4b10f8e5f..84bdc2756ed5 100644 --- a/receiver/prometheusreceiver/internal/starttimemetricadjuster_test.go +++ b/receiver/prometheusreceiver/internal/starttimemetricadjuster_test.go @@ -33,6 +33,7 @@ func TestStartTimeMetricMatch(t *testing.T) { summaryMetric("test_summary_metric", summaryPoint(nil, startTime, currentTime, 10, 100, []float64{10, 50, 90}, []float64{9, 15, 48})), sumMetric("example_process_start_time_seconds", doublePoint(nil, startTime, currentTime, matchBuilderStartTime)), sumMetric("process_start_time_seconds", doublePoint(nil, startTime, currentTime, matchBuilderStartTime+1)), + exponentialHistogramMetric("test_exponential_histogram_metric", exponentialHistogramPointSimplified(nil, startTime, currentTime, 3, 1, -5, 3)), ), startTimeMetricRegex: regexp.MustCompile("^.*_process_start_time_seconds$"), expectedStartTime: timestampFromFloat64(matchBuilderStartTime), @@ -45,6 +46,7 @@ func TestStartTimeMetricMatch(t *testing.T) { summaryMetric("test_summary_metric", summaryPoint(nil, startTime, currentTime, 10, 100, []float64{10, 50, 90}, []float64{9, 15, 48})), sumMetric("example_process_start_time_seconds", doublePoint(nil, startTime, currentTime, matchBuilderStartTime)), sumMetric("process_start_time_seconds", doublePoint(nil, startTime, currentTime, matchBuilderStartTime+1)), + exponentialHistogramMetric("test_exponential_histogram_metric", exponentialHistogramPointSimplified(nil, startTime, currentTime, 3, 1, -5, 3)), ), expectedStartTime: timestampFromFloat64(matchBuilderStartTime + 1), }, @@ -139,7 +141,12 @@ func TestStartTimeMetricMatch(t *testing.T) { for l := 0; l < dps.Len(); l++ { assert.Equal(t, tt.expectedStartTime, dps.At(l).StartTimestamp()) } - case pmetric.MetricTypeEmpty, pmetric.MetricTypeGauge, pmetric.MetricTypeExponentialHistogram: + case pmetric.MetricTypeExponentialHistogram: + dps := metric.ExponentialHistogram().DataPoints() + for l := 0; l < dps.Len(); l++ { + assert.Equal(t, tt.expectedStartTime, dps.At(l).StartTimestamp()) + } + case pmetric.MetricTypeEmpty, pmetric.MetricTypeGauge: } } } diff --git a/receiver/prometheusreceiver/internal/transaction.go b/receiver/prometheusreceiver/internal/transaction.go index 563642bc61bb..dc1bf78dba9e 100644 --- a/receiver/prometheusreceiver/internal/transaction.go +++ b/receiver/prometheusreceiver/internal/transaction.go @@ -7,6 +7,7 @@ import ( "context" "errors" "fmt" + "math" "github.com/prometheus/common/model" "github.com/prometheus/prometheus/model/exemplar" @@ -34,19 +35,20 @@ const ( ) type transaction struct { - isNew bool - trimSuffixes bool - ctx context.Context - families map[scopeID]map[string]*metricFamily - mc scrape.MetricMetadataStore - sink consumer.Metrics - externalLabels labels.Labels - nodeResource pcommon.Resource - scopeAttributes map[scopeID]pcommon.Map - logger *zap.Logger - buildInfo component.BuildInfo - metricAdjuster MetricsAdjuster - obsrecv *receiverhelper.ObsReport + isNew bool + trimSuffixes bool + enableNativeHistograms bool + ctx context.Context + families map[scopeID]map[string]*metricFamily + mc scrape.MetricMetadataStore + sink consumer.Metrics + externalLabels labels.Labels + nodeResource pcommon.Resource + scopeAttributes map[scopeID]pcommon.Map + logger *zap.Logger + buildInfo component.BuildInfo + metricAdjuster MetricsAdjuster + obsrecv *receiverhelper.ObsReport // Used as buffer to calculate series ref hash. bufBytes []byte } @@ -65,20 +67,22 @@ func newTransaction( externalLabels labels.Labels, settings receiver.CreateSettings, obsrecv *receiverhelper.ObsReport, - trimSuffixes bool) *transaction { + trimSuffixes bool, + enableNativeHistograms bool) *transaction { return &transaction{ - ctx: ctx, - families: make(map[scopeID]map[string]*metricFamily), - isNew: true, - trimSuffixes: trimSuffixes, - sink: sink, - metricAdjuster: metricAdjuster, - externalLabels: externalLabels, - logger: settings.Logger, - buildInfo: settings.BuildInfo, - obsrecv: obsrecv, - bufBytes: make([]byte, 0, 1024), - scopeAttributes: make(map[scopeID]pcommon.Map), + ctx: ctx, + families: make(map[scopeID]map[string]*metricFamily), + isNew: true, + trimSuffixes: trimSuffixes, + enableNativeHistograms: enableNativeHistograms, + sink: sink, + metricAdjuster: metricAdjuster, + externalLabels: externalLabels, + logger: settings.Logger, + buildInfo: settings.BuildInfo, + obsrecv: obsrecv, + bufBytes: make([]byte, 0, 1024), + scopeAttributes: make(map[scopeID]pcommon.Map), } } @@ -145,16 +149,42 @@ func (t *transaction) Append(_ storage.SeriesRef, ls labels.Labels, atMs int64, return 0, nil } - curMF := t.getOrCreateMetricFamily(getScopeID(ls), metricName) - err := curMF.addSeries(t.getSeriesRef(ls, curMF.mtype), metricName, ls, atMs, val) + curMF, existing := t.getOrCreateMetricFamily(getScopeID(ls), metricName) + + if t.enableNativeHistograms && curMF.mtype == pmetric.MetricTypeExponentialHistogram { + // If a histogram has both classic and native version, the native histogram is scraped + // first. Getting a float sample for the same series means that `scrape_classic_histogram` + // is set to true in the scrape config. In this case, we should ignore the native histogram. + curMF.mtype = pmetric.MetricTypeHistogram + } + + seriesRef := t.getSeriesRef(ls, curMF.mtype) + err := curMF.addSeries(seriesRef, metricName, ls, atMs, val) if err != nil { - t.logger.Warn("failed to add datapoint", zap.Error(err), zap.String("metric_name", metricName), zap.Any("labels", ls)) + // Handle special case of float sample indicating staleness of native + // histogram. This is similar to how Prometheus handles it, but we + // don't have access to the previous value so we're applying some + // heuristics to figure out if this is native histogram or not. + // The metric type will indicate histogram, but presumably there will be no + // _bucket, _count, _sum suffix or `le` label, which makes addSeries fail + // with errEmptyLeLabel. + if t.enableNativeHistograms && errors.Is(err, errEmptyLeLabel) && !existing && value.IsStaleNaN(val) && curMF.mtype == pmetric.MetricTypeHistogram { + mg := curMF.loadMetricGroupOrCreate(seriesRef, ls, atMs) + curMF.mtype = pmetric.MetricTypeExponentialHistogram + mg.mtype = pmetric.MetricTypeExponentialHistogram + _ = curMF.addExponentialHistogramSeries(seriesRef, metricName, ls, atMs, &histogram.Histogram{Sum: math.Float64frombits(value.StaleNaN)}, nil) + // ignore errors here, this is best effort. + } else { + t.logger.Warn("failed to add datapoint", zap.Error(err), zap.String("metric_name", metricName), zap.Any("labels", ls)) + } } return 0, nil // never return errors, as that fails the whole scrape } -func (t *transaction) getOrCreateMetricFamily(scope scopeID, mn string) *metricFamily { +// getOrCreateMetricFamily returns the metric family for the given metric name and scope, +// and true if an existing family was found. +func (t *transaction) getOrCreateMetricFamily(scope scopeID, mn string) (*metricFamily, bool) { _, ok := t.families[scope] if !ok { t.families[scope] = make(map[string]*metricFamily) @@ -170,9 +200,10 @@ func (t *transaction) getOrCreateMetricFamily(scope scopeID, mn string) *metricF } else { curMf = newMetricFamily(mn, t.mc, t.logger) t.families[scope][curMf.name] = curMf + return curMf, false } } - return curMf + return curMf, true } func (t *transaction) AppendExemplar(_ storage.SeriesRef, l labels.Labels, e exemplar.Exemplar) (storage.SeriesRef, error) { @@ -199,15 +230,71 @@ func (t *transaction) AppendExemplar(_ storage.SeriesRef, l labels.Labels, e exe return 0, errMetricNameNotFound } - mf := t.getOrCreateMetricFamily(getScopeID(l), mn) + mf, _ := t.getOrCreateMetricFamily(getScopeID(l), mn) mf.addExemplar(t.getSeriesRef(l, mf.mtype), e) return 0, nil } -func (t *transaction) AppendHistogram(_ storage.SeriesRef, _ labels.Labels, _ int64, _ *histogram.Histogram, _ *histogram.FloatHistogram) (storage.SeriesRef, error) { - //TODO: implement this func - return 0, nil +func (t *transaction) AppendHistogram(_ storage.SeriesRef, ls labels.Labels, atMs int64, h *histogram.Histogram, fh *histogram.FloatHistogram) (storage.SeriesRef, error) { + if !t.enableNativeHistograms { + return 0, nil + } + + select { + case <-t.ctx.Done(): + return 0, errTransactionAborted + default: + } + + if t.externalLabels.Len() != 0 { + b := labels.NewBuilder(ls) + t.externalLabels.Range(func(l labels.Label) { + b.Set(l.Name, l.Value) + }) + ls = b.Labels() + } + + if t.isNew { + if err := t.initTransaction(ls); err != nil { + return 0, err + } + } + + // Any datapoint with duplicate labels MUST be rejected per: + // * https://github.com/open-telemetry/wg-prometheus/issues/44 + // * https://github.com/open-telemetry/opentelemetry-collector/issues/3407 + // as Prometheus rejects such too as of version 2.16.0, released on 2020-02-13. + if dupLabel, hasDup := ls.HasDuplicateLabelNames(); hasDup { + return 0, fmt.Errorf("invalid sample: non-unique label names: %q", dupLabel) + } + + metricName := ls.Get(model.MetricNameLabel) + if metricName == "" { + return 0, errMetricNameNotFound + } + + // The `up`, `target_info`, `otel_scope_info` metrics should never generate native histograms, + // thus we don't check for them here as opposed to the Append function. + + curMF, existing := t.getOrCreateMetricFamily(getScopeID(ls), metricName) + if !existing { + curMF.mtype = pmetric.MetricTypeExponentialHistogram + } else if curMF.mtype != pmetric.MetricTypeExponentialHistogram { + // Already scraped as classic histogram. + return 0, nil + } + + if h != nil && h.CounterResetHint == histogram.GaugeType || fh != nil && fh.CounterResetHint == histogram.GaugeType { + t.logger.Warn("dropping unsupported gauge histogram datapoint", zap.String("metric_name", metricName), zap.Any("labels", ls)) + } + + err := curMF.addExponentialHistogramSeries(t.getSeriesRef(ls, curMF.mtype), metricName, ls, atMs, h, fh) + if err != nil { + t.logger.Warn("failed to add histogram datapoint", zap.Error(err), zap.String("metric_name", metricName), zap.Any("labels", ls)) + } + + return 0, nil // never return errors, as that fails the whole scrape } func (t *transaction) AppendCTZeroSample(_ storage.SeriesRef, _ labels.Labels, _, _ int64) (storage.SeriesRef, error) { diff --git a/receiver/prometheusreceiver/internal/transaction_test.go b/receiver/prometheusreceiver/internal/transaction_test.go index fde7c6a07000..2956ec2e3b12 100644 --- a/receiver/prometheusreceiver/internal/transaction_test.go +++ b/receiver/prometheusreceiver/internal/transaction_test.go @@ -6,14 +6,17 @@ package internal import ( "context" "errors" + "fmt" "testing" "time" "github.com/prometheus/common/model" "github.com/prometheus/prometheus/model/exemplar" + "github.com/prometheus/prometheus/model/histogram" "github.com/prometheus/prometheus/model/labels" "github.com/prometheus/prometheus/model/metadata" "github.com/prometheus/prometheus/scrape" + "github.com/prometheus/prometheus/tsdb/tsdbutil" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "go.opentelemetry.io/collector/component" @@ -53,42 +56,89 @@ var ( ) func TestTransactionCommitWithoutAdding(t *testing.T) { - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, consumertest.NewNop(), labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testTransactionCommitWithoutAdding(t, enableNativeHistograms) + }) + } +} + +func testTransactionCommitWithoutAdding(t *testing.T, enableNativeHistograms bool) { + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, consumertest.NewNop(), labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) assert.NoError(t, tr.Commit()) } func TestTransactionRollbackDoesNothing(t *testing.T) { - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, consumertest.NewNop(), labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testTransactionRollbackDoesNothing(t, enableNativeHistograms) + }) + } +} + +func testTransactionRollbackDoesNothing(t *testing.T, enableNativeHistograms bool) { + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, consumertest.NewNop(), labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) assert.NoError(t, tr.Rollback()) } func TestTransactionUpdateMetadataDoesNothing(t *testing.T) { - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, consumertest.NewNop(), labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testTransactionUpdateMetadataDoesNothing(t, enableNativeHistograms) + }) + } +} + +func testTransactionUpdateMetadataDoesNothing(t *testing.T, enableNativeHistograms bool) { + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, consumertest.NewNop(), labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) _, err := tr.UpdateMetadata(0, labels.New(), metadata.Metadata{}) assert.NoError(t, err) } func TestTransactionAppendNoTarget(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testTransactionAppendNoTarget(t, enableNativeHistograms) + }) + } +} + +func testTransactionAppendNoTarget(t *testing.T, enableNativeHistograms bool) { badLabels := labels.FromStrings(model.MetricNameLabel, "counter_test") - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, consumertest.NewNop(), labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, consumertest.NewNop(), labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) _, err := tr.Append(0, badLabels, time.Now().Unix()*1000, 1.0) assert.Error(t, err) } func TestTransactionAppendNoMetricName(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testTransactionAppendNoMetricName(t, enableNativeHistograms) + }) + } +} + +func testTransactionAppendNoMetricName(t *testing.T, enableNativeHistograms bool) { jobNotFoundLb := labels.FromMap(map[string]string{ model.InstanceLabel: "localhost:8080", model.JobLabel: "test2", }) - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, consumertest.NewNop(), labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, consumertest.NewNop(), labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) _, err := tr.Append(0, jobNotFoundLb, time.Now().Unix()*1000, 1.0) assert.ErrorIs(t, err, errMetricNameNotFound) - assert.ErrorIs(t, tr.Commit(), errNoDataToBuild) } func TestTransactionAppendEmptyMetricName(t *testing.T) { - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, consumertest.NewNop(), labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testTransactionAppendEmptyMetricName(t, enableNativeHistograms) + }) + } +} + +func testTransactionAppendEmptyMetricName(t *testing.T, enableNativeHistograms bool) { + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, consumertest.NewNop(), labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) _, err := tr.Append(0, labels.FromMap(map[string]string{ model.InstanceLabel: "localhost:8080", model.JobLabel: "test2", @@ -98,8 +148,16 @@ func TestTransactionAppendEmptyMetricName(t *testing.T) { } func TestTransactionAppendResource(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testTransactionAppendResource(t, enableNativeHistograms) + }) + } +} + +func testTransactionAppendResource(t *testing.T, enableNativeHistograms bool) { sink := new(consumertest.MetricsSink) - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) _, err := tr.Append(0, labels.FromMap(map[string]string{ model.InstanceLabel: "localhost:8080", model.JobLabel: "test", @@ -121,8 +179,16 @@ func TestTransactionAppendResource(t *testing.T) { } func TestReceiverVersionAndNameAreAttached(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testReceiverVersionAndNameAreAttached(t, enableNativeHistograms) + }) + } +} + +func testReceiverVersionAndNameAreAttached(t *testing.T, enableNativeHistograms bool) { sink := new(consumertest.MetricsSink) - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) _, err := tr.Append(0, labels.FromMap(map[string]string{ model.InstanceLabel: "localhost:8080", model.JobLabel: "test", @@ -143,6 +209,14 @@ func TestReceiverVersionAndNameAreAttached(t *testing.T) { } func TestTransactionCommitErrorWhenAdjusterError(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testTransactionCommitErrorWhenAdjusterError(t, enableNativeHistograms) + }) + } +} + +func testTransactionCommitErrorWhenAdjusterError(t *testing.T, enableNativeHistograms bool) { goodLabels := labels.FromMap(map[string]string{ model.InstanceLabel: "localhost:8080", model.JobLabel: "test", @@ -150,7 +224,7 @@ func TestTransactionCommitErrorWhenAdjusterError(t *testing.T) { }) sink := new(consumertest.MetricsSink) adjusterErr := errors.New("adjuster error") - tr := newTransaction(scrapeCtx, &errorAdjuster{err: adjusterErr}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &errorAdjuster{err: adjusterErr}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) _, err := tr.Append(0, goodLabels, time.Now().Unix()*1000, 1.0) assert.NoError(t, err) assert.ErrorIs(t, tr.Commit(), adjusterErr) @@ -158,8 +232,16 @@ func TestTransactionCommitErrorWhenAdjusterError(t *testing.T) { // Ensure that we reject duplicate label keys. See https://github.com/open-telemetry/wg-prometheus/issues/44. func TestTransactionAppendDuplicateLabels(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testTransactionAppendDuplicateLabels(t, enableNativeHistograms) + }) + } +} + +func testTransactionAppendDuplicateLabels(t *testing.T, enableNativeHistograms bool) { sink := new(consumertest.MetricsSink) - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) dupLabels := labels.FromStrings( model.InstanceLabel, "0.0.0.0:8855", @@ -176,6 +258,14 @@ func TestTransactionAppendDuplicateLabels(t *testing.T) { } func TestTransactionAppendHistogramNoLe(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testTransactionAppendHistogramNoLe(t, enableNativeHistograms) + }) + } +} + +func testTransactionAppendHistogramNoLe(t *testing.T, enableNativeHistograms bool) { sink := new(consumertest.MetricsSink) receiverSettings := receivertest.NewNopCreateSettings() core, observedLogs := observer.New(zap.InfoLevel) @@ -188,6 +278,7 @@ func TestTransactionAppendHistogramNoLe(t *testing.T) { receiverSettings, nopObsRecv(t), false, + enableNativeHistograms, ) goodLabels := labels.FromStrings( @@ -206,6 +297,14 @@ func TestTransactionAppendHistogramNoLe(t *testing.T) { } func TestTransactionAppendSummaryNoQuantile(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testTransactionAppendSummaryNoQuantile(t, enableNativeHistograms) + }) + } +} + +func testTransactionAppendSummaryNoQuantile(t *testing.T, enableNativeHistograms bool) { sink := new(consumertest.MetricsSink) receiverSettings := receivertest.NewNopCreateSettings() core, observedLogs := observer.New(zap.InfoLevel) @@ -218,6 +317,7 @@ func TestTransactionAppendSummaryNoQuantile(t *testing.T) { receiverSettings, nopObsRecv(t), false, + enableNativeHistograms, ) goodLabels := labels.FromStrings( @@ -236,6 +336,14 @@ func TestTransactionAppendSummaryNoQuantile(t *testing.T) { } func TestTransactionAppendValidAndInvalid(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testTransactionAppendValidAndInvalid(t, enableNativeHistograms) + }) + } +} + +func testTransactionAppendValidAndInvalid(t *testing.T, enableNativeHistograms bool) { sink := new(consumertest.MetricsSink) receiverSettings := receivertest.NewNopCreateSettings() core, observedLogs := observer.New(zap.InfoLevel) @@ -248,6 +356,7 @@ func TestTransactionAppendValidAndInvalid(t *testing.T) { receiverSettings, nopObsRecv(t), false, + enableNativeHistograms, ) // a valid counter @@ -281,8 +390,16 @@ func TestTransactionAppendValidAndInvalid(t *testing.T) { } func TestAppendExemplarWithNoMetricName(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testAppendExemplarWithNoMetricName(t, enableNativeHistograms) + }) + } +} + +func testAppendExemplarWithNoMetricName(t *testing.T, enableNativeHistograms bool) { sink := new(consumertest.MetricsSink) - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) labels := labels.FromStrings( model.InstanceLabel, "0.0.0.0:8855", @@ -294,8 +411,16 @@ func TestAppendExemplarWithNoMetricName(t *testing.T) { } func TestAppendExemplarWithEmptyMetricName(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testAppendExemplarWithEmptyMetricName(t, enableNativeHistograms) + }) + } +} + +func testAppendExemplarWithEmptyMetricName(t *testing.T, enableNativeHistograms bool) { sink := new(consumertest.MetricsSink) - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) labels := labels.FromStrings( model.InstanceLabel, "0.0.0.0:8855", @@ -307,8 +432,16 @@ func TestAppendExemplarWithEmptyMetricName(t *testing.T) { } func TestAppendExemplarWithDuplicateLabels(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testAppendExemplarWithDuplicateLabels(t, enableNativeHistograms) + }) + } +} + +func testAppendExemplarWithDuplicateLabels(t *testing.T, enableNativeHistograms bool) { sink := new(consumertest.MetricsSink) - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) labels := labels.FromStrings( model.InstanceLabel, "0.0.0.0:8855", @@ -323,8 +456,16 @@ func TestAppendExemplarWithDuplicateLabels(t *testing.T) { } func TestAppendExemplarWithoutAddingMetric(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testAppendExemplarWithoutAddingMetric(t, enableNativeHistograms) + }) + } +} + +func testAppendExemplarWithoutAddingMetric(t *testing.T, enableNativeHistograms bool) { sink := new(consumertest.MetricsSink) - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) labels := labels.FromStrings( model.InstanceLabel, "0.0.0.0:8855", @@ -337,16 +478,32 @@ func TestAppendExemplarWithoutAddingMetric(t *testing.T) { } func TestAppendExemplarWithNoLabels(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testAppendExemplarWithNoLabels(t, enableNativeHistograms) + }) + } +} + +func testAppendExemplarWithNoLabels(t *testing.T, enableNativeHistograms bool) { sink := new(consumertest.MetricsSink) - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) _, err := tr.AppendExemplar(0, labels.EmptyLabels(), exemplar.Exemplar{Value: 0}) assert.Equal(t, errNoJobInstance, err) } func TestAppendExemplarWithEmptyLabelArray(t *testing.T) { + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("enableNativeHistograms=%v", enableNativeHistograms), func(t *testing.T) { + testAppendExemplarWithEmptyLabelArray(t, enableNativeHistograms) + }) + } +} + +func testAppendExemplarWithEmptyLabelArray(t *testing.T, enableNativeHistograms bool) { sink := new(consumertest.MetricsSink) - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) _, err := tr.AppendExemplar(0, labels.FromStrings(), exemplar.Exemplar{Value: 0}) assert.Equal(t, errNoJobInstance, err) @@ -575,9 +732,11 @@ func TestMetricBuilderCounters(t *testing.T) { } for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - tt.run(t) - }) + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("%s/enableNativeHistograms=%v", tt.name, enableNativeHistograms), func(t *testing.T) { + tt.run(t, enableNativeHistograms) + }) + } } } @@ -798,9 +957,11 @@ func TestMetricBuilderGauges(t *testing.T) { } for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - tt.run(t) - }) + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("%s/enableNativeHistograms=%v", tt.name, enableNativeHistograms), func(t *testing.T) { + tt.run(t, enableNativeHistograms) + }) + } } } @@ -894,9 +1055,11 @@ func TestMetricBuilderUntyped(t *testing.T) { } for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - tt.run(t) - }) + for _, enableNativeHistograms := range []bool{true, false} { + t.Run(fmt.Sprintf("%s/enableNativeHistograms=%v", tt.name, enableNativeHistograms), func(t *testing.T) { + tt.run(t, enableNativeHistograms) + }) + } } } @@ -1312,9 +1475,12 @@ func TestMetricBuilderHistogram(t *testing.T) { } for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - tt.run(t) - }) + for _, enableNativeHistograms := range []bool{true, false} { + // None of the histograms above have native histogram versions, so enabling native hisotgrams has no effect. + t.Run(fmt.Sprintf("%s/enableNativeHistograms=%v", tt.name, enableNativeHistograms), func(t *testing.T) { + tt.run(t, enableNativeHistograms) + }) + } } } @@ -1454,30 +1620,137 @@ func TestMetricBuilderSummary(t *testing.T) { } for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - tt.run(t) - }) + for _, enableNativeHistograms := range []bool{false, true} { + t.Run(fmt.Sprintf("%s/enableNativeHistograms=%v", tt.name, enableNativeHistograms), func(t *testing.T) { + tt.run(t, enableNativeHistograms) + }) + } } } +func TestMetricBuilderNativeHistogram(t *testing.T) { + for _, enableNativeHistograms := range []bool{false, true} { + emptyH := &histogram.Histogram{ + Schema: 1, + Count: 0, + Sum: 0, + ZeroThreshold: 0.001, + ZeroCount: 0, + } + h0 := tsdbutil.GenerateTestHistogram(0) + + tests := []buildTestData{ + { + name: "empty integer histogram", + inputs: []*testScrapedPage{ + { + pts: []*testDataPoint{ + createHistogramDataPoint("hist_test", emptyH, nil, nil, "foo", "bar"), + }, + }, + }, + wants: func() []pmetric.Metrics { + md0 := pmetric.NewMetrics() + if !enableNativeHistograms { + return []pmetric.Metrics{md0} + } + mL0 := md0.ResourceMetrics().AppendEmpty().ScopeMetrics().AppendEmpty().Metrics() + m0 := mL0.AppendEmpty() + m0.SetName("hist_test") + m0.SetEmptyExponentialHistogram() + m0.ExponentialHistogram().SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) + pt0 := m0.ExponentialHistogram().DataPoints().AppendEmpty() + pt0.Attributes().PutStr("foo", "bar") + pt0.SetStartTimestamp(startTimestamp) + pt0.SetTimestamp(tsNanos) + pt0.SetCount(0) + pt0.SetSum(0) + pt0.SetZeroThreshold(0.001) + pt0.SetScale(1) + + return []pmetric.Metrics{md0} + }, + }, + { + name: "integer histogram", + inputs: []*testScrapedPage{ + { + pts: []*testDataPoint{ + createHistogramDataPoint("hist_test", h0, nil, nil, "foo", "bar"), + }, + }, + }, + wants: func() []pmetric.Metrics { + md0 := pmetric.NewMetrics() + if !enableNativeHistograms { + return []pmetric.Metrics{md0} + } + mL0 := md0.ResourceMetrics().AppendEmpty().ScopeMetrics().AppendEmpty().Metrics() + m0 := mL0.AppendEmpty() + m0.SetName("hist_test") + m0.SetEmptyExponentialHistogram() + m0.ExponentialHistogram().SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) + pt0 := m0.ExponentialHistogram().DataPoints().AppendEmpty() + pt0.Attributes().PutStr("foo", "bar") + pt0.SetStartTimestamp(startTimestamp) + pt0.SetTimestamp(tsNanos) + pt0.SetCount(12) + pt0.SetSum(18.4) + pt0.SetScale(1) + pt0.SetZeroThreshold(0.001) + pt0.SetZeroCount(2) + pt0.Positive().SetOffset(-1) + pt0.Positive().BucketCounts().Append(1) + pt0.Positive().BucketCounts().Append(2) + pt0.Positive().BucketCounts().Append(0) + pt0.Positive().BucketCounts().Append(1) + pt0.Positive().BucketCounts().Append(1) + pt0.Negative().SetOffset(-1) + pt0.Negative().BucketCounts().Append(1) + pt0.Negative().BucketCounts().Append(2) + pt0.Negative().BucketCounts().Append(0) + pt0.Negative().BucketCounts().Append(1) + pt0.Negative().BucketCounts().Append(1) + + return []pmetric.Metrics{md0} + }, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + tt.run(t, enableNativeHistograms) + }) + } + } +} + type buildTestData struct { name string inputs []*testScrapedPage wants func() []pmetric.Metrics } -func (tt buildTestData) run(t *testing.T) { +func (tt buildTestData) run(t *testing.T, enableNativeHistograms bool) { wants := tt.wants() assert.EqualValues(t, len(wants), len(tt.inputs)) st := ts for i, page := range tt.inputs { sink := new(consumertest.MetricsSink) - tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false) + tr := newTransaction(scrapeCtx, &startTimeAdjuster{startTime: startTimestamp}, sink, labels.EmptyLabels(), receivertest.NewNopCreateSettings(), nopObsRecv(t), false, enableNativeHistograms) for _, pt := range page.pts { // set ts for testing pt.t = st - _, err := tr.Append(0, pt.lb, pt.t, pt.v) + var err error + switch { + case pt.fh != nil: + _, err = tr.AppendHistogram(0, pt.lb, pt.t, nil, pt.fh) + case pt.h != nil: + _, err = tr.AppendHistogram(0, pt.lb, pt.t, pt.h, nil) + default: + _, err = tr.Append(0, pt.lb, pt.t, pt.v) + } assert.NoError(t, err) for _, e := range pt.exemplars { @@ -1534,7 +1807,12 @@ func (s *startTimeAdjuster) AdjustMetrics(metrics pmetric.Metrics) error { for l := 0; l < dps.Len(); l++ { dps.At(l).SetStartTimestamp(s.startTime) } - case pmetric.MetricTypeEmpty, pmetric.MetricTypeGauge, pmetric.MetricTypeExponentialHistogram: + case pmetric.MetricTypeExponentialHistogram: + dps := metric.ExponentialHistogram().DataPoints() + for l := 0; l < dps.Len(); l++ { + dps.At(l).SetStartTimestamp(s.startTime) + } + case pmetric.MetricTypeEmpty, pmetric.MetricTypeGauge: } } } @@ -1546,6 +1824,8 @@ type testDataPoint struct { lb labels.Labels t int64 v float64 + h *histogram.Histogram + fh *histogram.FloatHistogram exemplars []exemplar.Exemplar } @@ -1568,6 +1848,13 @@ func createDataPoint(mname string, value float64, es []exemplar.Exemplar, tagPai } } +func createHistogramDataPoint(mname string, h *histogram.Histogram, fh *histogram.FloatHistogram, es []exemplar.Exemplar, tagPairs ...string) *testDataPoint { + dataPoint := createDataPoint(mname, 0, es, tagPairs...) + dataPoint.h = h + dataPoint.fh = fh + return dataPoint +} + func assertEquivalentMetrics(t *testing.T, want, got pmetric.Metrics) { require.Equal(t, want.ResourceMetrics().Len(), got.ResourceMetrics().Len()) if want.ResourceMetrics().Len() == 0 { diff --git a/receiver/prometheusreceiver/metrics_receiver.go b/receiver/prometheusreceiver/metrics_receiver.go index bcd2192a55fe..771e0dfaca9d 100644 --- a/receiver/prometheusreceiver/metrics_receiver.go +++ b/receiver/prometheusreceiver/metrics_receiver.go @@ -233,6 +233,13 @@ func (r *pReceiver) getScrapeConfigsResponse(baseURL string) (map[string]*config } func (r *pReceiver) applyCfg(cfg *PromConfig) error { + if !enableNativeHistogramsGate.IsEnabled() { + // Enforce scraping classic histograms to avoid dropping them. + for _, scrapeConfig := range cfg.ScrapeConfigs { + scrapeConfig.ScrapeClassicHistograms = true + } + } + if err := r.scrapeManager.ApplyConfig((*config.Config)(cfg)); err != nil { return err } @@ -284,6 +291,7 @@ func (r *pReceiver) initPrometheusComponents(ctx context.Context, logger log.Log r.cfg.UseStartTimeMetric, startTimeMetricRegex, useCreatedMetricGate.IsEnabled(), + enableNativeHistogramsGate.IsEnabled(), r.cfg.PrometheusConfig.GlobalConfig.ExternalLabels, r.cfg.TrimMetricSuffixes, ) diff --git a/receiver/prometheusreceiver/metrics_receiver_helper_test.go b/receiver/prometheusreceiver/metrics_receiver_helper_test.go index 332183ee0fa8..41ed19989a0a 100644 --- a/receiver/prometheusreceiver/metrics_receiver_helper_test.go +++ b/receiver/prometheusreceiver/metrics_receiver_helper_test.go @@ -283,6 +283,12 @@ func isFirstFailedScrape(metrics []pmetric.Metric, normalizedNames bool) bool { return false } } + case pmetric.MetricTypeExponentialHistogram: + for i := 0; i < m.ExponentialHistogram().DataPoints().Len(); i++ { + if !m.ExponentialHistogram().DataPoints().At(i).Flags().NoRecordedValue() { + return false + } + } case pmetric.MetricTypeHistogram: for i := 0; i < m.Histogram().DataPoints().Len(); i++ { if !m.Histogram().DataPoints().At(i).Flags().NoRecordedValue() { @@ -295,7 +301,7 @@ func isFirstFailedScrape(metrics []pmetric.Metric, normalizedNames bool) bool { return false } } - case pmetric.MetricTypeEmpty, pmetric.MetricTypeExponentialHistogram: + case pmetric.MetricTypeEmpty: } } return true @@ -362,11 +368,13 @@ type metricTypeComparator func(*testing.T, pmetric.Metric) type numberPointComparator func(*testing.T, pmetric.NumberDataPoint) type histogramPointComparator func(*testing.T, pmetric.HistogramDataPoint) type summaryPointComparator func(*testing.T, pmetric.SummaryDataPoint) +type exponentialHistogramComparator func(*testing.T, pmetric.ExponentialHistogramDataPoint) type dataPointExpectation struct { - numberPointComparator []numberPointComparator - histogramPointComparator []histogramPointComparator - summaryPointComparator []summaryPointComparator + numberPointComparator []numberPointComparator + histogramPointComparator []histogramPointComparator + summaryPointComparator []summaryPointComparator + exponentialHistogramComparator []exponentialHistogramComparator } type testExpectation func(*testing.T, pmetric.ResourceMetrics) @@ -426,7 +434,12 @@ func assertMetricPresent(name string, metricTypeExpectations metricTypeComparato require.Equal(t, m.Summary().DataPoints().Len(), len(dataPointExpectations), "Expected number of data-points in Summary metric '%s' does not match to testdata", name) spc(t, m.Summary().DataPoints().At(i)) } - case pmetric.MetricTypeEmpty, pmetric.MetricTypeExponentialHistogram: + case pmetric.MetricTypeExponentialHistogram: + for _, ehc := range de.exponentialHistogramComparator { + require.Equal(t, m.ExponentialHistogram().DataPoints().Len(), len(dataPointExpectations), "Expected number of data-points in Exponential Histogram metric '%s' does not match to testdata", name) + ehc(t, m.ExponentialHistogram().DataPoints().At(i)) + } + case pmetric.MetricTypeEmpty: } } } @@ -521,6 +534,13 @@ func assertHistogramPointFlagNoRecordedValue() histogramPointComparator { } } +func assertExponentialHistogramPointFlagNoRecordedValue() exponentialHistogramComparator { + return func(t *testing.T, histogramDataPoint pmetric.ExponentialHistogramDataPoint) { + assert.True(t, histogramDataPoint.Flags().NoRecordedValue(), + "Datapoint flag for staleness marker not found as expected") + } +} + func assertSummaryPointFlagNoRecordedValue() summaryPointComparator { return func(t *testing.T, summaryDataPoint pmetric.SummaryDataPoint) { assert.True(t, summaryDataPoint.Flags().NoRecordedValue(), @@ -586,6 +606,19 @@ func compareHistogram(count uint64, sum float64, upperBounds []float64, buckets } } +func compareExponentialHistogram(scale int32, count uint64, sum float64, zeroCount uint64, negativeOffset int32, negativeBuckets []uint64, positiveOffset int32, positiveBuckets []uint64) exponentialHistogramComparator { + return func(t *testing.T, exponentialHistogramDataPoint pmetric.ExponentialHistogramDataPoint) { + assert.Equal(t, scale, exponentialHistogramDataPoint.Scale(), "Exponential Histogram scale value does not match") + assert.Equal(t, count, exponentialHistogramDataPoint.Count(), "Exponential Histogram count value does not match") + assert.Equal(t, sum, exponentialHistogramDataPoint.Sum(), "Exponential Histogram sum value does not match") + assert.Equal(t, zeroCount, exponentialHistogramDataPoint.ZeroCount(), "Exponential Histogram zero count value does not match") + assert.Equal(t, negativeOffset, exponentialHistogramDataPoint.Negative().Offset(), "Exponential Histogram negative offset value does not match") + assert.Equal(t, negativeBuckets, exponentialHistogramDataPoint.Negative().BucketCounts().AsRaw(), "Exponential Histogram negative bucket count values do not match") + assert.Equal(t, positiveOffset, exponentialHistogramDataPoint.Positive().Offset(), "Exponential Histogram positive offset value does not match") + assert.Equal(t, positiveBuckets, exponentialHistogramDataPoint.Positive().BucketCounts().AsRaw(), "Exponential Histogram positive bucket count values do not match") + } +} + func compareSummary(count uint64, sum float64, quantiles [][]float64) summaryPointComparator { return func(t *testing.T, summaryDataPoint pmetric.SummaryDataPoint) { assert.Equal(t, count, summaryDataPoint.Count(), "Summary count value does not match") diff --git a/receiver/prometheusreceiver/metrics_receiver_protobuf_test.go b/receiver/prometheusreceiver/metrics_receiver_protobuf_test.go index 5aa5ce15afd8..0b16a10c1c1a 100644 --- a/receiver/prometheusreceiver/metrics_receiver_protobuf_test.go +++ b/receiver/prometheusreceiver/metrics_receiver_protobuf_test.go @@ -9,6 +9,8 @@ import ( "github.com/prometheus/prometheus/config" dto "github.com/prometheus/prometheus/prompb/io/prometheus/client" + "github.com/stretchr/testify/require" + "go.opentelemetry.io/collector/featuregate" "go.opentelemetry.io/collector/pdata/pmetric" ) @@ -157,3 +159,455 @@ func TestScrapeViaProtobuf(t *testing.T) { c.PrometheusConfig.GlobalConfig.ScrapeProtocols = []config.ScrapeProtocol{config.PrometheusProto} }) } + +func TestNativeVsClassicHistogramScrapeViaProtobuf(t *testing.T) { + classicHistogram := &dto.MetricFamily{ + Name: "test_classic_histogram", + Type: dto.MetricType_HISTOGRAM, + Metric: []dto.Metric{ + { + Histogram: &dto.Histogram{ + SampleCount: 1213, + SampleSum: 456, + Bucket: []dto.Bucket{ + { + UpperBound: 0.5, + CumulativeCount: 789, + }, + { + UpperBound: 10, + CumulativeCount: 1011, + }, + { + UpperBound: math.Inf(1), + CumulativeCount: 1213, + }, + }, + }, + }, + }, + } + buffer := prometheusMetricFamilyToProtoBuf(t, nil, classicHistogram) + + mixedHistogram := &dto.MetricFamily{ + Name: "test_mixed_histogram", + Type: dto.MetricType_HISTOGRAM, + Metric: []dto.Metric{ + { + Histogram: &dto.Histogram{ + SampleCount: 1213, + SampleSum: 456, + Bucket: []dto.Bucket{ + { + UpperBound: 0.5, + CumulativeCount: 789, + }, + { + UpperBound: 10, + CumulativeCount: 1011, + }, + { + UpperBound: math.Inf(1), + CumulativeCount: 1213, + }, + }, + // Integer counter histogram definition + Schema: 3, + ZeroThreshold: 0.001, + ZeroCount: 2, + NegativeSpan: []dto.BucketSpan{ + {Offset: 0, Length: 1}, + {Offset: 1, Length: 1}, + }, + NegativeDelta: []int64{1, 1}, + PositiveSpan: []dto.BucketSpan{ + {Offset: -2, Length: 1}, + {Offset: 1, Length: 1}, + }, + PositiveDelta: []int64{1, 0}, + }, + }, + }, + } + prometheusMetricFamilyToProtoBuf(t, buffer, mixedHistogram) + + nativeHistogram := &dto.MetricFamily{ + Name: "test_native_histogram", + Type: dto.MetricType_HISTOGRAM, + Metric: []dto.Metric{ + { + Histogram: &dto.Histogram{ + SampleCount: 1214, + SampleSum: 3456, + // Integer counter histogram definition + Schema: 3, + ZeroThreshold: 0.001, + ZeroCount: 5, + NegativeSpan: []dto.BucketSpan{ + {Offset: -2, Length: 1}, + {Offset: 1, Length: 1}, + }, + NegativeDelta: []int64{1, 1}, + PositiveSpan: []dto.BucketSpan{ + {Offset: 3, Length: 1}, + {Offset: 2, Length: 1}, + }, + PositiveDelta: []int64{1, 0}, + }, + }, + }, + } + prometheusMetricFamilyToProtoBuf(t, buffer, nativeHistogram) + + testCases := map[string]struct { + mutCfg func(*PromConfig) + enableNativeHistograms bool + expected []testExpectation + }{ + "feature enabled scrape classic off": { + enableNativeHistograms: true, + expected: []testExpectation{ + assertMetricPresent( // Scrape classic only histograms as is. + "test_classic_histogram", + compareMetricType(pmetric.MetricTypeHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + histogramPointComparator: []histogramPointComparator{ + compareHistogram(1213, 456, []float64{0.5, 10}, []uint64{789, 222, 202}), + }, + }}, + ), + assertMetricPresent( // Only scrape native buckets from mixed histograms. + "test_mixed_histogram", + compareMetricType(pmetric.MetricTypeExponentialHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + exponentialHistogramComparator: []exponentialHistogramComparator{ + compareExponentialHistogram(3, 1213, 456, 2, -1, []uint64{1, 0, 2}, -3, []uint64{1, 0, 1}), + }, + }}, + ), + assertMetricPresent( // Scrape native only histograms as is. + "test_native_histogram", + compareMetricType(pmetric.MetricTypeExponentialHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + exponentialHistogramComparator: []exponentialHistogramComparator{ + compareExponentialHistogram(3, 1214, 3456, 5, -3, []uint64{1, 0, 2}, 2, []uint64{1, 0, 0, 1}), + }, + }}, + ), + }, + }, + "feature disabled scrape classic off": { + enableNativeHistograms: false, + expected: []testExpectation{ + assertMetricPresent( // Scrape classic only histograms as is. + "test_classic_histogram", + compareMetricType(pmetric.MetricTypeHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + histogramPointComparator: []histogramPointComparator{ + compareHistogram(1213, 456, []float64{0.5, 10}, []uint64{789, 222, 202}), + }, + }}, + ), + assertMetricPresent( // Fallback to scraping classic histograms if feature is off. + "test_mixed_histogram", + compareMetricType(pmetric.MetricTypeHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + histogramPointComparator: []histogramPointComparator{ + compareHistogram(1213, 456, []float64{0.5, 10}, []uint64{789, 222, 202}), + }, + }}, + ), + // When the native histograms feature is off, no native histograms are scraped. + assertMetricAbsent("test_native_histogram"), + }, + }, + "feature enabled scrape classic on": { + mutCfg: func(cfg *PromConfig) { + for _, scrapeConfig := range cfg.ScrapeConfigs { + scrapeConfig.ScrapeClassicHistograms = true + } + }, + enableNativeHistograms: true, + expected: []testExpectation{ + assertMetricPresent( // Scrape classic only histograms as is. + "test_classic_histogram", + compareMetricType(pmetric.MetricTypeHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + histogramPointComparator: []histogramPointComparator{ + compareHistogram(1213, 456, []float64{0.5, 10}, []uint64{789, 222, 202}), + }, + }}, + ), + assertMetricPresent( // Only scrape classic buckets from mixed histograms. + "test_mixed_histogram", + compareMetricType(pmetric.MetricTypeHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + histogramPointComparator: []histogramPointComparator{ + compareHistogram(1213, 456, []float64{0.5, 10}, []uint64{789, 222, 202}), + }, + }}, + ), + assertMetricPresent( // Scrape native only histograms as is. + "test_native_histogram", + compareMetricType(pmetric.MetricTypeExponentialHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + exponentialHistogramComparator: []exponentialHistogramComparator{ + compareExponentialHistogram(3, 1214, 3456, 5, -3, []uint64{1, 0, 2}, 2, []uint64{1, 0, 0, 1}), + }, + }}, + ), + }, + }, + "feature disabled scrape classic on": { + mutCfg: func(cfg *PromConfig) { + for _, scrapeConfig := range cfg.ScrapeConfigs { + scrapeConfig.ScrapeClassicHistograms = true + } + }, + enableNativeHistograms: false, + expected: []testExpectation{ + assertMetricPresent( // Scrape classic only histograms as is. + "test_classic_histogram", + compareMetricType(pmetric.MetricTypeHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + histogramPointComparator: []histogramPointComparator{ + compareHistogram(1213, 456, []float64{0.5, 10}, []uint64{789, 222, 202}), + }, + }}, + ), + assertMetricPresent( // Only scrape classic buckets from mixed histograms. + "test_mixed_histogram", + compareMetricType(pmetric.MetricTypeHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + histogramPointComparator: []histogramPointComparator{ + compareHistogram(1213, 456, []float64{0.5, 10}, []uint64{789, 222, 202}), + }, + }}, + ), + // When the native histograms feature is off, no native histograms are scraped. + assertMetricAbsent("test_native_histogram"), + }, + }, + } + + defer func() { + _ = featuregate.GlobalRegistry().Set("receiver.prometheusreceiver.EnableNativeHistograms", false) + }() + + for name, tc := range testCases { + t.Run(name, func(t *testing.T) { + err := featuregate.GlobalRegistry().Set("receiver.prometheusreceiver.EnableNativeHistograms", tc.enableNativeHistograms) + require.NoError(t, err) + + targets := []*testData{ + { + name: "target1", + pages: []mockPrometheusResponse{ + {code: 200, useProtoBuf: true, buf: buffer.Bytes()}, + }, + validateFunc: func(t *testing.T, td *testData, result []pmetric.ResourceMetrics) { + verifyNumValidScrapeResults(t, td, result) + doCompare(t, "target1", td.attributes, result[0], tc.expected) + }, + }, + } + mutCfg := tc.mutCfg + if mutCfg == nil { + mutCfg = func(*PromConfig) {} + } + testComponent(t, targets, func(c *Config) { + c.PrometheusConfig.GlobalConfig.ScrapeProtocols = []config.ScrapeProtocol{config.PrometheusProto} + }, mutCfg) + }) + } +} + +func TestStaleExponentialHistogram(t *testing.T) { + mf := &dto.MetricFamily{ + Name: "test_counter", + Type: dto.MetricType_COUNTER, + Metric: []dto.Metric{ + { + Label: []dto.LabelPair{ + { + Name: "foo", + Value: "bar", + }, + }, + Counter: &dto.Counter{ + Value: 1234, + }, + }, + }, + } + buffer1 := prometheusMetricFamilyToProtoBuf(t, nil, mf) + nativeHistogram := &dto.MetricFamily{ + Name: "test_native_histogram", + Type: dto.MetricType_HISTOGRAM, + Metric: []dto.Metric{ + { + Histogram: &dto.Histogram{ + SampleCount: 1213, + SampleSum: 456, + // Integer counter histogram definition + Schema: 3, + ZeroThreshold: 0.001, + ZeroCount: 2, + NegativeSpan: []dto.BucketSpan{ + {Offset: 0, Length: 1}, + {Offset: 1, Length: 1}, + }, + NegativeDelta: []int64{1, 1}, + PositiveSpan: []dto.BucketSpan{ + {Offset: -2, Length: 1}, + {Offset: 2, Length: 1}, + }, + PositiveDelta: []int64{1, 0}, + }, + }, + }, + } + prometheusMetricFamilyToProtoBuf(t, buffer1, nativeHistogram) + + mf = &dto.MetricFamily{ + Name: "test_counter", + Type: dto.MetricType_COUNTER, + Metric: []dto.Metric{ + { + Label: []dto.LabelPair{ + { + Name: "foo", + Value: "bar", + }, + }, + Counter: &dto.Counter{ + Value: 2222, + }, + }, + }, + } + buffer2 := prometheusMetricFamilyToProtoBuf(t, nil, mf) + + expectations1 := []testExpectation{ + assertMetricPresent( + "test_native_histogram", + compareMetricType(pmetric.MetricTypeExponentialHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + exponentialHistogramComparator: []exponentialHistogramComparator{ + compareExponentialHistogram(3, 1213, 456, 2, -1, []uint64{1, 0, 2}, -3, []uint64{1, 0, 0, 1}), + }, + }}, + ), + } + + expectations2 := []testExpectation{ + assertMetricPresent( + "test_native_histogram", + compareMetricType(pmetric.MetricTypeExponentialHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + exponentialHistogramComparator: []exponentialHistogramComparator{ + assertExponentialHistogramPointFlagNoRecordedValue(), + }, + }}, + ), + } + + targets := []*testData{ + { + name: "target1", + pages: []mockPrometheusResponse{ + {code: 200, useProtoBuf: true, buf: buffer1.Bytes()}, + {code: 200, useProtoBuf: true, buf: buffer2.Bytes()}, + }, + validateFunc: func(t *testing.T, td *testData, result []pmetric.ResourceMetrics) { + verifyNumValidScrapeResults(t, td, result) + doCompare(t, "target11", td.attributes, result[0], expectations1) + doCompare(t, "target12", td.attributes, result[1], expectations2) + }, + }, + } + err := featuregate.GlobalRegistry().Set("receiver.prometheusreceiver.EnableNativeHistograms", true) + require.NoError(t, err) + defer func() { + _ = featuregate.GlobalRegistry().Set("receiver.prometheusreceiver.EnableNativeHistograms", false) + }() + testComponent(t, targets, func(c *Config) { + c.PrometheusConfig.GlobalConfig.ScrapeProtocols = []config.ScrapeProtocol{config.PrometheusProto} + }) +} + +func TestFloatCounterHistogram(t *testing.T) { + nativeHistogram := &dto.MetricFamily{ + Name: "test_native_histogram", + Type: dto.MetricType_HISTOGRAM, + Metric: []dto.Metric{ + { + Histogram: &dto.Histogram{ + SampleCountFloat: 1213.0, + SampleSum: 456, + // Float counter histogram definition + Schema: -1, + ZeroThreshold: 0.001, + ZeroCountFloat: 2.0, + NegativeSpan: []dto.BucketSpan{ + {Offset: 0, Length: 1}, + {Offset: 1, Length: 1}, + }, + NegativeCount: []float64{1.5, 2.5}, + PositiveSpan: []dto.BucketSpan{ + {Offset: -2, Length: 1}, + {Offset: 2, Length: 1}, + }, + PositiveCount: []float64{1.0, 3.0}, + }, + }, + }, + } + buffer := prometheusMetricFamilyToProtoBuf(t, nil, nativeHistogram) + + expectations1 := []testExpectation{ + assertMetricPresent( + "test_native_histogram", + compareMetricType(pmetric.MetricTypeExponentialHistogram), + compareMetricUnit(""), + []dataPointExpectation{{ + exponentialHistogramComparator: []exponentialHistogramComparator{ + compareExponentialHistogram(-1, 1213, 456, 2, -1, []uint64{1, 0, 2}, -3, []uint64{1, 0, 0, 3}), + }, + }}, + ), + } + + targets := []*testData{ + { + name: "target1", + pages: []mockPrometheusResponse{ + {code: 200, useProtoBuf: true, buf: buffer.Bytes()}, + }, + validateFunc: func(t *testing.T, td *testData, result []pmetric.ResourceMetrics) { + verifyNumValidScrapeResults(t, td, result) + doCompare(t, "target1", td.attributes, result[0], expectations1) + }, + }, + } + err := featuregate.GlobalRegistry().Set("receiver.prometheusreceiver.EnableNativeHistograms", true) + require.NoError(t, err) + defer func() { + _ = featuregate.GlobalRegistry().Set("receiver.prometheusreceiver.EnableNativeHistograms", false) + }() + testComponent(t, targets, func(c *Config) { + c.PrometheusConfig.GlobalConfig.ScrapeProtocols = []config.ScrapeProtocol{config.PrometheusProto} + }) +} From decc66f276b9bb3ca7b775d59a93340503668641 Mon Sep 17 00:00:00 2001 From: Dominik Rosiek <58699848+sumo-drosiek@users.noreply.github.com> Date: Tue, 9 Apr 2024 16:07:37 +0200 Subject: [PATCH 15/21] [chore] [exporter/sumologic] sync internal package with Sumo Logic repository (#31480) **Description:** Those files can be added independently of their usage which should make other PRs smaller **Link to tracking Issue:** #31479 **Testing:** Unit tests **Documentation:** N/A --------- Signed-off-by: Dominik Rosiek --- exporter/sumologicexporter/go.mod | 2 + exporter/sumologicexporter/go.sum | 76 ++++++++ .../internal/observability/observability.go | 126 +++++++++++++ .../observability/observability_test.go | 177 ++++++++++++++++++ 4 files changed, 381 insertions(+) create mode 100644 exporter/sumologicexporter/internal/observability/observability.go create mode 100644 exporter/sumologicexporter/internal/observability/observability_test.go diff --git a/exporter/sumologicexporter/go.mod b/exporter/sumologicexporter/go.mod index 030157196bec..a8b9745c389c 100644 --- a/exporter/sumologicexporter/go.mod +++ b/exporter/sumologicexporter/go.mod @@ -4,6 +4,7 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 + go.opencensus.io v0.24.0 go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b @@ -26,6 +27,7 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect github.com/gogo/protobuf v1.3.2 // indirect + github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect github.com/golang/protobuf v1.5.3 // indirect github.com/golang/snappy v0.0.4 // indirect github.com/google/uuid v1.6.0 // indirect diff --git a/exporter/sumologicexporter/go.sum b/exporter/sumologicexporter/go.sum index 4f0891efeb8a..e35513bfd6f3 100644 --- a/exporter/sumologicexporter/go.sum +++ b/exporter/sumologicexporter/go.sum @@ -1,12 +1,21 @@ +cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= +github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA= @@ -20,15 +29,35 @@ github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 h1:TQcrn6Wq+sKGkpyPvppOz99zsM github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e h1:1r7pUrabqp18hOBcwBwiTsbnFeTZHV9eER/QT5JVZxY= +github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= +github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= +github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mOkIeek= @@ -62,6 +91,7 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= @@ -73,11 +103,18 @@ github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncj github.com/rs/cors v1.10.1 h1:L0uuZVXIKlI1SShY2nhFfo44TYvDPQ1w4oFkUJNfhyo= github.com/rs/cors v1.10.1/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= +go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= @@ -137,17 +174,30 @@ go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= +golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -158,6 +208,10 @@ golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= @@ -165,10 +219,29 @@ golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8T golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 h1:AjyfHzEPEFp/NpvfN5g+KDla3EMojjhRVZc1i7cj+oM= google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80/go.mod h1:PAREbraiVEVGVdTZsVWjSbbTtSyGbAgIIvni8a8CD5s= +google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= +google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= google.golang.org/grpc v1.62.1 h1:B4n+nfKzOICUXMgyrNd19h/I9oH0L1pizfk1d4zSgTk= google.golang.org/grpc v1.62.1/go.mod h1:IWTG0VlJLCh1SkC58F7np9ka9mx/WNkjl4PGJaiq+QE= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= +google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= @@ -176,5 +249,8 @@ google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHh gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/exporter/sumologicexporter/internal/observability/observability.go b/exporter/sumologicexporter/internal/observability/observability.go new file mode 100644 index 000000000000..8476713bd2c7 --- /dev/null +++ b/exporter/sumologicexporter/internal/observability/observability.go @@ -0,0 +1,126 @@ +// Copyright The OpenTelemetry Authors +// SPDX-License-Identifier: Apache-2.0 + +package observability // import "github.com/open-telemetry/opentelemetry-collector-contrib/exporter/sumologicexporter/internal/observability" + +import ( + "context" + "fmt" + "time" + + "go.opencensus.io/stats" + "go.opencensus.io/stats/view" + "go.opencensus.io/tag" +) + +func init() { + err := view.Register( + viewRequestsSent, + viewRequestsDuration, + viewRequestsBytes, + viewRequestsRecords, + ) + if err != nil { + fmt.Printf("Failed to register sumologic exporter's views: %v\n", err) + } +} + +var ( + mRequestsSent = stats.Int64("exporter/requests/sent", "Number of requests", "1") + mRequestsDuration = stats.Int64("exporter/requests/duration", "Duration of HTTP requests (in milliseconds)", "0") + mRequestsBytes = stats.Int64("exporter/requests/bytes", "Total size of requests (in bytes)", "0") + mRequestsRecords = stats.Int64("exporter/requests/records", "Total size of requests (in number of records)", "0") + + statusKey, _ = tag.NewKey("status_code") // nolint:errcheck + endpointKey, _ = tag.NewKey("endpoint") // nolint:errcheck + pipelineKey, _ = tag.NewKey("pipeline") // nolint:errcheck + exporterKey, _ = tag.NewKey("exporter") // nolint:errcheck +) + +var viewRequestsSent = &view.View{ + Name: mRequestsSent.Name(), + Description: mRequestsSent.Description(), + Measure: mRequestsSent, + TagKeys: []tag.Key{statusKey, endpointKey, pipelineKey, exporterKey}, + Aggregation: view.Count(), +} + +var viewRequestsDuration = &view.View{ + Name: mRequestsDuration.Name(), + Description: mRequestsDuration.Description(), + Measure: mRequestsDuration, + TagKeys: []tag.Key{statusKey, endpointKey, pipelineKey, exporterKey}, + Aggregation: view.Sum(), +} + +var viewRequestsBytes = &view.View{ + Name: mRequestsBytes.Name(), + Description: mRequestsBytes.Description(), + Measure: mRequestsBytes, + TagKeys: []tag.Key{statusKey, endpointKey, pipelineKey, exporterKey}, + Aggregation: view.Sum(), +} + +var viewRequestsRecords = &view.View{ + Name: mRequestsRecords.Name(), + Description: mRequestsRecords.Description(), + Measure: mRequestsRecords, + TagKeys: []tag.Key{statusKey, endpointKey, pipelineKey, exporterKey}, + Aggregation: view.Sum(), +} + +// RecordRequestsSent increments the metric that records sent requests +func RecordRequestsSent(statusCode int, endpoint string, pipeline string, exporter string) error { + return stats.RecordWithTags( + context.Background(), + []tag.Mutator{ + tag.Insert(statusKey, fmt.Sprint(statusCode)), + tag.Insert(endpointKey, endpoint), + tag.Insert(pipelineKey, pipeline), + tag.Insert(exporterKey, exporter), + }, + mRequestsSent.M(int64(1)), + ) +} + +// RecordRequestsDuration update metric which records request duration +func RecordRequestsDuration(duration time.Duration, statusCode int, endpoint string, pipeline string, exporter string) error { + return stats.RecordWithTags( + context.Background(), + []tag.Mutator{ + tag.Insert(statusKey, fmt.Sprint(statusCode)), + tag.Insert(endpointKey, endpoint), + tag.Insert(pipelineKey, pipeline), + tag.Insert(exporterKey, exporter), + }, + mRequestsDuration.M(duration.Milliseconds()), + ) +} + +// RecordRequestsBytes update metric which records number of send bytes +func RecordRequestsBytes(bytes int64, statusCode int, endpoint string, pipeline string, exporter string) error { + return stats.RecordWithTags( + context.Background(), + []tag.Mutator{ + tag.Insert(statusKey, fmt.Sprint(statusCode)), + tag.Insert(endpointKey, endpoint), + tag.Insert(pipelineKey, pipeline), + tag.Insert(exporterKey, exporter), + }, + mRequestsBytes.M(bytes), + ) +} + +// RecordRequestsRecords update metric which records number of sent records +func RecordRequestsRecords(records int64, statusCode int, endpoint string, pipeline string, exporter string) error { + return stats.RecordWithTags( + context.Background(), + []tag.Mutator{ + tag.Insert(statusKey, fmt.Sprint(statusCode)), + tag.Insert(endpointKey, endpoint), + tag.Insert(pipelineKey, pipeline), + tag.Insert(exporterKey, exporter), + }, + mRequestsRecords.M(records), + ) +} diff --git a/exporter/sumologicexporter/internal/observability/observability_test.go b/exporter/sumologicexporter/internal/observability/observability_test.go new file mode 100644 index 000000000000..321394115ac8 --- /dev/null +++ b/exporter/sumologicexporter/internal/observability/observability_test.go @@ -0,0 +1,177 @@ +// Copyright The OpenTelemetry Authors +// SPDX-License-Identifier: Apache-2.0 + +package observability // import "github.com/open-telemetry/opentelemetry-collector-contrib/exporter/sumologicexporter/internal/observability" + +import ( + "context" + "sort" + "testing" + "time" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "go.opencensus.io/metric/metricdata" + "go.opencensus.io/metric/metricexport" +) + +type exporter struct { + pipe chan *metricdata.Metric +} + +func newExporter() *exporter { + return &exporter{ + make(chan *metricdata.Metric), + } +} + +// Run goroutine which is going to receive `after` metrics. +// Goroutine is writing to returned chan +func (e *exporter) ReturnAfter(after int) chan []*metricdata.Metric { + ch := make(chan []*metricdata.Metric) + go func() { + received := []*metricdata.Metric{} + for m := range e.pipe { + received = append(received, m) + if len(received) >= after { + break + } + } + ch <- received + }() + return ch +} + +// Write received metrics to data channel +func (e *exporter) ExportMetrics(_ context.Context, data []*metricdata.Metric) error { + for _, m := range data { + e.pipe <- m + } + return nil +} + +// Creates metrics reader and forward metrics from it to chData +// Sens empty structs to fail chan afterwards +func metricReader(chData chan []*metricdata.Metric, fail chan struct{}, count int) { + + // Add a manual retry mechanism in case there's a hiccup reading the + // metrics from producers in ReadAndExport(): we can wait for the metrics + // to come instead of failing because they didn't come right away. + for i := 0; i < 10; i++ { + e := newExporter() + ch := e.ReturnAfter(count) + go metricexport.NewReader().ReadAndExport(e) + + select { + case <-time.After(500 * time.Millisecond): + + case data := <-ch: + chData <- data + return + } + } + + fail <- struct{}{} +} + +// NOTE: +// This test can only be run with -count 1 because of static +// metricproducer.GlobalManager() used in metricexport.NewReader(). +func TestMetrics(t *testing.T) { + const ( + statusCode = 200 + endpoint = "some/uri" + pipeline = "metrics" + exporter = "sumologic/my-name" + bytesFunc = "bytes" + recordsFunc = "records" + durationFunc = "duration" + sentFunc = "sent" + ) + type testCase struct { + name string + bytes int64 + records int64 + recordFunc string + duration time.Duration + } + tests := []testCase{ + { + name: "exporter/requests/sent", + recordFunc: sentFunc, + }, + { + name: "exporter/requests/duration", + recordFunc: durationFunc, + duration: time.Millisecond, + }, + { + name: "exporter/requests/bytes", + recordFunc: bytesFunc, + bytes: 1, + }, + { + name: "exporter/requests/records", + recordFunc: recordsFunc, + records: 1, + }, + } + + var ( + fail = make(chan struct{}) + chData = make(chan []*metricdata.Metric) + ) + + go metricReader(chData, fail, len(tests)) + + for _, tt := range tests { + switch tt.recordFunc { + case sentFunc: + require.NoError(t, RecordRequestsSent(statusCode, endpoint, pipeline, exporter)) + case durationFunc: + require.NoError(t, RecordRequestsDuration(tt.duration, statusCode, endpoint, pipeline, exporter)) + case bytesFunc: + require.NoError(t, RecordRequestsBytes(tt.bytes, statusCode, endpoint, pipeline, exporter)) + case recordsFunc: + require.NoError(t, RecordRequestsRecords(tt.records, statusCode, endpoint, pipeline, exporter)) + } + } + + var data []*metricdata.Metric + select { + case <-fail: + t.Fatalf("timedout waiting for metrics to arrive") + case data = <-chData: + } + + sort.Slice(tests, func(i, j int) bool { + return tests[i].name < tests[j].name + }) + + sort.Slice(data, func(i, j int) bool { + return data[i].Descriptor.Name < data[j].Descriptor.Name + }) + + for i, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + require.Len(t, data, len(tests)) + d := data[i] + assert.Equal(t, tt.name, d.Descriptor.Name, "Expected %v at index %v, but got %v.", tt.name, i, d.Descriptor.Name) + require.Len(t, d.TimeSeries, 1) + require.Len(t, d.TimeSeries[0].Points, 1) + assert.Equal(t, d.TimeSeries[0].Points[0].Value, int64(1)) + + require.Len(t, d.TimeSeries[0].LabelValues, 4) + + require.True(t, d.TimeSeries[0].LabelValues[0].Present) + require.True(t, d.TimeSeries[0].LabelValues[1].Present) + require.True(t, d.TimeSeries[0].LabelValues[2].Present) + require.True(t, d.TimeSeries[0].LabelValues[3].Present) + + assert.Equal(t, d.TimeSeries[0].LabelValues[0].Value, "some/uri") + assert.Equal(t, d.TimeSeries[0].LabelValues[1].Value, "sumologic/my-name") + assert.Equal(t, d.TimeSeries[0].LabelValues[2].Value, "metrics") + assert.Equal(t, d.TimeSeries[0].LabelValues[3].Value, "200") + }) + } +} From 0250e2ebb62e2f9183cefb0df3c3f4d416c49bd8 Mon Sep 17 00:00:00 2001 From: Curtis Robert Date: Tue, 9 Apr 2024 10:45:32 -0700 Subject: [PATCH 16/21] [chore][processor/resourcedetection] Fix README's config example (#32270) The example config for enabling AKS's `k8s.cluster.name` metric was incorrect. This fixes it to be the correct format. Resolves https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/32258 --- processor/resourcedetectionprocessor/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/processor/resourcedetectionprocessor/README.md b/processor/resourcedetectionprocessor/README.md index f0957e01e806..88f2d84f09eb 100644 --- a/processor/resourcedetectionprocessor/README.md +++ b/processor/resourcedetectionprocessor/README.md @@ -417,7 +417,8 @@ processors: override: false aks: resource_attributes: - k8s.cluster.name: true + k8s.cluster.name: + enabled: true ``` Azure AKS cluster name is derived from the Azure Instance Metadata Service's (IMDS) infrastructure resource group field. This field contains the resource group and name of the cluster, separated by underscores. e.g: `MC___`. From b007ca2b86a8eaa5ed02346c66900132dc940371 Mon Sep 17 00:00:00 2001 From: Alex Boten <223565+codeboten@users.noreply.github.com> Date: Tue, 9 Apr 2024 11:08:33 -0700 Subject: [PATCH 17/21] [chore] update core to latest (#32264) Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com> --- cmd/configschema/go.mod | 82 ++++----- cmd/configschema/go.sum | 166 ++++++++--------- cmd/githubgen/go.mod | 4 +- cmd/githubgen/go.sum | 8 +- cmd/opampsupervisor/go.mod | 6 +- cmd/opampsupervisor/go.sum | 12 +- cmd/otelcontribcol/builder-config.yaml | 22 +-- cmd/otelcontribcol/go.mod | 84 ++++----- cmd/otelcontribcol/go.sum | 170 +++++++++--------- cmd/oteltestbedcol/builder-config.yaml | 16 +- cmd/oteltestbedcol/go.mod | 78 ++++---- cmd/oteltestbedcol/go.sum | 158 ++++++++-------- cmd/telemetrygen/go.mod | 10 +- cmd/telemetrygen/go.sum | 20 +-- cmd/telemetrygen/internal/e2etest/go.mod | 40 ++--- cmd/telemetrygen/internal/e2etest/go.sum | 82 ++++----- confmap/provider/s3provider/go.mod | 2 +- confmap/provider/s3provider/go.sum | 4 +- .../provider/secretsmanagerprovider/go.mod | 2 +- .../provider/secretsmanagerprovider/go.sum | 4 +- connector/countconnector/go.mod | 16 +- connector/countconnector/go.sum | 34 ++-- connector/datadogconnector/go.mod | 71 ++++---- connector/datadogconnector/go.sum | 146 +++++++-------- connector/exceptionsconnector/go.mod | 18 +- connector/exceptionsconnector/go.sum | 38 ++-- connector/failoverconnector/go.mod | 16 +- connector/failoverconnector/go.sum | 34 ++-- connector/grafanacloudconnector/go.mod | 16 +- connector/grafanacloudconnector/go.sum | 34 ++-- connector/routingconnector/go.mod | 16 +- connector/routingconnector/go.sum | 34 ++-- connector/servicegraphconnector/go.mod | 45 ++--- connector/servicegraphconnector/go.sum | 90 +++++----- connector/spanmetricsconnector/go.mod | 18 +- connector/spanmetricsconnector/go.sum | 38 ++-- .../alertmanager_exporter.go | 4 +- exporter/alertmanagerexporter/go.mod | 40 ++--- exporter/alertmanagerexporter/go.sum | 82 ++++----- .../alibabacloudlogserviceexporter/go.mod | 26 +-- .../alibabacloudlogserviceexporter/go.sum | 54 +++--- exporter/awscloudwatchlogsexporter/go.mod | 22 +-- exporter/awscloudwatchlogsexporter/go.sum | 46 ++--- exporter/awsemfexporter/go.mod | 26 +-- exporter/awsemfexporter/go.sum | 54 +++--- exporter/awskinesisexporter/go.mod | 24 +-- exporter/awskinesisexporter/go.sum | 50 +++--- exporter/awss3exporter/go.mod | 49 ++--- exporter/awss3exporter/go.sum | 98 +++++----- exporter/awsxrayexporter/go.mod | 26 +-- exporter/awsxrayexporter/go.sum | 54 +++--- exporter/azuredataexplorerexporter/go.mod | 24 +-- exporter/azuredataexplorerexporter/go.sum | 50 +++--- exporter/azuremonitorexporter/go.mod | 26 +-- exporter/azuremonitorexporter/go.sum | 54 +++--- exporter/carbonexporter/go.mod | 28 +-- exporter/carbonexporter/go.sum | 58 +++--- exporter/cassandraexporter/go.mod | 24 +-- exporter/cassandraexporter/go.sum | 50 +++--- exporter/clickhouseexporter/go.mod | 26 +-- exporter/clickhouseexporter/go.sum | 54 +++--- exporter/coralogixexporter/go.mod | 40 ++--- exporter/coralogixexporter/go.sum | 82 ++++----- exporter/datadogexporter/go.mod | 71 ++++---- exporter/datadogexporter/go.sum | 146 +++++++-------- .../datadogexporter/integrationtest/go.mod | 71 ++++---- .../datadogexporter/integrationtest/go.sum | 146 +++++++-------- exporter/datasetexporter/go.mod | 24 +-- exporter/datasetexporter/go.sum | 50 +++--- exporter/dynatraceexporter/go.mod | 38 ++-- exporter/dynatraceexporter/go.sum | 78 ++++---- .../dynatraceexporter/metrics_exporter.go | 4 +- exporter/elasticsearchexporter/go.mod | 28 +-- exporter/elasticsearchexporter/go.sum | 58 +++--- exporter/fileexporter/go.mod | 22 +-- exporter/fileexporter/go.sum | 46 ++--- exporter/googlecloudexporter/go.mod | 26 +-- exporter/googlecloudexporter/go.sum | 54 +++--- exporter/googlecloudpubsubexporter/go.mod | 22 +-- exporter/googlecloudpubsubexporter/go.sum | 46 ++--- .../googlemanagedprometheusexporter/go.mod | 47 ++--- .../googlemanagedprometheusexporter/go.sum | 94 +++++----- exporter/honeycombmarkerexporter/go.mod | 38 ++-- exporter/honeycombmarkerexporter/go.sum | 78 ++++---- .../honeycombmarkerexporter/logs_exporter.go | 4 +- exporter/influxdbexporter/go.mod | 40 ++--- exporter/influxdbexporter/go.sum | 82 ++++----- exporter/influxdbexporter/writer.go | 4 +- exporter/instanaexporter/exporter.go | 4 +- exporter/instanaexporter/go.mod | 40 ++--- exporter/instanaexporter/go.sum | 82 ++++----- exporter/kafkaexporter/go.mod | 28 +-- exporter/kafkaexporter/go.sum | 58 +++--- exporter/kineticaexporter/go.mod | 24 +-- exporter/kineticaexporter/go.sum | 50 +++--- exporter/loadbalancingexporter/go.mod | 65 +++---- exporter/loadbalancingexporter/go.sum | 130 +++++++------- exporter/logicmonitorexporter/go.mod | 38 ++-- exporter/logicmonitorexporter/go.sum | 78 ++++---- .../logicmonitorexporter/logs_exporter.go | 2 +- .../logicmonitorexporter/traces_exporter.go | 2 +- exporter/logzioexporter/exporter.go | 4 +- exporter/logzioexporter/go.mod | 40 ++--- exporter/logzioexporter/go.sum | 82 ++++----- exporter/lokiexporter/exporter.go | 4 +- exporter/lokiexporter/go.mod | 40 ++--- exporter/lokiexporter/go.sum | 82 ++++----- exporter/mezmoexporter/exporter.go | 4 +- exporter/mezmoexporter/go.mod | 40 ++--- exporter/mezmoexporter/go.sum | 82 ++++----- exporter/opencensusexporter/go.mod | 42 ++--- exporter/opencensusexporter/go.sum | 86 ++++----- exporter/opensearchexporter/go.mod | 38 ++-- exporter/opensearchexporter/go.sum | 78 ++++---- .../opensearchexporter/sso_log_exporter.go | 4 +- .../opensearchexporter/sso_trace_exporter.go | 4 +- exporter/otelarrowexporter/go.mod | 40 ++--- exporter/otelarrowexporter/go.sum | 82 ++++----- exporter/prometheusexporter/go.mod | 38 ++-- exporter/prometheusexporter/go.sum | 122 ++++++------- exporter/prometheusexporter/prometheus.go | 6 +- .../prometheusremotewriteexporter/exporter.go | 2 +- exporter/prometheusremotewriteexporter/go.mod | 40 ++--- exporter/prometheusremotewriteexporter/go.sum | 82 ++++----- exporter/pulsarexporter/go.mod | 26 +-- exporter/pulsarexporter/go.sum | 54 +++--- exporter/rabbitmqexporter/go.mod | 22 +-- exporter/rabbitmqexporter/go.sum | 46 ++--- exporter/sapmexporter/go.mod | 26 +-- exporter/sapmexporter/go.sum | 54 +++--- exporter/sentryexporter/go.mod | 24 +-- exporter/sentryexporter/go.sum | 50 +++--- exporter/signalfxexporter/exporter.go | 10 +- exporter/signalfxexporter/exporter_test.go | 6 +- exporter/signalfxexporter/go.mod | 40 ++--- exporter/signalfxexporter/go.sum | 82 ++++----- .../internal/correlation/correlation.go | 10 +- exporter/skywalkingexporter/go.mod | 42 ++--- exporter/skywalkingexporter/go.sum | 86 ++++----- exporter/splunkhecexporter/client.go | 6 +- exporter/splunkhecexporter/go.mod | 40 ++--- exporter/splunkhecexporter/go.sum | 82 ++++----- exporter/sumologicexporter/exporter.go | 4 +- exporter/sumologicexporter/go.mod | 38 ++-- exporter/sumologicexporter/go.sum | 78 ++++---- exporter/syslogexporter/go.mod | 26 +-- exporter/syslogexporter/go.sum | 54 +++--- .../tencentcloudlogserviceexporter/go.mod | 26 +-- .../tencentcloudlogserviceexporter/go.sum | 54 +++--- exporter/zipkinexporter/go.mod | 40 ++--- exporter/zipkinexporter/go.sum | 82 ++++----- exporter/zipkinexporter/zipkin.go | 4 +- extension/ackextension/go.mod | 10 +- extension/ackextension/go.sum | 24 +-- extension/asapauthextension/go.mod | 16 +- extension/asapauthextension/go.sum | 32 ++-- extension/awsproxy/go.mod | 20 +-- extension/awsproxy/go.sum | 40 ++--- extension/basicauthextension/go.mod | 18 +- extension/basicauthextension/go.sum | 36 ++-- extension/bearertokenauthextension/go.mod | 16 +- extension/bearertokenauthextension/go.sum | 32 ++-- .../encoding/avrologencodingextension/go.mod | 12 +- .../encoding/avrologencodingextension/go.sum | 24 +-- extension/encoding/go.mod | 10 +- extension/encoding/go.sum | 24 +-- .../encoding/jaegerencodingextension/go.mod | 14 +- .../encoding/jaegerencodingextension/go.sum | 28 +-- .../encoding/jsonlogencodingextension/go.mod | 12 +- .../encoding/jsonlogencodingextension/go.sum | 24 +-- .../encoding/otlpencodingextension/go.mod | 12 +- .../encoding/otlpencodingextension/go.sum | 24 +-- .../encoding/textencodingextension/go.mod | 12 +- .../encoding/textencodingextension/go.sum | 24 +-- .../encoding/zipkinencodingextension/go.mod | 14 +- .../encoding/zipkinencodingextension/go.sum | 28 +-- extension/googleclientauthextension/go.mod | 14 +- extension/googleclientauthextension/go.sum | 28 +-- extension/headerssetterextension/go.mod | 16 +- extension/headerssetterextension/go.sum | 32 ++-- extension/healthcheckextension/go.mod | 30 ++-- extension/healthcheckextension/go.sum | 60 +++---- .../healthcheckextension.go | 6 +- extension/httpforwarderextension/extension.go | 8 +- extension/httpforwarderextension/go.mod | 30 ++-- extension/httpforwarderextension/go.sum | 60 +++---- extension/jaegerremotesampling/go.mod | 34 ++-- extension/jaegerremotesampling/go.sum | 70 ++++---- .../jaegerremotesampling/internal/http.go | 6 +- .../extension_test.go | 2 +- extension/oauth2clientauthextension/go.mod | 30 ++-- extension/oauth2clientauthextension/go.sum | 60 +++---- extension/observer/dockerobserver/go.mod | 12 +- extension/observer/dockerobserver/go.sum | 24 +-- extension/observer/ecsobserver/go.mod | 12 +- extension/observer/ecsobserver/go.sum | 24 +-- extension/observer/ecstaskobserver/go.mod | 30 ++-- extension/observer/ecstaskobserver/go.sum | 60 +++---- extension/observer/hostobserver/go.mod | 12 +- extension/observer/hostobserver/go.sum | 24 +-- extension/observer/k8sobserver/go.mod | 12 +- extension/observer/k8sobserver/go.sum | 24 +-- extension/oidcauthextension/go.mod | 16 +- extension/oidcauthextension/go.sum | 32 ++-- extension/opampextension/go.mod | 18 +- extension/opampextension/go.sum | 36 ++-- extension/pprofextension/go.mod | 16 +- extension/pprofextension/go.sum | 32 ++-- extension/remotetapextension/extension.go | 4 +- extension/remotetapextension/go.mod | 30 ++-- extension/remotetapextension/go.sum | 60 +++---- extension/sigv4authextension/go.mod | 14 +- extension/sigv4authextension/go.sum | 28 +-- .../solarwindsapmsettingsextension/go.mod | 12 +- .../solarwindsapmsettingsextension/go.sum | 24 +-- extension/storage/dbstorage/go.mod | 12 +- extension/storage/dbstorage/go.sum | 24 +-- extension/storage/filestorage/go.mod | 14 +- extension/storage/filestorage/go.sum | 28 +-- extension/storage/go.mod | 12 +- extension/storage/go.sum | 24 +-- extension/sumologicextension/extension.go | 14 +- .../sumologicextension/extension_test.go | 2 +- extension/sumologicextension/go.mod | 30 ++-- extension/sumologicextension/go.sum | 60 +++---- go.mod | 82 ++++----- go.sum | 166 ++++++++--------- internal/aws/containerinsight/go.mod | 2 +- internal/aws/containerinsight/go.sum | 4 +- internal/aws/cwlogs/go.mod | 8 +- internal/aws/cwlogs/go.sum | 16 +- internal/aws/ecsutil/client.go | 5 +- internal/aws/ecsutil/client_test.go | 3 +- internal/aws/ecsutil/go.mod | 30 ++-- internal/aws/ecsutil/go.sum | 60 +++---- internal/aws/proxy/go.mod | 8 +- internal/aws/proxy/go.sum | 16 +- internal/aws/xray/go.mod | 8 +- internal/aws/xray/go.sum | 16 +- internal/common/go.mod | 2 +- internal/common/go.sum | 4 +- internal/coreinternal/go.mod | 18 +- internal/coreinternal/go.sum | 38 ++-- internal/datadog/go.mod | 12 +- internal/datadog/go.sum | 24 +-- internal/exp/metrics/go.mod | 2 +- internal/exp/metrics/go.sum | 4 +- internal/filter/go.mod | 14 +- internal/filter/go.sum | 28 +-- internal/kafka/go.mod | 4 +- internal/kafka/go.sum | 8 +- internal/kubelet/go.mod | 4 +- internal/kubelet/go.sum | 8 +- internal/metadataproviders/go.mod | 2 +- internal/metadataproviders/go.sum | 4 +- internal/sharedcomponent/go.mod | 10 +- internal/sharedcomponent/go.sum | 20 +-- internal/splunk/go.mod | 20 +-- internal/splunk/go.sum | 46 ++--- internal/sqlquery/go.mod | 14 +- internal/sqlquery/go.sum | 28 +-- internal/tools/go.mod | 16 +- internal/tools/go.sum | 32 ++-- pkg/batchperresourceattr/go.mod | 4 +- pkg/batchperresourceattr/go.sum | 12 +- pkg/batchpersignal/go.mod | 2 +- pkg/batchpersignal/go.sum | 4 +- pkg/experimentalmetricmetadata/go.mod | 2 +- pkg/experimentalmetricmetadata/go.sum | 4 +- pkg/golden/go.mod | 2 +- pkg/golden/go.sum | 4 +- pkg/ottl/go.mod | 10 +- pkg/ottl/go.sum | 20 +-- pkg/pdatatest/go.mod | 2 +- pkg/pdatatest/go.sum | 4 +- pkg/pdatautil/go.mod | 2 +- pkg/pdatautil/go.sum | 4 +- pkg/resourcetotelemetry/go.mod | 12 +- pkg/resourcetotelemetry/go.sum | 28 +-- pkg/sampling/go.mod | 2 +- pkg/sampling/go.sum | 4 +- pkg/stanza/go.mod | 24 +-- pkg/stanza/go.sum | 50 +++--- pkg/translator/azure/go.mod | 10 +- pkg/translator/azure/go.sum | 20 +-- pkg/translator/jaeger/go.mod | 4 +- pkg/translator/jaeger/go.sum | 8 +- pkg/translator/loki/go.mod | 8 +- pkg/translator/loki/go.sum | 16 +- pkg/translator/opencensus/go.mod | 4 +- pkg/translator/opencensus/go.sum | 8 +- pkg/translator/prometheus/go.mod | 4 +- pkg/translator/prometheus/go.sum | 8 +- pkg/translator/prometheusremotewrite/go.mod | 8 +- pkg/translator/prometheusremotewrite/go.sum | 16 +- pkg/translator/signalfx/go.mod | 2 +- pkg/translator/signalfx/go.sum | 4 +- pkg/translator/skywalking/go.mod | 4 +- pkg/translator/skywalking/go.sum | 8 +- pkg/translator/zipkin/go.mod | 4 +- pkg/translator/zipkin/go.sum | 8 +- processor/attributesprocessor/go.mod | 21 +-- processor/attributesprocessor/go.sum | 42 ++--- processor/cumulativetodeltaprocessor/go.mod | 17 +- processor/cumulativetodeltaprocessor/go.sum | 34 ++-- processor/deltatocumulativeprocessor/go.mod | 16 +- processor/deltatocumulativeprocessor/go.sum | 32 ++-- processor/deltatorateprocessor/go.mod | 17 +- processor/deltatorateprocessor/go.sum | 34 ++-- processor/filterprocessor/go.mod | 21 +-- processor/filterprocessor/go.sum | 42 ++--- processor/groupbyattrsprocessor/go.mod | 17 +- processor/groupbyattrsprocessor/go.sum | 34 ++-- processor/groupbytraceprocessor/go.mod | 17 +- processor/groupbytraceprocessor/go.sum | 34 ++-- processor/intervalprocessor/go.mod | 16 +- processor/intervalprocessor/go.sum | 32 ++-- processor/k8sattributesprocessor/go.mod | 45 ++--- processor/k8sattributesprocessor/go.sum | 90 +++++----- processor/logstransformprocessor/go.mod | 23 +-- processor/logstransformprocessor/go.sum | 46 ++--- processor/metricsgenerationprocessor/go.mod | 17 +- processor/metricsgenerationprocessor/go.sum | 34 ++-- processor/metricstransformprocessor/go.mod | 17 +- processor/metricstransformprocessor/go.sum | 34 ++-- .../probabilisticsamplerprocessor/go.mod | 45 ++--- .../probabilisticsamplerprocessor/go.sum | 90 +++++----- processor/redactionprocessor/go.mod | 17 +- processor/redactionprocessor/go.sum | 34 ++-- processor/remotetapprocessor/go.mod | 35 ++-- processor/remotetapprocessor/go.sum | 70 ++++---- processor/remotetapprocessor/processor.go | 6 +- processor/resourcedetectionprocessor/go.mod | 37 ++-- processor/resourcedetectionprocessor/go.sum | 74 ++++---- .../resourcedetection_processor.go | 2 +- processor/resourceprocessor/go.mod | 17 +- processor/resourceprocessor/go.sum | 34 ++-- processor/routingprocessor/go.mod | 45 ++--- processor/routingprocessor/go.sum | 90 +++++----- processor/schemaprocessor/go.mod | 35 ++-- processor/schemaprocessor/go.sum | 70 ++++---- processor/spanprocessor/go.mod | 21 +-- processor/spanprocessor/go.sum | 42 ++--- processor/sumologicprocessor/go.mod | 45 ++--- processor/sumologicprocessor/go.sum | 90 +++++----- processor/tailsamplingprocessor/go.mod | 19 +- processor/tailsamplingprocessor/go.sum | 38 ++-- processor/transformprocessor/go.mod | 19 +- processor/transformprocessor/go.sum | 38 ++-- receiver/activedirectorydsreceiver/go.mod | 16 +- receiver/activedirectorydsreceiver/go.sum | 34 ++-- receiver/aerospikereceiver/go.mod | 20 +-- receiver/aerospikereceiver/go.sum | 42 ++--- receiver/apachereceiver/go.mod | 34 ++-- receiver/apachereceiver/go.sum | 70 ++++---- receiver/apachereceiver/scraper.go | 4 +- receiver/apachesparkreceiver/client.go | 5 +- receiver/apachesparkreceiver/client_test.go | 5 +- receiver/apachesparkreceiver/go.mod | 34 ++-- receiver/apachesparkreceiver/go.sum | 70 ++++---- receiver/apachesparkreceiver/scraper.go | 4 +- receiver/awscloudwatchmetricsreceiver/go.mod | 14 +- receiver/awscloudwatchmetricsreceiver/go.sum | 31 ++-- receiver/awscloudwatchreceiver/go.mod | 14 +- receiver/awscloudwatchreceiver/go.sum | 31 ++-- receiver/awscontainerinsightreceiver/go.mod | 34 ++-- receiver/awscontainerinsightreceiver/go.sum | 70 ++++---- .../internal/ecsInfo/ecsinfo.go | 6 +- .../awsecscontainermetricsreceiver/go.mod | 36 ++-- .../awsecscontainermetricsreceiver/go.sum | 74 ++++---- receiver/awsfirehosereceiver/go.mod | 36 ++-- receiver/awsfirehosereceiver/go.sum | 74 ++++---- receiver/awsfirehosereceiver/receiver.go | 6 +- receiver/awss3receiver/go.mod | 14 +- receiver/awss3receiver/go.sum | 31 ++-- receiver/awsxrayreceiver/go.mod | 26 +-- receiver/awsxrayreceiver/go.sum | 54 +++--- receiver/azureblobreceiver/go.mod | 45 ++--- receiver/azureblobreceiver/go.sum | 90 +++++----- receiver/azureeventhubreceiver/go.mod | 45 ++--- receiver/azureeventhubreceiver/go.sum | 90 +++++----- receiver/azuremonitorreceiver/go.mod | 16 +- receiver/azuremonitorreceiver/go.sum | 34 ++-- receiver/bigipreceiver/client.go | 4 +- receiver/bigipreceiver/client_test.go | 4 +- receiver/bigipreceiver/go.mod | 34 ++-- receiver/bigipreceiver/go.sum | 70 ++++---- receiver/bigipreceiver/scraper.go | 4 +- receiver/carbonreceiver/go.mod | 20 +-- receiver/carbonreceiver/go.sum | 42 ++--- receiver/chronyreceiver/go.mod | 16 +- receiver/chronyreceiver/go.sum | 34 ++-- receiver/cloudflarereceiver/go.mod | 20 +-- receiver/cloudflarereceiver/go.sum | 43 ++--- receiver/cloudfoundryreceiver/go.mod | 34 ++-- receiver/cloudfoundryreceiver/go.sum | 70 ++++---- receiver/cloudfoundryreceiver/receiver.go | 1 + receiver/cloudfoundryreceiver/stream.go | 3 +- receiver/cloudfoundryreceiver/stream_test.go | 2 + receiver/collectdreceiver/go.mod | 34 ++-- receiver/collectdreceiver/go.sum | 70 ++++---- receiver/collectdreceiver/receiver.go | 6 +- receiver/couchdbreceiver/client.go | 5 +- receiver/couchdbreceiver/client_test.go | 4 + receiver/couchdbreceiver/go.mod | 34 ++-- receiver/couchdbreceiver/go.sum | 70 ++++---- receiver/couchdbreceiver/scraper.go | 4 +- receiver/datadogreceiver/go.mod | 36 ++-- receiver/datadogreceiver/go.sum | 74 ++++---- receiver/datadogreceiver/receiver.go | 7 +- receiver/dockerstatsreceiver/go.mod | 18 +- receiver/dockerstatsreceiver/go.sum | 38 ++-- receiver/elasticsearchreceiver/client.go | 4 +- receiver/elasticsearchreceiver/client_test.go | 56 +++--- receiver/elasticsearchreceiver/go.mod | 34 ++-- receiver/elasticsearchreceiver/go.sum | 70 ++++---- receiver/elasticsearchreceiver/scraper.go | 4 +- receiver/expvarreceiver/go.mod | 34 ++-- receiver/expvarreceiver/go.sum | 70 ++++---- receiver/expvarreceiver/scraper.go | 4 +- receiver/filelogreceiver/go.mod | 20 +-- receiver/filelogreceiver/go.sum | 42 ++--- receiver/filestatsreceiver/go.mod | 16 +- receiver/filestatsreceiver/go.sum | 34 ++-- receiver/flinkmetricsreceiver/client.go | 4 +- receiver/flinkmetricsreceiver/client_test.go | 4 +- receiver/flinkmetricsreceiver/go.mod | 34 ++-- receiver/flinkmetricsreceiver/go.sum | 70 ++++---- receiver/flinkmetricsreceiver/scraper.go | 4 +- receiver/fluentforwardreceiver/go.mod | 16 +- receiver/fluentforwardreceiver/go.sum | 34 ++-- receiver/gitproviderreceiver/go.mod | 59 +++--- receiver/gitproviderreceiver/go.sum | 118 ++++++------ .../scraper/githubscraper/github_scraper.go | 4 +- receiver/googlecloudpubsubreceiver/go.mod | 22 +-- receiver/googlecloudpubsubreceiver/go.sum | 46 ++--- receiver/googlecloudspannerreceiver/go.mod | 16 +- receiver/googlecloudspannerreceiver/go.sum | 34 ++-- receiver/haproxyreceiver/go.mod | 34 ++-- receiver/haproxyreceiver/go.sum | 70 ++++---- receiver/haproxyreceiver/scraper.go | 4 +- receiver/hostmetricsreceiver/go.mod | 45 ++--- receiver/hostmetricsreceiver/go.sum | 90 +++++----- receiver/httpcheckreceiver/go.mod | 34 ++-- receiver/httpcheckreceiver/go.sum | 70 ++++---- receiver/httpcheckreceiver/scraper.go | 4 +- receiver/iisreceiver/go.mod | 16 +- receiver/iisreceiver/go.sum | 34 ++-- receiver/influxdbreceiver/go.mod | 36 ++-- receiver/influxdbreceiver/go.sum | 74 ++++---- receiver/influxdbreceiver/receiver.go | 6 +- receiver/jaegerreceiver/go.mod | 40 ++--- receiver/jaegerreceiver/go.sum | 82 ++++----- receiver/jaegerreceiver/trace_receiver.go | 4 +- receiver/jmxreceiver/go.mod | 44 ++--- receiver/jmxreceiver/go.sum | 90 +++++----- receiver/journaldreceiver/go.mod | 20 +-- receiver/journaldreceiver/go.sum | 42 ++--- receiver/k8sclusterreceiver/go.mod | 42 ++--- receiver/k8sclusterreceiver/go.sum | 86 ++++----- receiver/k8seventsreceiver/go.mod | 18 +- receiver/k8seventsreceiver/go.sum | 38 ++-- receiver/k8sobjectsreceiver/go.mod | 42 ++--- receiver/k8sobjectsreceiver/go.sum | 86 ++++----- receiver/kafkametricsreceiver/go.mod | 20 +-- receiver/kafkametricsreceiver/go.sum | 42 ++--- receiver/kafkareceiver/go.mod | 28 +-- receiver/kafkareceiver/go.sum | 58 +++--- receiver/kubeletstatsreceiver/go.mod | 42 ++--- receiver/kubeletstatsreceiver/go.sum | 86 ++++----- receiver/lokireceiver/go.mod | 40 ++--- receiver/lokireceiver/go.sum | 82 ++++----- receiver/lokireceiver/loki.go | 8 +- receiver/memcachedreceiver/go.mod | 18 +- receiver/memcachedreceiver/go.sum | 38 ++-- receiver/mongodbatlasreceiver/go.mod | 26 +-- receiver/mongodbatlasreceiver/go.sum | 54 +++--- receiver/mongodbreceiver/go.mod | 24 +-- receiver/mongodbreceiver/go.sum | 50 +++--- receiver/mysqlreceiver/go.mod | 22 +-- receiver/mysqlreceiver/go.sum | 46 ++--- receiver/namedpipereceiver/go.mod | 20 +-- receiver/namedpipereceiver/go.sum | 42 ++--- receiver/nginxreceiver/go.mod | 34 ++-- receiver/nginxreceiver/go.sum | 70 ++++---- receiver/nginxreceiver/scraper.go | 4 +- receiver/nsxtreceiver/client.go | 4 +- receiver/nsxtreceiver/client_test.go | 32 ++-- receiver/nsxtreceiver/go.mod | 34 ++-- receiver/nsxtreceiver/go.sum | 70 ++++---- receiver/nsxtreceiver/scraper.go | 4 +- receiver/opencensusreceiver/go.mod | 38 ++-- receiver/opencensusreceiver/go.sum | 78 ++++---- receiver/oracledbreceiver/go.mod | 16 +- receiver/oracledbreceiver/go.sum | 34 ++-- receiver/osqueryreceiver/go.mod | 14 +- receiver/osqueryreceiver/go.sum | 32 ++-- receiver/otelarrowreceiver/go.mod | 38 ++-- receiver/otelarrowreceiver/go.sum | 78 ++++---- receiver/otlpjsonfilereceiver/go.mod | 20 +-- receiver/otlpjsonfilereceiver/go.sum | 42 ++--- receiver/podmanreceiver/go.mod | 18 +- receiver/podmanreceiver/go.sum | 38 ++-- receiver/postgresqlreceiver/go.mod | 24 +-- receiver/postgresqlreceiver/go.sum | 50 +++--- receiver/prometheusreceiver/go.mod | 62 +++---- receiver/prometheusreceiver/go.sum | 126 ++++++------- .../prometheusreceiver/metrics_receiver.go | 4 +- receiver/pulsarreceiver/go.mod | 18 +- receiver/pulsarreceiver/go.sum | 41 ++--- receiver/purefareceiver/go.mod | 36 ++-- receiver/purefareceiver/go.sum | 126 ++++++------- receiver/purefbreceiver/go.mod | 36 ++-- receiver/purefbreceiver/go.sum | 126 ++++++------- receiver/rabbitmqreceiver/client.go | 4 +- receiver/rabbitmqreceiver/client_test.go | 4 +- receiver/rabbitmqreceiver/go.mod | 34 ++-- receiver/rabbitmqreceiver/go.sum | 70 ++++---- receiver/rabbitmqreceiver/scraper.go | 4 +- receiver/receivercreator/go.mod | 45 ++--- receiver/receivercreator/go.sum | 90 +++++----- receiver/redisreceiver/go.mod | 22 +-- receiver/redisreceiver/go.sum | 46 ++--- receiver/riakreceiver/client.go | 4 +- receiver/riakreceiver/client_test.go | 4 +- receiver/riakreceiver/go.mod | 34 ++-- receiver/riakreceiver/go.sum | 70 ++++---- receiver/riakreceiver/scraper.go | 4 +- receiver/saphanareceiver/go.mod | 20 +-- receiver/saphanareceiver/go.sum | 42 ++--- receiver/sapmreceiver/go.mod | 40 ++--- receiver/sapmreceiver/go.sum | 82 ++++----- receiver/sapmreceiver/trace_receiver.go | 6 +- receiver/signalfxreceiver/go.mod | 40 ++--- receiver/signalfxreceiver/go.sum | 82 ++++----- receiver/signalfxreceiver/receiver.go | 6 +- receiver/simpleprometheusreceiver/go.mod | 36 ++-- receiver/simpleprometheusreceiver/go.sum | 126 ++++++------- receiver/skywalkingreceiver/go.mod | 40 ++--- receiver/skywalkingreceiver/go.sum | 82 ++++----- .../skywalkingreceiver/skywalking_receiver.go | 8 +- receiver/snmpreceiver/go.mod | 47 ++--- receiver/snmpreceiver/go.sum | 94 +++++----- receiver/snowflakereceiver/go.mod | 18 +- receiver/snowflakereceiver/go.sum | 38 ++-- receiver/solacereceiver/go.mod | 18 +- receiver/solacereceiver/go.sum | 39 ++-- receiver/splunkenterprisereceiver/client.go | 8 +- .../splunkenterprisereceiver/client_test.go | 6 +- receiver/splunkenterprisereceiver/go.mod | 34 ++-- receiver/splunkenterprisereceiver/go.sum | 70 ++++---- receiver/splunkenterprisereceiver/scraper.go | 4 +- .../splunkenterprisereceiver/scraper_test.go | 2 +- receiver/splunkhecreceiver/go.mod | 40 ++--- receiver/splunkhecreceiver/go.sum | 82 ++++----- receiver/splunkhecreceiver/receiver.go | 6 +- receiver/sqlqueryreceiver/go.mod | 18 +- receiver/sqlqueryreceiver/go.sum | 38 ++-- receiver/sqlserverreceiver/go.mod | 16 +- receiver/sqlserverreceiver/go.sum | 34 ++-- receiver/sshcheckreceiver/go.mod | 20 +-- receiver/sshcheckreceiver/go.sum | 42 ++--- receiver/statsdreceiver/go.mod | 22 +-- receiver/statsdreceiver/go.sum | 46 ++--- receiver/syslogreceiver/go.mod | 24 +-- receiver/syslogreceiver/go.sum | 50 +++--- receiver/tcplogreceiver/go.mod | 24 +-- receiver/tcplogreceiver/go.sum | 50 +++--- receiver/udplogreceiver/go.mod | 20 +-- receiver/udplogreceiver/go.sum | 42 ++--- receiver/vcenterreceiver/go.mod | 22 +-- receiver/vcenterreceiver/go.sum | 46 ++--- receiver/wavefrontreceiver/go.mod | 20 +-- receiver/wavefrontreceiver/go.sum | 42 ++--- receiver/webhookeventreceiver/go.mod | 34 ++-- receiver/webhookeventreceiver/go.sum | 70 ++++---- receiver/webhookeventreceiver/receiver.go | 6 +- receiver/windowseventlogreceiver/go.mod | 20 +-- receiver/windowseventlogreceiver/go.sum | 42 ++--- receiver/windowsperfcountersreceiver/go.mod | 16 +- receiver/windowsperfcountersreceiver/go.sum | 34 ++-- receiver/zipkinreceiver/go.mod | 36 ++-- receiver/zipkinreceiver/go.sum | 74 ++++---- receiver/zipkinreceiver/trace_receiver.go | 6 +- receiver/zookeeperreceiver/go.mod | 20 +-- receiver/zookeeperreceiver/go.sum | 42 ++--- testbed/go.mod | 78 ++++---- testbed/go.sum | 158 ++++++++-------- .../mockdatadogagentexporter/go.mod | 36 ++-- .../mockdatadogagentexporter/go.sum | 74 ++++---- .../traces_exporter.go | 4 +- 591 files changed, 10454 insertions(+), 10046 deletions(-) diff --git a/cmd/configschema/go.mod b/cmd/configschema/go.mod index 317e6bf08249..103b0a034902 100644 --- a/cmd/configschema/go.mod +++ b/cmd/configschema/go.mod @@ -10,10 +10,10 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/redisreceiver v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 golang.org/x/mod v0.16.0 golang.org/x/text v0.14.0 @@ -170,8 +170,8 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zookeeperreceiver v0.97.0 // indirect github.com/samber/lo v1.38.1 // indirect github.com/shoenig/go-m1cpu v0.1.6 // indirect - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect ) require ( @@ -624,41 +624,41 @@ require ( go.mongodb.org/atlas v0.36.0 // indirect go.mongodb.org/mongo-driver v1.14.0 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter/loggingexporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter/loggingexporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect diff --git a/cmd/configschema/go.sum b/cmd/configschema/go.sum index a29830c8993b..f0d7c4d6aea7 100644 --- a/cmd/configschema/go.sum +++ b/cmd/configschema/go.sum @@ -1651,88 +1651,90 @@ go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240404121116-4f1a8936d26b h1:qKPjqgmofcwOEkMWIMxJ9dkEneqj0Qi4zRYxhMNCYnM= -go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:fl49zt1fMqhfQM24yfFNE02Fz6z7N6ygjuATuV6SRDw= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:peaYUYJQuzSDBH0bbjDaFxep/qut+VY8eSa28OPOjsE= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:bD14O9UdbCLRMllSqObkA1klraPHe0GWmw4QUBxNH2g= -go.opentelemetry.io/collector/exporter/loggingexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:EdIC//H381QGQ4BEsngiG5lEHRVq1faaaO3Dwaqvrm0= -go.opentelemetry.io/collector/exporter/loggingexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8tmAbXYfbdTPPBKF+ivIyFxCIWP1V5u2+rEeBls8Rgk= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:jv6wp8Muswbz/iS62KGDNUZx2GSBsnL9zL2RAQDQTxw= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:d0SAS68CUbHU+GKOrzMlGMWCsRfn8a9Rh8AUOHxC+xk= -go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:rkbtSTjRgfd9eR/UdSMJJr4QtMoRLGqD3AvLffcqIZg= -go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:radMtwB70wa+R+EeMpzqa3T7UoEw/4NbnjjTB4BJn/8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b h1:J47Jgx/R5B8BcwaWcrO2lmo/4h8QG29YTPvLBSeZ2dU= -go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lSa1oK8+RQHN+Jjz852mL0Ivd/EWLh5IRy/OD91YnDo= -go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b h1:6tiaV2CzIB2mw5koYn24FKENKnUDhVwry+gtQUvw47I= -go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:N3BDFI4ghKltAUTWZ+Xovk6dw64MAmRWXlWx/77XlSo= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:Ka/rte5zyQ0Sm7esxDRmhmO4JSHYIVfj8VbEVWJKRJ0= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JVGUkc1eFmFDBGqr94dl+dqF2FFPe7LeBeWGvJiFWmM= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240409140257-792fac1b62d4 h1:znQ5NkpXjctFf64v/5n8km4ao18XKuum+Q/O32niVJk= +go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:lwYy9g0gsVkO2VqqXcRg2fhT/2674GGY+NqpSeRR9S8= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:xpgItQmezCZaGj/7+YlfcPuxxd5FM1Kho5b5VIUxXAY= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:49WJwX7BbMsPUQwIwax6dAo4k4wqGSrUDmR2FSIn6jI= +go.opentelemetry.io/collector/exporter/loggingexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:wwT2P7nQIDuGy3sjW20afbHNEFH718qfw3kvzwitSHo= +go.opentelemetry.io/collector/exporter/loggingexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WcBe4Dkj8iEJbCWuwgIDTBAsyt4m/6de9/jQYj4ozeo= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:EZ1WfK0tKytC56o30ZhSj+1IROllj+XMGe0pqm5KGOM= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:s3L5toZ5PsceEgmDiZvFEQQwyos8VxdpZ1e7fokrwAE= +go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:TnTlVrAXmjQfV8JRqMZyXdIWuiW6Kj+5HjlQz8rlIW8= +go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4VUw2sqVrGPa8moPsnYsIx0TRlRrrFVJJMXWMlxT4qM= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4 h1:AviXbdVcPOg7s03b+ghJNoNehjkXB2dGIR8bp6hdZoA= +go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:LVCgfLNNJ3pYTbuWtQ0t+ojGz78eRM6m9iIKlJOGIOU= +go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4 h1:hMqlVhoK86vxIbtJZhOJ4pDDFcsz11wudLAx9jwwsg0= +go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:/hIvDIGbSmk4BDjkSNi/8S7Ggk3xoy0SiZURLTYiZQU= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:5gJF1aDG3CPKgnUUV8244ebRWn7zwNhacGAXoArXETI= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WbMSjJjS13vslBYjSck1/Zt7TcD2sLt0BldNm7khVuQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/cmd/githubgen/go.mod b/cmd/githubgen/go.mod index 95bfeddf2731..f2f4268e9497 100644 --- a/cmd/githubgen/go.mod +++ b/cmd/githubgen/go.mod @@ -4,8 +4,8 @@ go 1.21 require ( github.com/google/go-github/v61 v61.0.0 - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/cmd/githubgen/go.sum b/cmd/githubgen/go.sum index 836a91262b3b..c59919f23ead 100644 --- a/cmd/githubgen/go.sum +++ b/cmd/githubgen/go.sum @@ -23,10 +23,10 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/cmd/opampsupervisor/go.mod b/cmd/opampsupervisor/go.mod index 6182579f1fde..263f1672a8e8 100644 --- a/cmd/opampsupervisor/go.mod +++ b/cmd/opampsupervisor/go.mod @@ -11,9 +11,9 @@ require ( github.com/oklog/ulid/v2 v2.1.0 github.com/open-telemetry/opamp-go v0.14.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 ) diff --git a/cmd/opampsupervisor/go.sum b/cmd/opampsupervisor/go.sum index decda3a28ae1..85ae3058ea6e 100644 --- a/cmd/opampsupervisor/go.sum +++ b/cmd/opampsupervisor/go.sum @@ -41,14 +41,14 @@ github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjR github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= go.opentelemetry.io/collector/confmap v0.97.0 h1:0CGSk7YW9rPc6jCwJteJzHzN96HRoHTfuqI7J/EmZsg= go.opentelemetry.io/collector/confmap v0.97.0/go.mod h1:AnJmZcZoOLuykSXGiAf3shi11ZZk5ei4tZd9dDTTpWE= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/cmd/otelcontribcol/builder-config.yaml b/cmd/otelcontribcol/builder-config.yaml index ec05c45aaf87..d14389a7411b 100644 --- a/cmd/otelcontribcol/builder-config.yaml +++ b/cmd/otelcontribcol/builder-config.yaml @@ -6,8 +6,8 @@ dist: otelcol_version: 0.97.0 extensions: - - gomod: go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b - - gomod: go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b + - gomod: go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4 + - gomod: go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/extension/asapauthextension v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/extension/awsproxy v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/extension/basicauthextension v0.97.0 @@ -43,10 +43,10 @@ extensions: import: github.com/open-telemetry/opentelemetry-collector-contrib/extension/encoding/zipkinencodingextension exporters: - - gomod: go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b - - gomod: go.opentelemetry.io/collector/exporter/nopexporter v0.97.1-0.20240404121116-4f1a8936d26b - - gomod: go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b - - gomod: go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b + - gomod: go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 + - gomod: go.opentelemetry.io/collector/exporter/nopexporter v0.97.1-0.20240409140257-792fac1b62d4 + - gomod: go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 + - gomod: go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/alertmanagerexporter v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/alibabacloudlogserviceexporter v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awscloudwatchlogsexporter v0.97.0 @@ -93,8 +93,8 @@ exporters: - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/zipkinexporter v0.97.0 processors: - - gomod: go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b - - gomod: go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b + - gomod: go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 + - gomod: go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/processor/cumulativetodeltaprocessor v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/processor/deltatorateprocessor v0.97.0 @@ -117,8 +117,8 @@ processors: - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/processor/remotetapprocessor v0.97.0 receivers: - - gomod: go.opentelemetry.io/collector/receiver/nopreceiver v0.97.1-0.20240404121116-4f1a8936d26b - - gomod: go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b + - gomod: go.opentelemetry.io/collector/receiver/nopreceiver v0.97.1-0.20240409140257-792fac1b62d4 + - gomod: go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/activedirectorydsreceiver v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/aerospikereceiver v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/apachereceiver v0.97.0 @@ -207,7 +207,7 @@ receivers: - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zookeeperreceiver v0.97.0 connectors: - - gomod: go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240404121116-4f1a8936d26b + - gomod: go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240409140257-792fac1b62d4 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/datadogconnector v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/connector/exceptionsconnector v0.97.0 diff --git a/cmd/otelcontribcol/go.mod b/cmd/otelcontribcol/go.mod index 5eda54ca9112..b17cd23b73cd 100644 --- a/cmd/otelcontribcol/go.mod +++ b/cmd/otelcontribcol/go.mod @@ -194,31 +194,31 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zookeeperreceiver v0.97.0 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/nopexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/nopreceiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/nopexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/nopreceiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 golang.org/x/sys v0.19.0 ) @@ -660,23 +660,23 @@ require ( go.mongodb.org/atlas v0.36.0 // indirect go.mongodb.org/mongo-driver v1.14.0 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect diff --git a/cmd/otelcontribcol/go.sum b/cmd/otelcontribcol/go.sum index 94bd4de01d48..fb849f3ab5b0 100644 --- a/cmd/otelcontribcol/go.sum +++ b/cmd/otelcontribcol/go.sum @@ -1652,90 +1652,92 @@ go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240404121116-4f1a8936d26b h1:qKPjqgmofcwOEkMWIMxJ9dkEneqj0Qi4zRYxhMNCYnM= -go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:fl49zt1fMqhfQM24yfFNE02Fz6z7N6ygjuATuV6SRDw= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:peaYUYJQuzSDBH0bbjDaFxep/qut+VY8eSa28OPOjsE= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:bD14O9UdbCLRMllSqObkA1klraPHe0GWmw4QUBxNH2g= -go.opentelemetry.io/collector/exporter/nopexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:rZh/w8ojf9blIcWEhE0UHTVAEsJTLtrHJpWcNO9Nm6M= -go.opentelemetry.io/collector/exporter/nopexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:qtQNvmDdzQZU2iPiVxcip8wnL1W13qIQSZ4wJeGR/3I= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:jv6wp8Muswbz/iS62KGDNUZx2GSBsnL9zL2RAQDQTxw= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:d0SAS68CUbHU+GKOrzMlGMWCsRfn8a9Rh8AUOHxC+xk= -go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:rkbtSTjRgfd9eR/UdSMJJr4QtMoRLGqD3AvLffcqIZg= -go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:radMtwB70wa+R+EeMpzqa3T7UoEw/4NbnjjTB4BJn/8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b h1:J47Jgx/R5B8BcwaWcrO2lmo/4h8QG29YTPvLBSeZ2dU= -go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lSa1oK8+RQHN+Jjz852mL0Ivd/EWLh5IRy/OD91YnDo= -go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b h1:6tiaV2CzIB2mw5koYn24FKENKnUDhVwry+gtQUvw47I= -go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:N3BDFI4ghKltAUTWZ+Xovk6dw64MAmRWXlWx/77XlSo= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:Ka/rte5zyQ0Sm7esxDRmhmO4JSHYIVfj8VbEVWJKRJ0= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JVGUkc1eFmFDBGqr94dl+dqF2FFPe7LeBeWGvJiFWmM= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/nopreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:TUyh1x/8AOYlvVT+XdEaYgXFy6o0HblIpZI4DMqUoCU= -go.opentelemetry.io/collector/receiver/nopreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9jA/NNzLD6vSc7DnvjSROsyXahyAP+KvBv00NfXDvus= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240409140257-792fac1b62d4 h1:znQ5NkpXjctFf64v/5n8km4ao18XKuum+Q/O32niVJk= +go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:lwYy9g0gsVkO2VqqXcRg2fhT/2674GGY+NqpSeRR9S8= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:xpgItQmezCZaGj/7+YlfcPuxxd5FM1Kho5b5VIUxXAY= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:49WJwX7BbMsPUQwIwax6dAo4k4wqGSrUDmR2FSIn6jI= +go.opentelemetry.io/collector/exporter/nopexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:svbQOSvHYitX9fWcqoR24CNZNAOHwi2pXhvgerFk8AA= +go.opentelemetry.io/collector/exporter/nopexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Alckvm7uyid59bLjvSyUC62xU/yf5v+Ydh14n97/Fu0= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:EZ1WfK0tKytC56o30ZhSj+1IROllj+XMGe0pqm5KGOM= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:s3L5toZ5PsceEgmDiZvFEQQwyos8VxdpZ1e7fokrwAE= +go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:TnTlVrAXmjQfV8JRqMZyXdIWuiW6Kj+5HjlQz8rlIW8= +go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4VUw2sqVrGPa8moPsnYsIx0TRlRrrFVJJMXWMlxT4qM= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4 h1:AviXbdVcPOg7s03b+ghJNoNehjkXB2dGIR8bp6hdZoA= +go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:LVCgfLNNJ3pYTbuWtQ0t+ojGz78eRM6m9iIKlJOGIOU= +go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4 h1:hMqlVhoK86vxIbtJZhOJ4pDDFcsz11wudLAx9jwwsg0= +go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:/hIvDIGbSmk4BDjkSNi/8S7Ggk3xoy0SiZURLTYiZQU= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:5gJF1aDG3CPKgnUUV8244ebRWn7zwNhacGAXoArXETI= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WbMSjJjS13vslBYjSck1/Zt7TcD2sLt0BldNm7khVuQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/nopreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:MXwxf/Zx8AbZN95p00/v8NcA7tQf+biaTYNhqCWrZCE= +go.opentelemetry.io/collector/receiver/nopreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9KcC/GbJPGzy7ScSA2l8rIknltfbmpIUrjOHfP/UNEE= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/cmd/oteltestbedcol/builder-config.yaml b/cmd/oteltestbedcol/builder-config.yaml index e87b9cfb08eb..9ae4b71eb8d0 100644 --- a/cmd/oteltestbedcol/builder-config.yaml +++ b/cmd/oteltestbedcol/builder-config.yaml @@ -6,15 +6,15 @@ dist: otelcol_version: 0.97.0 extensions: - - gomod: go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b - - gomod: go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b + - gomod: go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4 + - gomod: go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/extension/pprofextension v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/extension/storage/filestorage v0.97.0 exporters: - - gomod: go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b - - gomod: go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b - - gomod: go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b + - gomod: go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 + - gomod: go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 + - gomod: go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/carbonexporter v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/opencensusexporter v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/opensearchexporter v0.97.0 @@ -26,13 +26,13 @@ exporters: - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/zipkinexporter v0.97.0 processors: - - gomod: go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b - - gomod: go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b + - gomod: go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 + - gomod: go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor v0.97.0 receivers: - - gomod: go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b + - gomod: go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/carbonreceiver v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver v0.97.0 - gomod: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/fluentforwardreceiver v0.97.0 diff --git a/cmd/oteltestbedcol/go.mod b/cmd/oteltestbedcol/go.mod index e2fc29596ddf..44f1de469eb0 100644 --- a/cmd/oteltestbedcol/go.mod +++ b/cmd/oteltestbedcol/go.mod @@ -32,21 +32,21 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/receiver/udplogreceiver v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zipkinreceiver v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 golang.org/x/sys v0.18.0 ) @@ -216,30 +216,30 @@ require ( github.com/yusufpapurcu/wmi v1.2.4 // indirect go.etcd.io/bbolt v1.3.9 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect diff --git a/cmd/oteltestbedcol/go.sum b/cmd/oteltestbedcol/go.sum index e6c5cfb918ae..5d66a20291a2 100644 --- a/cmd/oteltestbedcol/go.sum +++ b/cmd/oteltestbedcol/go.sum @@ -683,84 +683,86 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:peaYUYJQuzSDBH0bbjDaFxep/qut+VY8eSa28OPOjsE= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:bD14O9UdbCLRMllSqObkA1klraPHe0GWmw4QUBxNH2g= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:jv6wp8Muswbz/iS62KGDNUZx2GSBsnL9zL2RAQDQTxw= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:d0SAS68CUbHU+GKOrzMlGMWCsRfn8a9Rh8AUOHxC+xk= -go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:rkbtSTjRgfd9eR/UdSMJJr4QtMoRLGqD3AvLffcqIZg= -go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:radMtwB70wa+R+EeMpzqa3T7UoEw/4NbnjjTB4BJn/8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b h1:J47Jgx/R5B8BcwaWcrO2lmo/4h8QG29YTPvLBSeZ2dU= -go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lSa1oK8+RQHN+Jjz852mL0Ivd/EWLh5IRy/OD91YnDo= -go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b h1:6tiaV2CzIB2mw5koYn24FKENKnUDhVwry+gtQUvw47I= -go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:N3BDFI4ghKltAUTWZ+Xovk6dw64MAmRWXlWx/77XlSo= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:Ka/rte5zyQ0Sm7esxDRmhmO4JSHYIVfj8VbEVWJKRJ0= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JVGUkc1eFmFDBGqr94dl+dqF2FFPe7LeBeWGvJiFWmM= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:xpgItQmezCZaGj/7+YlfcPuxxd5FM1Kho5b5VIUxXAY= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:49WJwX7BbMsPUQwIwax6dAo4k4wqGSrUDmR2FSIn6jI= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:EZ1WfK0tKytC56o30ZhSj+1IROllj+XMGe0pqm5KGOM= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:s3L5toZ5PsceEgmDiZvFEQQwyos8VxdpZ1e7fokrwAE= +go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:TnTlVrAXmjQfV8JRqMZyXdIWuiW6Kj+5HjlQz8rlIW8= +go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4VUw2sqVrGPa8moPsnYsIx0TRlRrrFVJJMXWMlxT4qM= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4 h1:AviXbdVcPOg7s03b+ghJNoNehjkXB2dGIR8bp6hdZoA= +go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:LVCgfLNNJ3pYTbuWtQ0t+ojGz78eRM6m9iIKlJOGIOU= +go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4 h1:hMqlVhoK86vxIbtJZhOJ4pDDFcsz11wudLAx9jwwsg0= +go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:/hIvDIGbSmk4BDjkSNi/8S7Ggk3xoy0SiZURLTYiZQU= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:5gJF1aDG3CPKgnUUV8244ebRWn7zwNhacGAXoArXETI= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WbMSjJjS13vslBYjSck1/Zt7TcD2sLt0BldNm7khVuQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/cmd/telemetrygen/go.mod b/cmd/telemetrygen/go.mod index 5d5f54c3a0f3..cab7e40bb47a 100644 --- a/cmd/telemetrygen/go.mod +++ b/cmd/telemetrygen/go.mod @@ -7,9 +7,9 @@ require ( github.com/spf13/cobra v1.8.0 github.com/spf13/pflag v1.0.5 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.24.0 go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.24.0 @@ -44,8 +44,8 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/proto/otlp v1.1.0 // indirect go.uber.org/multierr v1.11.0 // indirect diff --git a/cmd/telemetrygen/go.sum b/cmd/telemetrygen/go.sum index a5a269f060e7..28a2df10ccde 100644 --- a/cmd/telemetrygen/go.sum +++ b/cmd/telemetrygen/go.sum @@ -95,16 +95,16 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.24.0 h1:f2jriWfOdldanBwS9jNBdeOKAQN7b4ugAMaNu1/1k9g= diff --git a/cmd/telemetrygen/internal/e2etest/go.mod b/cmd/telemetrygen/internal/e2etest/go.mod index 364603817f9d..4f4c845b8baa 100644 --- a/cmd/telemetrygen/internal/e2etest/go.mod +++ b/cmd/telemetrygen/internal/e2etest/go.mod @@ -6,10 +6,10 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 ) require ( @@ -41,26 +41,26 @@ require ( github.com/mostynb/go-grpc-compression v1.2.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/spf13/pflag v1.0.5 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/cmd/telemetrygen/internal/e2etest/go.sum b/cmd/telemetrygen/internal/e2etest/go.sum index 8ad6b6245450..36709eb0b4e4 100644 --- a/cmd/telemetrygen/internal/e2etest/go.sum +++ b/cmd/telemetrygen/internal/e2etest/go.sum @@ -94,8 +94,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -117,44 +117,46 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/confmap/provider/s3provider/go.mod b/confmap/provider/s3provider/go.mod index 2113d2f551af..44e9f98edc10 100644 --- a/confmap/provider/s3provider/go.mod +++ b/confmap/provider/s3provider/go.mod @@ -7,7 +7,7 @@ require ( github.com/aws/aws-sdk-go-v2/config v1.27.11 github.com/aws/aws-sdk-go-v2/service/s3 v1.53.1 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 gopkg.in/yaml.v2 v2.4.0 ) diff --git a/confmap/provider/s3provider/go.sum b/confmap/provider/s3provider/go.sum index bdf0f8b40935..a06c5809fe33 100644 --- a/confmap/provider/s3provider/go.sum +++ b/confmap/provider/s3provider/go.sum @@ -56,8 +56,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/confmap/provider/secretsmanagerprovider/go.mod b/confmap/provider/secretsmanagerprovider/go.mod index 1aa6e7435729..c1ae1c39f6f3 100644 --- a/confmap/provider/secretsmanagerprovider/go.mod +++ b/confmap/provider/secretsmanagerprovider/go.mod @@ -7,7 +7,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.28.6 github.com/aws/smithy-go v1.20.2 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 ) require ( diff --git a/confmap/provider/secretsmanagerprovider/go.sum b/confmap/provider/secretsmanagerprovider/go.sum index 6bf9e6d95243..9a9ef639fe4c 100644 --- a/confmap/provider/secretsmanagerprovider/go.sum +++ b/confmap/provider/secretsmanagerprovider/go.sum @@ -254,8 +254,8 @@ github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1 go.etcd.io/etcd/api/v3 v3.5.4/go.mod h1:5GB2vv4A4AOn3yk7MftYGHkUfGtDHnEraIjym4dYz5A= go.etcd.io/etcd/client/pkg/v3 v3.5.4/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= go.etcd.io/etcd/client/v3 v3.5.4/go.mod h1:ZaRkVgBZC+L+dLCjTcF1hRXpgZXQPOvnA/Ak/gq3kiY= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= diff --git a/connector/countconnector/go.mod b/connector/countconnector/go.mod index 6dc7ac006b4e..363ff45379d8 100644 --- a/connector/countconnector/go.mod +++ b/connector/countconnector/go.mod @@ -9,11 +9,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -45,11 +45,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/connector/countconnector/go.sum b/connector/countconnector/go.sum index c63c1d7162ca..ca1b4288fd61 100644 --- a/connector/countconnector/go.sum +++ b/connector/countconnector/go.sum @@ -64,8 +64,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -78,20 +78,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/connector/datadogconnector/go.mod b/connector/datadogconnector/go.mod index fcc699e182c3..61927249e77e 100644 --- a/connector/datadogconnector/go.mod +++ b/connector/datadogconnector/go.mod @@ -13,19 +13,19 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/processor/tailsamplingprocessor v0.97.0 github.com/patrickmn/go-cache v2.1.0+incompatible github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -126,7 +126,7 @@ require ( github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/procfs v0.13.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -141,27 +141,28 @@ require ( github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect diff --git a/connector/datadogconnector/go.sum b/connector/datadogconnector/go.sum index e45ccd7d6a0a..1fd1c6152fe3 100644 --- a/connector/datadogconnector/go.sum +++ b/connector/datadogconnector/go.sum @@ -505,8 +505,8 @@ github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= @@ -588,78 +588,80 @@ go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:peaYUYJQuzSDBH0bbjDaFxep/qut+VY8eSa28OPOjsE= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:bD14O9UdbCLRMllSqObkA1klraPHe0GWmw4QUBxNH2g= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:xpgItQmezCZaGj/7+YlfcPuxxd5FM1Kho5b5VIUxXAY= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:49WJwX7BbMsPUQwIwax6dAo4k4wqGSrUDmR2FSIn6jI= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:Ka/rte5zyQ0Sm7esxDRmhmO4JSHYIVfj8VbEVWJKRJ0= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JVGUkc1eFmFDBGqr94dl+dqF2FFPe7LeBeWGvJiFWmM= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:5gJF1aDG3CPKgnUUV8244ebRWn7zwNhacGAXoArXETI= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WbMSjJjS13vslBYjSck1/Zt7TcD2sLt0BldNm7khVuQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/connector/exceptionsconnector/go.mod b/connector/exceptionsconnector/go.mod index 7dcf07278589..05dc34c651c8 100644 --- a/connector/exceptionsconnector/go.mod +++ b/connector/exceptionsconnector/go.mod @@ -7,12 +7,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -41,11 +41,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/connector/exceptionsconnector/go.sum b/connector/exceptionsconnector/go.sum index fe8ec7870481..2caa0acf7d7f 100644 --- a/connector/exceptionsconnector/go.sum +++ b/connector/exceptionsconnector/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,22 +64,24 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/connector/failoverconnector/go.mod b/connector/failoverconnector/go.mod index 76d0a7e95ecb..4d7a330de8b3 100644 --- a/connector/failoverconnector/go.mod +++ b/connector/failoverconnector/go.mod @@ -4,11 +4,11 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -35,11 +35,11 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/connector/failoverconnector/go.sum b/connector/failoverconnector/go.sum index 194efe4fa4bc..375358ff5e43 100644 --- a/connector/failoverconnector/go.sum +++ b/connector/failoverconnector/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -66,20 +66,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/connector/grafanacloudconnector/go.mod b/connector/grafanacloudconnector/go.mod index 58cf026edcbe..ae2fe5b47ef2 100644 --- a/connector/grafanacloudconnector/go.mod +++ b/connector/grafanacloudconnector/go.mod @@ -4,11 +4,11 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -38,11 +38,11 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/connector/grafanacloudconnector/go.sum b/connector/grafanacloudconnector/go.sum index f91e15cb8bc2..38ef4f3335fa 100644 --- a/connector/grafanacloudconnector/go.sum +++ b/connector/grafanacloudconnector/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -66,20 +66,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/connector/routingconnector/go.mod b/connector/routingconnector/go.mod index 0290ad3daec6..f6fa8ee78e64 100644 --- a/connector/routingconnector/go.mod +++ b/connector/routingconnector/go.mod @@ -5,11 +5,11 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -40,11 +40,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/connector/routingconnector/go.sum b/connector/routingconnector/go.sum index b123a87a342f..286ba9e47582 100644 --- a/connector/routingconnector/go.sum +++ b/connector/routingconnector/go.sum @@ -64,8 +64,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -78,20 +78,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/connector/servicegraphconnector/go.mod b/connector/servicegraphconnector/go.mod index 6355836158a2..0b1121c19cf9 100644 --- a/connector/servicegraphconnector/go.mod +++ b/connector/servicegraphconnector/go.mod @@ -4,17 +4,17 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/sdk/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 @@ -50,7 +50,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -61,16 +61,17 @@ require ( github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/propagators/b3 v1.24.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/connector/servicegraphconnector/go.sum b/connector/servicegraphconnector/go.sum index 5619b10ce69e..765f9dfaa344 100644 --- a/connector/servicegraphconnector/go.sum +++ b/connector/servicegraphconnector/go.sum @@ -98,8 +98,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -138,54 +138,56 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= go.opentelemetry.io/collector/config/confignet v0.97.0 h1:KJjv10/YVMslSSLVWW/IIjpLM3JiO3rWvw5dK/t1H7g= go.opentelemetry.io/collector/config/confignet v0.97.0/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= go.opentelemetry.io/collector/config/configretry v0.97.0 h1:k7VwQ5H0oBLm6Fgm0ltfDDbmQVsiqSIY9ojijF0hiR0= go.opentelemetry.io/collector/config/configretry v0.97.0/go.mod h1:s7A6ZGxK8bxqidFzwbr2pITzbsB2qf+aeHEDQDcanV8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/propagators/b3 v1.24.0 h1:n4xwCdTx3pZqZs2CjS/CUZAs03y3dZcGhC/FepKtEUY= diff --git a/connector/spanmetricsconnector/go.mod b/connector/spanmetricsconnector/go.mod index 9a2012fd464a..44e03e68e751 100644 --- a/connector/spanmetricsconnector/go.mod +++ b/connector/spanmetricsconnector/go.mod @@ -9,12 +9,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 github.com/stretchr/testify v1.9.0 github.com/tilinna/clock v1.1.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -42,11 +42,11 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/connector/spanmetricsconnector/go.sum b/connector/spanmetricsconnector/go.sum index 9eadfda6464e..d1ba6d00ea16 100644 --- a/connector/spanmetricsconnector/go.sum +++ b/connector/spanmetricsconnector/go.sum @@ -54,8 +54,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -70,22 +70,24 @@ github.com/tilinna/clock v1.1.0 h1:6IQQQCo6KoBxVudv6gwtY8o4eDfhHo8ojA5dP0MfhSs= github.com/tilinna/clock v1.1.0/go.mod h1:ZsP7BcY7sEEz7ktc0IVy8Us6boDrK8VradlKRUGfOao= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/alertmanagerexporter/alertmanager_exporter.go b/exporter/alertmanagerexporter/alertmanager_exporter.go index b1adb67cc549..4288c7acba71 100644 --- a/exporter/alertmanagerexporter/alertmanager_exporter.go +++ b/exporter/alertmanagerexporter/alertmanager_exporter.go @@ -179,9 +179,9 @@ func (s *alertmanagerExporter) pushTraces(ctx context.Context, td ptrace.Traces) return nil } -func (s *alertmanagerExporter) start(_ context.Context, host component.Host) error { +func (s *alertmanagerExporter) start(ctx context.Context, host component.Host) error { - client, err := s.config.ClientConfig.ToClient(host, s.settings) + client, err := s.config.ClientConfig.ToClientContext(ctx, host, s.settings) if err != nil { return fmt.Errorf("failed to create HTTP Client: %w", err) } diff --git a/exporter/alertmanagerexporter/go.mod b/exporter/alertmanagerexporter/go.mod index b5e95bfab204..d89823e1dff9 100644 --- a/exporter/alertmanagerexporter/go.mod +++ b/exporter/alertmanagerexporter/go.mod @@ -7,16 +7,16 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/prometheus/common v0.52.2 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -48,18 +48,18 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/alertmanagerexporter/go.sum b/exporter/alertmanagerexporter/go.sum index 602a544af421..c3e30a0c9b20 100644 --- a/exporter/alertmanagerexporter/go.sum +++ b/exporter/alertmanagerexporter/go.sum @@ -62,8 +62,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -78,44 +78,46 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/alibabacloudlogserviceexporter/go.mod b/exporter/alibabacloudlogserviceexporter/go.mod index 375fe839d05f..0f75744d48cb 100644 --- a/exporter/alibabacloudlogserviceexporter/go.mod +++ b/exporter/alibabacloudlogserviceexporter/go.mod @@ -7,12 +7,12 @@ require ( github.com/gogo/protobuf v1.3.2 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -43,15 +43,15 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/alibabacloudlogserviceexporter/go.sum b/exporter/alibabacloudlogserviceexporter/go.sum index 65d883aac7fa..43abd040d1f7 100644 --- a/exporter/alibabacloudlogserviceexporter/go.sum +++ b/exporter/alibabacloudlogserviceexporter/go.sum @@ -297,8 +297,8 @@ github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= @@ -355,30 +355,32 @@ go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mI go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/awscloudwatchlogsexporter/go.mod b/exporter/awscloudwatchlogsexporter/go.mod index b678f9e9ffa1..c0aae0f02f22 100644 --- a/exporter/awscloudwatchlogsexporter/go.mod +++ b/exporter/awscloudwatchlogsexporter/go.mod @@ -9,12 +9,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/awsutil v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/cwlogs v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -42,14 +42,14 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/awscloudwatchlogsexporter/go.sum b/exporter/awscloudwatchlogsexporter/go.sum index 32e6fe4df613..0b0e936218a6 100644 --- a/exporter/awscloudwatchlogsexporter/go.sum +++ b/exporter/awscloudwatchlogsexporter/go.sum @@ -58,8 +58,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -74,26 +74,28 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/awsemfexporter/go.mod b/exporter/awsemfexporter/go.mod index ecf30e288abb..dab8c51261e7 100644 --- a/exporter/awsemfexporter/go.mod +++ b/exporter/awsemfexporter/go.mod @@ -11,13 +11,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/resourcetotelemetry v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/multierr v1.11.0 @@ -47,15 +47,15 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/awsemfexporter/go.sum b/exporter/awsemfexporter/go.sum index 8f71273c4265..8f678e03e7bb 100644 --- a/exporter/awsemfexporter/go.sum +++ b/exporter/awsemfexporter/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -76,30 +76,32 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/awskinesisexporter/go.mod b/exporter/awskinesisexporter/go.mod index 391d345c72d5..3d53511a1d19 100644 --- a/exporter/awskinesisexporter/go.mod +++ b/exporter/awskinesisexporter/go.mod @@ -15,12 +15,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -60,14 +60,14 @@ require ( github.com/openzipkin/zipkin-go v0.4.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/awskinesisexporter/go.sum b/exporter/awskinesisexporter/go.sum index 1640e8b63449..0170f008c9ad 100644 --- a/exporter/awskinesisexporter/go.sum +++ b/exporter/awskinesisexporter/go.sum @@ -94,8 +94,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.49.0 h1:ToNTdK4zSnPVJmh698mGFkDor9wBI/iGaJy5dbH1EgI= github.com/prometheus/common v0.49.0/go.mod h1:Kxm+EULxRbUkjGU6WFsQqo3ORzB4tyKvlWFOE9mB2sE= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -108,28 +108,30 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/awss3exporter/go.mod b/exporter/awss3exporter/go.mod index 0eda82efd2ea..7ec0ab01fea8 100644 --- a/exporter/awss3exporter/go.mod +++ b/exporter/awss3exporter/go.mod @@ -5,13 +5,13 @@ go 1.21 require ( github.com/aws/aws-sdk-go v1.51.17 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/multierr v1.11.0 @@ -47,7 +47,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -58,22 +58,23 @@ require ( github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/propagators/b3 v1.24.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/exporter/awss3exporter/go.sum b/exporter/awss3exporter/go.sum index a11da9c58478..bc15ee72baf2 100644 --- a/exporter/awss3exporter/go.sum +++ b/exporter/awss3exporter/go.sum @@ -104,8 +104,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -144,56 +144,58 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= go.opentelemetry.io/collector/config/confignet v0.97.0 h1:KJjv10/YVMslSSLVWW/IIjpLM3JiO3rWvw5dK/t1H7g= go.opentelemetry.io/collector/config/confignet v0.97.0/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/propagators/b3 v1.24.0 h1:n4xwCdTx3pZqZs2CjS/CUZAs03y3dZcGhC/FepKtEUY= diff --git a/exporter/awsxrayexporter/go.mod b/exporter/awsxrayexporter/go.mod index 4aa4643df24c..389d8461334c 100644 --- a/exporter/awsxrayexporter/go.mod +++ b/exporter/awsxrayexporter/go.mod @@ -8,13 +8,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/xray v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -44,14 +44,14 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/awsxrayexporter/go.sum b/exporter/awsxrayexporter/go.sum index 8a845114f7cf..a54c2e469316 100644 --- a/exporter/awsxrayexporter/go.sum +++ b/exporter/awsxrayexporter/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -76,30 +76,32 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/azuredataexplorerexporter/go.mod b/exporter/azuredataexplorerexporter/go.mod index 9acc82034472..60f58562024b 100644 --- a/exporter/azuredataexplorerexporter/go.mod +++ b/exporter/azuredataexplorerexporter/go.mod @@ -8,12 +8,12 @@ require ( github.com/json-iterator/go v1.1.12 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -59,16 +59,16 @@ require ( github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/samber/lo v1.38.1 // indirect github.com/shopspring/decimal v1.3.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/azuredataexplorerexporter/go.sum b/exporter/azuredataexplorerexporter/go.sum index 03ad96077e22..85ea01826899 100644 --- a/exporter/azuredataexplorerexporter/go.sum +++ b/exporter/azuredataexplorerexporter/go.sum @@ -109,8 +109,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -135,28 +135,30 @@ github.com/tj/assert v0.0.3/go.mod h1:Ne6X72Q+TB1AteidzQncjw9PabbMp4PBMZ1k+vd1Pv github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/azuremonitorexporter/go.mod b/exporter/azuremonitorexporter/go.mod index 579294458602..3d98c40cadaf 100644 --- a/exporter/azuremonitorexporter/go.mod +++ b/exporter/azuremonitorexporter/go.mod @@ -6,13 +6,13 @@ require ( github.com/microsoft/ApplicationInsights-Go v0.4.4 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -42,15 +42,15 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/azuremonitorexporter/go.sum b/exporter/azuremonitorexporter/go.sum index 425707190ec0..b30e8fef3a53 100644 --- a/exporter/azuremonitorexporter/go.sum +++ b/exporter/azuremonitorexporter/go.sum @@ -68,8 +68,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -85,30 +85,32 @@ github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8 github.com/tedsuo/ifrit v0.0.0-20180802180643-bea94bb476cc/go.mod h1:eyZnKCc955uh98WQvzOm0dgAeLnf2O0Rz0LPoC5ze+0= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/carbonexporter/go.mod b/exporter/carbonexporter/go.mod index d84ced4abf89..d7d13269139a 100644 --- a/exporter/carbonexporter/go.mod +++ b/exporter/carbonexporter/go.mod @@ -6,13 +6,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/resourcetotelemetry v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -41,15 +41,15 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/carbonexporter/go.sum b/exporter/carbonexporter/go.sum index aa379eeea145..8979159e4311 100644 --- a/exporter/carbonexporter/go.sum +++ b/exporter/carbonexporter/go.sum @@ -54,8 +54,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -68,32 +68,34 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/cassandraexporter/go.mod b/exporter/cassandraexporter/go.mod index 3865b167b095..dcbfd47f55a9 100644 --- a/exporter/cassandraexporter/go.mod +++ b/exporter/cassandraexporter/go.mod @@ -6,11 +6,11 @@ require ( github.com/gocql/gocql v1.6.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -40,15 +40,15 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/cassandraexporter/go.sum b/exporter/cassandraexporter/go.sum index f55ecfcf188c..4a05b692bf49 100644 --- a/exporter/cassandraexporter/go.sum +++ b/exporter/cassandraexporter/go.sum @@ -66,8 +66,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -80,28 +80,30 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/clickhouseexporter/go.mod b/exporter/clickhouseexporter/go.mod index 62bdfa094b44..52f722f5e09f 100644 --- a/exporter/clickhouseexporter/go.mod +++ b/exporter/clickhouseexporter/go.mod @@ -9,13 +9,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -73,7 +73,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/segmentio/asm v1.2.0 // indirect @@ -84,11 +84,11 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/clickhouseexporter/go.sum b/exporter/clickhouseexporter/go.sum index 12485a9d7c50..1e5d11e1f3de 100644 --- a/exporter/clickhouseexporter/go.sum +++ b/exporter/clickhouseexporter/go.sum @@ -140,8 +140,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -188,30 +188,32 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.mongodb.org/mongo-driver v1.11.4/go.mod h1:PTSz5yu21bkT/wXpkS7WR5f0ddqw5quethTUn9WM+2g= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/coralogixexporter/go.mod b/exporter/coralogixexporter/go.mod index f6f0672e74d7..c62f81307aad 100644 --- a/exporter/coralogixexporter/go.mod +++ b/exporter/coralogixexporter/go.mod @@ -5,16 +5,16 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -48,18 +48,18 @@ require ( github.com/mostynb/go-grpc-compression v1.2.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/coralogixexporter/go.sum b/exporter/coralogixexporter/go.sum index 85d4c1751f6c..2fa986af6393 100644 --- a/exporter/coralogixexporter/go.sum +++ b/exporter/coralogixexporter/go.sum @@ -62,8 +62,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -76,44 +76,46 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/datadogexporter/go.mod b/exporter/datadogexporter/go.mod index 7fd8f4421ec3..3252b4eb4dc4 100644 --- a/exporter/datadogexporter/go.mod +++ b/exporter/datadogexporter/go.mod @@ -35,27 +35,27 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/receiver/hostmetricsreceiver v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -215,7 +215,7 @@ require ( github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.13.0 // indirect @@ -236,19 +236,20 @@ require ( github.com/yusufpapurcu/wmi v1.2.4 // indirect github.com/zorkian/go-datadog-api v2.30.0+incompatible // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect diff --git a/exporter/datadogexporter/go.sum b/exporter/datadogexporter/go.sum index fe8a9ff07998..2ce902fd3a44 100644 --- a/exporter/datadogexporter/go.sum +++ b/exporter/datadogexporter/go.sum @@ -659,8 +659,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= @@ -780,78 +780,80 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:peaYUYJQuzSDBH0bbjDaFxep/qut+VY8eSa28OPOjsE= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:bD14O9UdbCLRMllSqObkA1klraPHe0GWmw4QUBxNH2g= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:xpgItQmezCZaGj/7+YlfcPuxxd5FM1Kho5b5VIUxXAY= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:49WJwX7BbMsPUQwIwax6dAo4k4wqGSrUDmR2FSIn6jI= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:Ka/rte5zyQ0Sm7esxDRmhmO4JSHYIVfj8VbEVWJKRJ0= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JVGUkc1eFmFDBGqr94dl+dqF2FFPe7LeBeWGvJiFWmM= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:5gJF1aDG3CPKgnUUV8244ebRWn7zwNhacGAXoArXETI= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WbMSjJjS13vslBYjSck1/Zt7TcD2sLt0BldNm7khVuQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/exporter/datadogexporter/integrationtest/go.mod b/exporter/datadogexporter/integrationtest/go.mod index 0c4f91b7494c..74b4176e9d71 100644 --- a/exporter/datadogexporter/integrationtest/go.mod +++ b/exporter/datadogexporter/integrationtest/go.mod @@ -9,17 +9,17 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/processor/tailsamplingprocessor v0.97.0 github.com/stretchr/testify v1.9.0 github.com/tinylib/msgp v1.1.9 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.24.0 go.opentelemetry.io/otel/sdk v1.24.0 @@ -126,7 +126,7 @@ require ( github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/procfs v0.13.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -140,29 +140,30 @@ require ( github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect diff --git a/exporter/datadogexporter/integrationtest/go.sum b/exporter/datadogexporter/integrationtest/go.sum index e45ccd7d6a0a..1fd1c6152fe3 100644 --- a/exporter/datadogexporter/integrationtest/go.sum +++ b/exporter/datadogexporter/integrationtest/go.sum @@ -505,8 +505,8 @@ github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= @@ -588,78 +588,80 @@ go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:peaYUYJQuzSDBH0bbjDaFxep/qut+VY8eSa28OPOjsE= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:bD14O9UdbCLRMllSqObkA1klraPHe0GWmw4QUBxNH2g= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:xpgItQmezCZaGj/7+YlfcPuxxd5FM1Kho5b5VIUxXAY= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:49WJwX7BbMsPUQwIwax6dAo4k4wqGSrUDmR2FSIn6jI= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:Ka/rte5zyQ0Sm7esxDRmhmO4JSHYIVfj8VbEVWJKRJ0= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JVGUkc1eFmFDBGqr94dl+dqF2FFPe7LeBeWGvJiFWmM= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:5gJF1aDG3CPKgnUUV8244ebRWn7zwNhacGAXoArXETI= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WbMSjJjS13vslBYjSck1/Zt7TcD2sLt0BldNm7khVuQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/exporter/datasetexporter/go.mod b/exporter/datasetexporter/go.mod index 49495831bea3..b75b0e1d4b33 100644 --- a/exporter/datasetexporter/go.mod +++ b/exporter/datasetexporter/go.mod @@ -8,18 +8,18 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/scalyr/dataset-go v0.18.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/zap v1.27.0 ) require ( github.com/cenkalti/backoff/v4 v4.3.0 - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 ) @@ -44,14 +44,14 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/datasetexporter/go.sum b/exporter/datasetexporter/go.sum index 504562c73db8..4d5a87f46a32 100644 --- a/exporter/datasetexporter/go.sum +++ b/exporter/datasetexporter/go.sum @@ -54,8 +54,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -70,28 +70,30 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/dynatraceexporter/go.mod b/exporter/dynatraceexporter/go.mod index 76e457638e42..02eb5cbf51b4 100644 --- a/exporter/dynatraceexporter/go.mod +++ b/exporter/dynatraceexporter/go.mod @@ -8,15 +8,15 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/resourcetotelemetry v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -49,19 +49,19 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/dynatraceexporter/go.sum b/exporter/dynatraceexporter/go.sum index f57234c7d573..29bc24ed2583 100644 --- a/exporter/dynatraceexporter/go.sum +++ b/exporter/dynatraceexporter/go.sum @@ -64,8 +64,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -80,42 +80,44 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/dynatraceexporter/metrics_exporter.go b/exporter/dynatraceexporter/metrics_exporter.go index c45a41a1bec5..6b4d1a26befa 100644 --- a/exporter/dynatraceexporter/metrics_exporter.go +++ b/exporter/dynatraceexporter/metrics_exporter.go @@ -278,8 +278,8 @@ func (e *metricsExporter) sendBatch(ctx context.Context, lines []string) error { } // start starts the exporter -func (e *metricsExporter) start(_ context.Context, host component.Host) (err error) { - client, err := e.cfg.ClientConfig.ToClient(host, e.settings) +func (e *metricsExporter) start(ctx context.Context, host component.Host) (err error) { + client, err := e.cfg.ClientConfig.ToClientContext(ctx, host, e.settings) if err != nil { e.settings.Logger.Error("Failed to construct HTTP client", zap.Error(err)) return fmt.Errorf("start: %w", err) diff --git a/exporter/elasticsearchexporter/go.mod b/exporter/elasticsearchexporter/go.mod index ef00e5903a99..1f0ae7ddcea4 100644 --- a/exporter/elasticsearchexporter/go.mod +++ b/exporter/elasticsearchexporter/go.mod @@ -10,13 +10,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -45,15 +45,15 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/elasticsearchexporter/go.sum b/exporter/elasticsearchexporter/go.sum index 069e5f076f95..1e49b18a4160 100644 --- a/exporter/elasticsearchexporter/go.sum +++ b/exporter/elasticsearchexporter/go.sum @@ -64,8 +64,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -79,32 +79,34 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/fileexporter/go.mod b/exporter/fileexporter/go.mod index 8dcb1751415b..2cd0fe913b52 100644 --- a/exporter/fileexporter/go.mod +++ b/exporter/fileexporter/go.mod @@ -9,12 +9,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -44,13 +44,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/extension/encoding v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/fileexporter/go.sum b/exporter/fileexporter/go.sum index fc2000c06f05..494e35c6f7e9 100644 --- a/exporter/fileexporter/go.sum +++ b/exporter/fileexporter/go.sum @@ -58,8 +58,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -72,26 +72,28 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/googlecloudexporter/go.mod b/exporter/googlecloudexporter/go.mod index d019c0cfb536..46b9b7e7b32f 100644 --- a/exporter/googlecloudexporter/go.mod +++ b/exporter/googlecloudexporter/go.mod @@ -5,11 +5,11 @@ go 1.21 require ( github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector v0.46.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -52,7 +52,7 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/tidwall/gjson v1.10.2 // indirect @@ -61,13 +61,13 @@ require ( github.com/tidwall/tinylru v1.1.0 // indirect github.com/tidwall/wal v1.1.7 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/exporter/googlecloudexporter/go.sum b/exporter/googlecloudexporter/go.sum index 6a0c30e3823b..321831ccf703 100644 --- a/exporter/googlecloudexporter/go.sum +++ b/exporter/googlecloudexporter/go.sum @@ -122,8 +122,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -154,30 +154,32 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 h1:SpGay3w+nEwMpfVnbqOLH5gY52/foP8RE8UzTZ1pdSE= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1/go.mod h1:4UoMYEZOC0yN/sPGH76KPkkU7zgiEWYWL9vwmbnTJPE= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/exporter/googlecloudpubsubexporter/go.mod b/exporter/googlecloudpubsubexporter/go.mod index 0aae29af7571..4121e63550f8 100644 --- a/exporter/googlecloudpubsubexporter/go.mod +++ b/exporter/googlecloudpubsubexporter/go.mod @@ -6,12 +6,12 @@ require ( cloud.google.com/go/pubsub v1.37.0 github.com/google/uuid v1.6.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -49,15 +49,15 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect go.einride.tech/aip v0.66.0 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/exporter/googlecloudpubsubexporter/go.sum b/exporter/googlecloudpubsubexporter/go.sum index 570f5786aa5e..d962ca604cb0 100644 --- a/exporter/googlecloudpubsubexporter/go.sum +++ b/exporter/googlecloudpubsubexporter/go.sum @@ -102,8 +102,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -126,26 +126,28 @@ go.einride.tech/aip v0.66.0 h1:XfV+NQX6L7EOYK11yoHHFtndeaWh3KbD9/cN/6iWEt8= go.einride.tech/aip v0.66.0/go.mod h1:qAhMsfT7plxBX+Oy7Huol6YUvZ0ZzdUz26yZsQwfl1M= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/exporter/googlemanagedprometheusexporter/go.mod b/exporter/googlemanagedprometheusexporter/go.mod index a790e9a35b61..5a188ac8194b 100644 --- a/exporter/googlemanagedprometheusexporter/go.mod +++ b/exporter/googlemanagedprometheusexporter/go.mod @@ -6,11 +6,11 @@ require ( github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector v0.46.0 github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector/googlemanagedprometheus v0.46.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -59,7 +59,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -75,23 +75,24 @@ require ( github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect diff --git a/exporter/googlemanagedprometheusexporter/go.sum b/exporter/googlemanagedprometheusexporter/go.sum index b59b6ad2b94b..768093ebd92a 100644 --- a/exporter/googlemanagedprometheusexporter/go.sum +++ b/exporter/googlemanagedprometheusexporter/go.sum @@ -137,8 +137,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -188,54 +188,56 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= go.opentelemetry.io/collector/config/confignet v0.97.0 h1:KJjv10/YVMslSSLVWW/IIjpLM3JiO3rWvw5dK/t1H7g= go.opentelemetry.io/collector/config/confignet v0.97.0/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 h1:SpGay3w+nEwMpfVnbqOLH5gY52/foP8RE8UzTZ1pdSE= diff --git a/exporter/honeycombmarkerexporter/go.mod b/exporter/honeycombmarkerexporter/go.mod index f606fd4cb2b0..c291f4aa4c88 100644 --- a/exporter/honeycombmarkerexporter/go.mod +++ b/exporter/honeycombmarkerexporter/go.mod @@ -6,13 +6,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -50,21 +50,21 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/honeycombmarkerexporter/go.sum b/exporter/honeycombmarkerexporter/go.sum index da86137a752f..e46fddbde2d7 100644 --- a/exporter/honeycombmarkerexporter/go.sum +++ b/exporter/honeycombmarkerexporter/go.sum @@ -76,8 +76,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -92,42 +92,44 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/honeycombmarkerexporter/logs_exporter.go b/exporter/honeycombmarkerexporter/logs_exporter.go index 860c38603f9e..297eddbec852 100644 --- a/exporter/honeycombmarkerexporter/logs_exporter.go +++ b/exporter/honeycombmarkerexporter/logs_exporter.go @@ -158,8 +158,8 @@ func (e *honeycombLogsExporter) sendMarker(ctx context.Context, m marker, logRec return nil } -func (e *honeycombLogsExporter) start(_ context.Context, host component.Host) (err error) { - client, err := e.httpClientSettings.ToClient(host, e.set) +func (e *honeycombLogsExporter) start(ctx context.Context, host component.Host) (err error) { + client, err := e.httpClientSettings.ToClientContext(ctx, host, e.set) if err != nil { return err diff --git a/exporter/influxdbexporter/go.mod b/exporter/influxdbexporter/go.mod index 1de2a275eec1..276ee00dab59 100644 --- a/exporter/influxdbexporter/go.mod +++ b/exporter/influxdbexporter/go.mod @@ -8,14 +8,14 @@ require ( github.com/influxdata/influxdb-observability/otel2influx v0.5.8 github.com/influxdata/line-protocol/v2 v2.2.1 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -49,21 +49,21 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/influxdbexporter/go.sum b/exporter/influxdbexporter/go.sum index 065163b3f1aa..0ea9e0290cac 100644 --- a/exporter/influxdbexporter/go.sum +++ b/exporter/influxdbexporter/go.sum @@ -87,8 +87,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -104,44 +104,46 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/influxdbexporter/writer.go b/exporter/influxdbexporter/writer.go index b27e99ca9ee0..6899ea200b63 100644 --- a/exporter/influxdbexporter/writer.go +++ b/exporter/influxdbexporter/writer.go @@ -113,8 +113,8 @@ func composeWriteURL(config *Config) (string, error) { } // Start implements component.StartFunc -func (w *influxHTTPWriter) Start(_ context.Context, host component.Host) error { - httpClient, err := w.httpClientSettings.ToClient(host, w.telemetrySettings) +func (w *influxHTTPWriter) Start(ctx context.Context, host component.Host) error { + httpClient, err := w.httpClientSettings.ToClientContext(ctx, host, w.telemetrySettings) if err != nil { return err } diff --git a/exporter/instanaexporter/exporter.go b/exporter/instanaexporter/exporter.go index 9cdbcfbf3dda..75f37441d094 100644 --- a/exporter/instanaexporter/exporter.go +++ b/exporter/instanaexporter/exporter.go @@ -29,8 +29,8 @@ type instanaExporter struct { userAgent string } -func (e *instanaExporter) start(_ context.Context, host component.Host) error { - client, err := e.config.ClientConfig.ToClient(host, e.settings) +func (e *instanaExporter) start(ctx context.Context, host component.Host) error { + client, err := e.config.ClientConfig.ToClientContext(ctx, host, e.settings) if err != nil { return err } diff --git a/exporter/instanaexporter/go.mod b/exporter/instanaexporter/go.mod index a6841c642588..0a3aeb337e78 100644 --- a/exporter/instanaexporter/go.mod +++ b/exporter/instanaexporter/go.mod @@ -5,16 +5,16 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -47,19 +47,19 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/instanaexporter/go.sum b/exporter/instanaexporter/go.sum index 909747ddafbb..f642801827e5 100644 --- a/exporter/instanaexporter/go.sum +++ b/exporter/instanaexporter/go.sum @@ -62,8 +62,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -78,44 +78,46 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/kafkaexporter/go.mod b/exporter/kafkaexporter/go.mod index dc51db3b90d5..4efe91efccfb 100644 --- a/exporter/kafkaexporter/go.mod +++ b/exporter/kafkaexporter/go.mod @@ -14,14 +14,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.97.0 github.com/openzipkin/zipkin-go v0.4.2 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -66,18 +66,18 @@ require ( github.com/pierrec/lz4/v4 v4.1.21 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect github.com/xdg-go/pbkdf2 v1.0.0 // indirect github.com/xdg-go/scram v1.1.2 // indirect github.com/xdg-go/stringprep v1.0.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/kafkaexporter/go.sum b/exporter/kafkaexporter/go.sum index 2864be2c8120..abcc1dbbf780 100644 --- a/exporter/kafkaexporter/go.sum +++ b/exporter/kafkaexporter/go.sum @@ -106,8 +106,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.49.0 h1:ToNTdK4zSnPVJmh698mGFkDor9wBI/iGaJy5dbH1EgI= github.com/prometheus/common v0.49.0/go.mod h1:Kxm+EULxRbUkjGU6WFsQqo3ORzB4tyKvlWFOE9mB2sE= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -135,32 +135,34 @@ github.com/xdg-go/stringprep v1.0.4/go.mod h1:mPGuuIYwz7CmR2bT9j4GbQqutWS1zV24gi github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/kineticaexporter/go.mod b/exporter/kineticaexporter/go.mod index 6e5d69510c8f..14695db94710 100644 --- a/exporter/kineticaexporter/go.mod +++ b/exporter/kineticaexporter/go.mod @@ -8,11 +8,11 @@ require ( github.com/samber/lo v1.39.0 github.com/stretchr/testify v1.9.0 github.com/wk8/go-ordered-map/v2 v2.1.8 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/multierr v1.11.0 @@ -49,16 +49,16 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/ztrue/tracerr v0.3.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/kineticaexporter/go.sum b/exporter/kineticaexporter/go.sum index 82057f1c455a..38eeff397dd8 100644 --- a/exporter/kineticaexporter/go.sum +++ b/exporter/kineticaexporter/go.sum @@ -74,8 +74,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -94,28 +94,30 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/ztrue/tracerr v0.3.0 h1:lDi6EgEYhPYPnKcjsYzmWw4EkFEoA/gfe+I9Y5f+h6Y= github.com/ztrue/tracerr v0.3.0/go.mod h1:qEalzze4VN9O8tnhBXScfCrmoJo10o8TN5ciKjm6Mww= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/loadbalancingexporter/go.mod b/exporter/loadbalancingexporter/go.mod index 2ad82205d5f3..afedfc5a7adc 100644 --- a/exporter/loadbalancingexporter/go.mod +++ b/exporter/loadbalancingexporter/go.mod @@ -9,14 +9,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/batchpersignal v0.97.0 github.com/stretchr/testify v1.9.0 go.opencensus.io v0.24.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -86,7 +86,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -96,29 +96,30 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/propagators/b3 v1.24.0 // indirect diff --git a/exporter/loadbalancingexporter/go.sum b/exporter/loadbalancingexporter/go.sum index 24ed6257b19f..c3f352e069e3 100644 --- a/exporter/loadbalancingexporter/go.sum +++ b/exporter/loadbalancingexporter/go.sum @@ -176,8 +176,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -217,70 +217,72 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:jv6wp8Muswbz/iS62KGDNUZx2GSBsnL9zL2RAQDQTxw= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:d0SAS68CUbHU+GKOrzMlGMWCsRfn8a9Rh8AUOHxC+xk= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:EZ1WfK0tKytC56o30ZhSj+1IROllj+XMGe0pqm5KGOM= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:s3L5toZ5PsceEgmDiZvFEQQwyos8VxdpZ1e7fokrwAE= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/exporter/logicmonitorexporter/go.mod b/exporter/logicmonitorexporter/go.mod index 543038d1ea22..2f78d830bd2f 100644 --- a/exporter/logicmonitorexporter/go.mod +++ b/exporter/logicmonitorexporter/go.mod @@ -7,14 +7,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/resourcetotelemetry v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -47,20 +47,20 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/logicmonitorexporter/go.sum b/exporter/logicmonitorexporter/go.sum index ff71feefa62a..2fec1a01907a 100644 --- a/exporter/logicmonitorexporter/go.sum +++ b/exporter/logicmonitorexporter/go.sum @@ -64,8 +64,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -80,42 +80,44 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/logicmonitorexporter/logs_exporter.go b/exporter/logicmonitorexporter/logs_exporter.go index 725555c94368..5e25f40ad9d8 100644 --- a/exporter/logicmonitorexporter/logs_exporter.go +++ b/exporter/logicmonitorexporter/logs_exporter.go @@ -46,7 +46,7 @@ func newLogsExporter(_ context.Context, cfg component.Config, set exporter.Creat } func (e *logExporter) start(ctx context.Context, host component.Host) error { - client, err := e.config.ClientConfig.ToClient(host, e.settings) + client, err := e.config.ClientConfig.ToClientContext(ctx, host, e.settings) if err != nil { return fmt.Errorf("failed to create http client: %w", err) } diff --git a/exporter/logicmonitorexporter/traces_exporter.go b/exporter/logicmonitorexporter/traces_exporter.go index ca3a5e221f31..e2cd8cb8d248 100644 --- a/exporter/logicmonitorexporter/traces_exporter.go +++ b/exporter/logicmonitorexporter/traces_exporter.go @@ -34,7 +34,7 @@ func newTracesExporter(_ context.Context, cfg component.Config, set exporter.Cre } func (e *tracesExporter) start(ctx context.Context, host component.Host) error { - client, err := e.config.ClientConfig.ToClient(host, e.settings) + client, err := e.config.ClientConfig.ToClientContext(ctx, host, e.settings) if err != nil { return fmt.Errorf("failed to create http client: %w", err) } diff --git a/exporter/logzioexporter/exporter.go b/exporter/logzioexporter/exporter.go index ac8f2ec6bd17..2b00d86e57ce 100644 --- a/exporter/logzioexporter/exporter.go +++ b/exporter/logzioexporter/exporter.go @@ -112,8 +112,8 @@ func newLogzioLogsExporter(config *Config, set exporter.CreateSettings) (exporte ) } -func (exporter *logzioExporter) start(_ context.Context, host component.Host) error { - client, err := exporter.config.ClientConfig.ToClient(host, exporter.settings) +func (exporter *logzioExporter) start(ctx context.Context, host component.Host) error { + client, err := exporter.config.ClientConfig.ToClientContext(ctx, host, exporter.settings) if err != nil { return err } diff --git a/exporter/logzioexporter/go.mod b/exporter/logzioexporter/go.mod index a58ea0b2530a..b6ff8a170602 100644 --- a/exporter/logzioexporter/go.mod +++ b/exporter/logzioexporter/go.mod @@ -8,16 +8,16 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -56,19 +56,19 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/logzioexporter/go.sum b/exporter/logzioexporter/go.sum index 9b4a5458bc67..384a8f4072f8 100644 --- a/exporter/logzioexporter/go.sum +++ b/exporter/logzioexporter/go.sum @@ -82,8 +82,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.49.0 h1:ToNTdK4zSnPVJmh698mGFkDor9wBI/iGaJy5dbH1EgI= github.com/prometheus/common v0.49.0/go.mod h1:Kxm+EULxRbUkjGU6WFsQqo3ORzB4tyKvlWFOE9mB2sE= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -99,44 +99,46 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/lokiexporter/exporter.go b/exporter/lokiexporter/exporter.go index 862ae1142595..c037c5244d95 100644 --- a/exporter/lokiexporter/exporter.go +++ b/exporter/lokiexporter/exporter.go @@ -148,8 +148,8 @@ func encode(pb proto.Message) ([]byte, error) { return buf, nil } -func (l *lokiExporter) start(_ context.Context, host component.Host) (err error) { - client, err := l.config.ClientConfig.ToClient(host, l.settings) +func (l *lokiExporter) start(ctx context.Context, host component.Host) (err error) { + client, err := l.config.ClientConfig.ToClientContext(ctx, host, l.settings) if err != nil { return err } diff --git a/exporter/lokiexporter/go.mod b/exporter/lokiexporter/go.mod index 4183f3c4b67b..46b2078b45b1 100644 --- a/exporter/lokiexporter/go.mod +++ b/exporter/lokiexporter/go.mod @@ -10,16 +10,16 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/loki v0.97.0 github.com/prometheus/common v0.52.2 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -56,19 +56,19 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/lokiexporter/go.sum b/exporter/lokiexporter/go.sum index 44ac997c0594..0bc55a9398d9 100644 --- a/exporter/lokiexporter/go.sum +++ b/exporter/lokiexporter/go.sum @@ -100,8 +100,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= @@ -120,44 +120,46 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/mezmoexporter/exporter.go b/exporter/mezmoexporter/exporter.go index b262889005eb..0c4689957d8f 100644 --- a/exporter/mezmoexporter/exporter.go +++ b/exporter/mezmoexporter/exporter.go @@ -58,8 +58,8 @@ func (m *mezmoExporter) pushLogData(_ context.Context, ld plog.Logs) error { return m.logDataToMezmo(ld) } -func (m *mezmoExporter) start(_ context.Context, host component.Host) (err error) { - m.client, err = m.config.ClientConfig.ToClient(host, m.settings) +func (m *mezmoExporter) start(ctx context.Context, host component.Host) (err error) { + m.client, err = m.config.ClientConfig.ToClientContext(ctx, host, m.settings) return err } diff --git a/exporter/mezmoexporter/go.mod b/exporter/mezmoexporter/go.mod index ef08996e25e9..ac9edc3a271d 100644 --- a/exporter/mezmoexporter/go.mod +++ b/exporter/mezmoexporter/go.mod @@ -5,14 +5,14 @@ go 1.21 require ( github.com/cenkalti/backoff/v4 v4.3.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -44,21 +44,21 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/mezmoexporter/go.sum b/exporter/mezmoexporter/go.sum index accf836fbee9..46fbc7ccbdd0 100644 --- a/exporter/mezmoexporter/go.sum +++ b/exporter/mezmoexporter/go.sum @@ -62,8 +62,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -78,44 +78,46 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/opencensusexporter/go.mod b/exporter/opencensusexporter/go.mod index 3bf0a5f67d2d..c4c19215e592 100644 --- a/exporter/opencensusexporter/go.mod +++ b/exporter/opencensusexporter/go.mod @@ -9,16 +9,16 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/opencensus v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -54,22 +54,22 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/soheilhy/cmux v0.1.5 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/opencensusexporter/go.sum b/exporter/opencensusexporter/go.sum index f7e7488d0019..51d69e578092 100644 --- a/exporter/opencensusexporter/go.sum +++ b/exporter/opencensusexporter/go.sum @@ -95,8 +95,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -120,46 +120,48 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/opensearchexporter/go.mod b/exporter/opensearchexporter/go.mod index 649f01773e4d..b5d08352c22d 100644 --- a/exporter/opensearchexporter/go.mod +++ b/exporter/opensearchexporter/go.mod @@ -6,15 +6,15 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/opensearch-project/opensearch-go/v2 v2.3.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 ) @@ -27,7 +27,7 @@ require ( github.com/hashicorp/go-version v1.6.0 // indirect github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect @@ -58,15 +58,15 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 diff --git a/exporter/opensearchexporter/go.sum b/exporter/opensearchexporter/go.sum index 1c852ffeec49..83a9b62354f2 100644 --- a/exporter/opensearchexporter/go.sum +++ b/exporter/opensearchexporter/go.sum @@ -83,8 +83,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -106,42 +106,44 @@ github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8 github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/opensearchexporter/sso_log_exporter.go b/exporter/opensearchexporter/sso_log_exporter.go index ba515222de2f..7ab0ec9447e5 100644 --- a/exporter/opensearchexporter/sso_log_exporter.go +++ b/exporter/opensearchexporter/sso_log_exporter.go @@ -48,8 +48,8 @@ func newLogExporter(cfg *Config, set exporter.CreateSettings) (*logExporter, err }, nil } -func (l *logExporter) Start(_ context.Context, host component.Host) error { - httpClient, err := l.httpSettings.ToClient(host, l.telemetry) +func (l *logExporter) Start(ctx context.Context, host component.Host) error { + httpClient, err := l.httpSettings.ToClientContext(ctx, host, l.telemetry) if err != nil { return err } diff --git a/exporter/opensearchexporter/sso_trace_exporter.go b/exporter/opensearchexporter/sso_trace_exporter.go index 8742793fc3a1..1b791a1c772b 100644 --- a/exporter/opensearchexporter/sso_trace_exporter.go +++ b/exporter/opensearchexporter/sso_trace_exporter.go @@ -45,8 +45,8 @@ func newSSOTracesExporter(cfg *Config, set exporter.CreateSettings) (*ssoTracesE }, nil } -func (s *ssoTracesExporter) Start(_ context.Context, host component.Host) error { - httpClient, err := s.httpSettings.ToClient(host, s.telemetry) +func (s *ssoTracesExporter) Start(ctx context.Context, host component.Host) error { + httpClient, err := s.httpSettings.ToClientContext(ctx, host, s.telemetry) if err != nil { return err } diff --git a/exporter/otelarrowexporter/go.mod b/exporter/otelarrowexporter/go.mod index ea2c1e2d00d5..56eca60da1ba 100644 --- a/exporter/otelarrowexporter/go.mod +++ b/exporter/otelarrowexporter/go.mod @@ -6,17 +6,17 @@ require ( github.com/open-telemetry/otel-arrow v0.18.0 github.com/open-telemetry/otel-arrow/collector v0.20.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 google.golang.org/grpc v1.62.1 @@ -52,18 +52,18 @@ require ( github.com/mostynb/go-grpc-compression v1.2.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/zeebo/xxh3 v1.0.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/otelarrowexporter/go.sum b/exporter/otelarrowexporter/go.sum index 3dc43e1ea1fd..89bd5cad94b2 100644 --- a/exporter/otelarrowexporter/go.sum +++ b/exporter/otelarrowexporter/go.sum @@ -77,8 +77,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -95,44 +95,46 @@ github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/prometheusexporter/go.mod b/exporter/prometheusexporter/go.mod index 1379a6cef451..6e12a3985408 100644 --- a/exporter/prometheusexporter/go.mod +++ b/exporter/prometheusexporter/go.mod @@ -11,15 +11,15 @@ require ( github.com/prometheus/client_model v0.6.1 github.com/prometheus/common v0.52.2 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -139,16 +139,16 @@ require ( github.com/spf13/pflag v1.0.5 // indirect github.com/vultr/govultr/v2 v2.17.2 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/prometheusexporter/go.sum b/exporter/prometheusexporter/go.sum index 0d25c830ae5d..843931f9666d 100644 --- a/exporter/prometheusexporter/go.sum +++ b/exporter/prometheusexporter/go.sum @@ -563,66 +563,68 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/exporter/prometheusexporter/prometheus.go b/exporter/prometheusexporter/prometheus.go index 2cb2faceb078..9309bd54be2b 100644 --- a/exporter/prometheusexporter/prometheus.go +++ b/exporter/prometheusexporter/prometheus.go @@ -57,8 +57,8 @@ func newPrometheusExporter(config *Config, set exporter.CreateSettings) (*promet }, nil } -func (pe *prometheusExporter) Start(_ context.Context, host component.Host) error { - ln, err := pe.config.ToListener() +func (pe *prometheusExporter) Start(ctx context.Context, host component.Host) error { + ln, err := pe.config.ToListenerContext(ctx) if err != nil { return err } @@ -67,7 +67,7 @@ func (pe *prometheusExporter) Start(_ context.Context, host component.Host) erro mux := http.NewServeMux() mux.Handle("/metrics", pe.handler) - srv, err := pe.config.ToServer(host, pe.settings, mux) + srv, err := pe.config.ToServerContext(ctx, host, pe.settings, mux) if err != nil { return err } diff --git a/exporter/prometheusremotewriteexporter/exporter.go b/exporter/prometheusremotewriteexporter/exporter.go index 51825e709c0a..52ad2ecd1f91 100644 --- a/exporter/prometheusremotewriteexporter/exporter.go +++ b/exporter/prometheusremotewriteexporter/exporter.go @@ -141,7 +141,7 @@ func newPRWExporter(cfg *Config, set exporter.CreateSettings) (*prwExporter, err // Start creates the prometheus client func (prwe *prwExporter) Start(ctx context.Context, host component.Host) (err error) { - prwe.client, err = prwe.clientSettings.ToClient(host, prwe.settings) + prwe.client, err = prwe.clientSettings.ToClientContext(ctx, host, prwe.settings) if err != nil { return err } diff --git a/exporter/prometheusremotewriteexporter/go.mod b/exporter/prometheusremotewriteexporter/go.mod index 73e5a03289a2..3b740475b724 100644 --- a/exporter/prometheusremotewriteexporter/go.mod +++ b/exporter/prometheusremotewriteexporter/go.mod @@ -14,15 +14,15 @@ require ( github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 github.com/tidwall/wal v1.1.7 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 @@ -53,7 +53,7 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -61,16 +61,16 @@ require ( github.com/tidwall/match v1.1.1 // indirect github.com/tidwall/pretty v1.2.0 // indirect github.com/tidwall/tinylru v1.1.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/prometheusremotewriteexporter/go.sum b/exporter/prometheusremotewriteexporter/go.sum index 7379c6f12b9b..fb6234a58729 100644 --- a/exporter/prometheusremotewriteexporter/go.sum +++ b/exporter/prometheusremotewriteexporter/go.sum @@ -62,8 +62,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -90,44 +90,46 @@ github.com/tidwall/wal v1.1.7 h1:emc1TRjIVsdKKSnpwGBAcsAGg0767SvUk8+ygx7Bb+4= github.com/tidwall/wal v1.1.7/go.mod h1:r6lR1j27W9EPalgHiB7zLJDYu3mzW5BQP5KrzBpYY/E= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/pulsarexporter/go.mod b/exporter/pulsarexporter/go.mod index c2f2ffa126bd..1ca236514033 100644 --- a/exporter/pulsarexporter/go.mod +++ b/exporter/pulsarexporter/go.mod @@ -10,14 +10,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/multierr v1.11.0 @@ -64,15 +64,15 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/sirupsen/logrus v1.9.3 // indirect github.com/spaolacci/murmur3 v1.1.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/pulsarexporter/go.sum b/exporter/pulsarexporter/go.sum index 3e537956edb5..9ab3b3ed4206 100644 --- a/exporter/pulsarexporter/go.sum +++ b/exporter/pulsarexporter/go.sum @@ -353,8 +353,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= @@ -420,30 +420,32 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/rabbitmqexporter/go.mod b/exporter/rabbitmqexporter/go.mod index 965a5ed0697c..957d8df9c578 100644 --- a/exporter/rabbitmqexporter/go.mod +++ b/exporter/rabbitmqexporter/go.mod @@ -4,12 +4,12 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -36,13 +36,13 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/rabbitmqexporter/go.sum b/exporter/rabbitmqexporter/go.sum index 8149c94dad5e..be22bc29f420 100644 --- a/exporter/rabbitmqexporter/go.sum +++ b/exporter/rabbitmqexporter/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -66,26 +66,28 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/sapmexporter/go.mod b/exporter/sapmexporter/go.mod index a6cddfb9f073..a58c98b7dbe6 100644 --- a/exporter/sapmexporter/go.mod +++ b/exporter/sapmexporter/go.mod @@ -11,13 +11,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.97.0 github.com/signalfx/sapm-proto v0.14.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -47,15 +47,15 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/sapmexporter/go.sum b/exporter/sapmexporter/go.sum index 7e0844efab66..6bd8d6d4b681 100644 --- a/exporter/sapmexporter/go.sum +++ b/exporter/sapmexporter/go.sum @@ -93,8 +93,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.49.0 h1:ToNTdK4zSnPVJmh698mGFkDor9wBI/iGaJy5dbH1EgI= github.com/prometheus/common v0.49.0/go.mod h1:Kxm+EULxRbUkjGU6WFsQqo3ORzB4tyKvlWFOE9mB2sE= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -116,30 +116,32 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/sentryexporter/go.mod b/exporter/sentryexporter/go.mod index 8ea95dd22d51..6a3b9d59c2ee 100644 --- a/exporter/sentryexporter/go.mod +++ b/exporter/sentryexporter/go.mod @@ -7,11 +7,11 @@ require ( github.com/google/go-cmp v0.6.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -38,15 +38,15 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/sentryexporter/go.sum b/exporter/sentryexporter/go.sum index ba0915cc9de9..a88d6dd7ba51 100644 --- a/exporter/sentryexporter/go.sum +++ b/exporter/sentryexporter/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -74,28 +74,30 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/signalfxexporter/exporter.go b/exporter/signalfxexporter/exporter.go index be733ec800f9..c0d4cc3cd6bd 100644 --- a/exporter/signalfxexporter/exporter.go +++ b/exporter/signalfxexporter/exporter.go @@ -106,7 +106,7 @@ func (se *signalfxExporter) start(ctx context.Context, host component.Host) (err } headers := buildHeaders(se.config, se.version) - client, err := se.createClient(host) + client, err := se.createClient(ctx, host) if err != nil { return err } @@ -188,14 +188,14 @@ func newEventExporter(config *Config, createSettings exporter.CreateSettings) (* } -func (se *signalfxExporter) startLogs(_ context.Context, host component.Host) error { +func (se *signalfxExporter) startLogs(ctx context.Context, host component.Host) error { ingestURL, err := se.config.getIngestURL() if err != nil { return err } headers := buildHeaders(se.config, se.version) - client, err := se.createClient(host) + client, err := se.createClient(ctx, host) if err != nil { return err } @@ -215,10 +215,10 @@ func (se *signalfxExporter) startLogs(_ context.Context, host component.Host) er return nil } -func (se *signalfxExporter) createClient(host component.Host) (*http.Client, error) { +func (se *signalfxExporter) createClient(ctx context.Context, host component.Host) (*http.Client, error) { se.config.ClientConfig.TLSSetting = se.config.IngestTLSSettings - return se.config.ToClient(host, se.telemetrySettings) + return se.config.ToClientContext(ctx, host, se.telemetrySettings) } func (se *signalfxExporter) pushMetrics(ctx context.Context, md pmetric.Metrics) error { diff --git a/exporter/signalfxexporter/exporter_test.go b/exporter/signalfxexporter/exporter_test.go index 25bad291c50f..d81236b80cf8 100644 --- a/exporter/signalfxexporter/exporter_test.go +++ b/exporter/signalfxexporter/exporter_test.go @@ -187,7 +187,7 @@ func TestConsumeMetrics(t *testing.T) { }, } - client, err := cfg.ToClient(componenttest.NewNopHost(), exportertest.NewNopCreateSettings().TelemetrySettings) + client, err := cfg.ToClientContext(context.Background(), componenttest.NewNopHost(), exportertest.NewNopCreateSettings().TelemetrySettings) require.NoError(t, err) c, err := translation.NewMetricsConverter(zap.NewNop(), nil, nil, nil, "", false, true) @@ -699,7 +699,7 @@ func TestConsumeEventData(t *testing.T) { }, } - client, err := cfg.ToClient(componenttest.NewNopHost(), exportertest.NewNopCreateSettings().TelemetrySettings) + client, err := cfg.ToClientContext(context.Background(), componenttest.NewNopHost(), exportertest.NewNopCreateSettings().TelemetrySettings) require.NoError(t, err) eventClient := &sfxEventClient{ @@ -1808,7 +1808,7 @@ func TestConsumeMixedMetrics(t *testing.T) { }, } - client, err := cfg.ToClient(componenttest.NewNopHost(), exportertest.NewNopCreateSettings().TelemetrySettings) + client, err := cfg.ToClientContext(context.Background(), componenttest.NewNopHost(), exportertest.NewNopCreateSettings().TelemetrySettings) require.NoError(t, err) c, err := translation.NewMetricsConverter(zap.NewNop(), nil, nil, nil, "", false, false) diff --git a/exporter/signalfxexporter/go.mod b/exporter/signalfxexporter/go.mod index 960eea85d3c2..904f43df3b9d 100644 --- a/exporter/signalfxexporter/go.mod +++ b/exporter/signalfxexporter/go.mod @@ -17,16 +17,16 @@ require ( github.com/shirou/gopsutil/v3 v3.24.3 github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -64,7 +64,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -72,15 +72,15 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/signalfxexporter/go.sum b/exporter/signalfxexporter/go.sum index c108cf2464ea..0c6c05eea336 100644 --- a/exporter/signalfxexporter/go.sum +++ b/exporter/signalfxexporter/go.sum @@ -81,8 +81,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -118,44 +118,46 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/signalfxexporter/internal/correlation/correlation.go b/exporter/signalfxexporter/internal/correlation/correlation.go index 281339e1df6c..29c7ab783570 100644 --- a/exporter/signalfxexporter/internal/correlation/correlation.go +++ b/exporter/signalfxexporter/internal/correlation/correlation.go @@ -48,7 +48,7 @@ func NewTracker(cfg *Config, accessToken configopaque.String, params exporter.Cr } } -func newCorrelationClient(cfg *Config, accessToken configopaque.String, params exporter.CreateSettings, host component.Host) ( +func newCorrelationClient(ctx context.Context, cfg *Config, accessToken configopaque.String, params exporter.CreateSettings, host component.Host) ( *correlationContext, error, ) { corrURL, err := url.Parse(cfg.ClientConfig.Endpoint) @@ -56,12 +56,12 @@ func newCorrelationClient(cfg *Config, accessToken configopaque.String, params e return nil, fmt.Errorf("failed to parse correlation endpoint URL %q: %w", cfg.ClientConfig.Endpoint, err) } - httpClient, err := cfg.ToClient(host, params.TelemetrySettings) + httpClient, err := cfg.ToClientContext(ctx, host, params.TelemetrySettings) if err != nil { return nil, fmt.Errorf("failed to create correlation API client: %w", err) } - ctx, cancel := context.WithCancel(context.Background()) + ctx, cancel := context.WithCancel(ctx) client, err := correlations.NewCorrelationClient(ctx, newZapShim(params.Logger), httpClient, correlations.ClientConfig{ Config: cfg.Config, @@ -123,8 +123,8 @@ func (cor *Tracker) ProcessTraces(ctx context.Context, traces ptrace.Traces) err } // Start correlation tracking. -func (cor *Tracker) Start(_ context.Context, host component.Host) (err error) { - cor.correlation, err = newCorrelationClient(cor.cfg, cor.accessToken, cor.params, host) +func (cor *Tracker) Start(ctx context.Context, host component.Host) (err error) { + cor.correlation, err = newCorrelationClient(ctx, cor.cfg, cor.accessToken, cor.params, host) if err != nil { return err } diff --git a/exporter/skywalkingexporter/go.mod b/exporter/skywalkingexporter/go.mod index dba55e7c066c..d2debafaafce 100644 --- a/exporter/skywalkingexporter/go.mod +++ b/exporter/skywalkingexporter/go.mod @@ -7,16 +7,16 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 google.golang.org/grpc v1.62.1 @@ -48,19 +48,19 @@ require ( github.com/mostynb/go-grpc-compression v1.2.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/skywalkingexporter/go.sum b/exporter/skywalkingexporter/go.sum index b5432c74fbe7..a7e8dc2651d1 100644 --- a/exporter/skywalkingexporter/go.sum +++ b/exporter/skywalkingexporter/go.sum @@ -104,8 +104,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -123,46 +123,48 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/splunkhecexporter/client.go b/exporter/splunkhecexporter/client.go index e8d1748f520c..33d72704e99c 100644 --- a/exporter/splunkhecexporter/client.go +++ b/exporter/splunkhecexporter/client.go @@ -618,7 +618,7 @@ func (c *client) stop(context.Context) error { func (c *client) start(ctx context.Context, host component.Host) (err error) { - httpClient, err := buildHTTPClient(c.config, host, c.telemetrySettings) + httpClient, err := buildHTTPClient(ctx, c.config, host, c.telemetrySettings) if err != nil { return err } @@ -662,10 +662,10 @@ func checkHecHealth(ctx context.Context, client *http.Client, healthCheckURL *ur return nil } -func buildHTTPClient(config *Config, host component.Host, telemetrySettings component.TelemetrySettings) (*http.Client, error) { +func buildHTTPClient(ctx context.Context, config *Config, host component.Host, telemetrySettings component.TelemetrySettings) (*http.Client, error) { // we handle compression explicitly. config.ClientConfig.Compression = "" - return config.ToClient(host, telemetrySettings) + return config.ToClientContext(ctx, host, telemetrySettings) } func buildHTTPHeaders(config *Config, buildInfo component.BuildInfo) map[string]string { diff --git a/exporter/splunkhecexporter/go.mod b/exporter/splunkhecexporter/go.mod index 6dba9f51100c..5fd0a3cc4ccb 100644 --- a/exporter/splunkhecexporter/go.mod +++ b/exporter/splunkhecexporter/go.mod @@ -13,16 +13,16 @@ require ( github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 go.opencensus.io v0.24.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -79,7 +79,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -89,15 +89,15 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/splunkhecexporter/go.sum b/exporter/splunkhecexporter/go.sum index 0a2c88075ec3..923ce854bf9f 100644 --- a/exporter/splunkhecexporter/go.sum +++ b/exporter/splunkhecexporter/go.sum @@ -147,8 +147,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -189,44 +189,46 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/sumologicexporter/exporter.go b/exporter/sumologicexporter/exporter.go index 64347cc22313..0f5b85e5e1f4 100644 --- a/exporter/sumologicexporter/exporter.go +++ b/exporter/sumologicexporter/exporter.go @@ -124,8 +124,8 @@ func newMetricsExporter( } // start starts the exporter -func (se *sumologicexporter) start(_ context.Context, host component.Host) (err error) { - client, err := se.config.ClientConfig.ToClient(host, se.settings) +func (se *sumologicexporter) start(ctx context.Context, host component.Host) (err error) { + client, err := se.config.ClientConfig.ToClientContext(ctx, host, se.settings) if err != nil { return fmt.Errorf("failed to create HTTP Client: %w", err) } diff --git a/exporter/sumologicexporter/go.mod b/exporter/sumologicexporter/go.mod index a8b9745c389c..52cb0bba54fe 100644 --- a/exporter/sumologicexporter/go.mod +++ b/exporter/sumologicexporter/go.mod @@ -5,13 +5,13 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 go.opencensus.io v0.24.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 ) @@ -43,21 +43,21 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/sumologicexporter/go.sum b/exporter/sumologicexporter/go.sum index e35513bfd6f3..11357d52fe47 100644 --- a/exporter/sumologicexporter/go.sum +++ b/exporter/sumologicexporter/go.sum @@ -92,8 +92,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -115,42 +115,44 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/syslogexporter/go.mod b/exporter/syslogexporter/go.mod index 36f04cafed16..1ac0594cbadb 100644 --- a/exporter/syslogexporter/go.mod +++ b/exporter/syslogexporter/go.mod @@ -4,11 +4,11 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 ) @@ -25,14 +25,14 @@ require ( github.com/knadh/koanf/providers/confmap v0.1.0 // indirect github.com/knadh/koanf/v2 v2.1.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect @@ -50,8 +50,8 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 diff --git a/exporter/syslogexporter/go.sum b/exporter/syslogexporter/go.sum index d87b65b963f5..667ba604c214 100644 --- a/exporter/syslogexporter/go.sum +++ b/exporter/syslogexporter/go.sum @@ -54,8 +54,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -68,30 +68,32 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/tencentcloudlogserviceexporter/go.mod b/exporter/tencentcloudlogserviceexporter/go.mod index 8882c6cd24eb..a3e08b5176ae 100644 --- a/exporter/tencentcloudlogserviceexporter/go.mod +++ b/exporter/tencentcloudlogserviceexporter/go.mod @@ -7,12 +7,12 @@ require ( github.com/pierrec/lz4 v2.6.1+incompatible github.com/stretchr/testify v1.9.0 github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.891 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -41,15 +41,15 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/exporter/tencentcloudlogserviceexporter/go.sum b/exporter/tencentcloudlogserviceexporter/go.sum index fe26755b0e53..7de6f18b4959 100644 --- a/exporter/tencentcloudlogserviceexporter/go.sum +++ b/exporter/tencentcloudlogserviceexporter/go.sum @@ -62,8 +62,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -79,30 +79,32 @@ github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.891 h1:PeAQ github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.891/go.mod h1:r5r4xbfxSaeR04b166HGsBa/R4U3SueirEUpXGuw+Q0= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/exporter/zipkinexporter/go.mod b/exporter/zipkinexporter/go.mod index febf53734ab1..5126344a7e8b 100644 --- a/exporter/zipkinexporter/go.mod +++ b/exporter/zipkinexporter/go.mod @@ -9,15 +9,15 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zipkinreceiver v0.97.0 github.com/openzipkin/zipkin-go v0.4.2 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -51,20 +51,20 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/exporter/zipkinexporter/go.sum b/exporter/zipkinexporter/go.sum index 3c6a645c5b60..abeb7efb5e8f 100644 --- a/exporter/zipkinexporter/go.sum +++ b/exporter/zipkinexporter/go.sum @@ -70,8 +70,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.49.0 h1:ToNTdK4zSnPVJmh698mGFkDor9wBI/iGaJy5dbH1EgI= github.com/prometheus/common v0.49.0/go.mod h1:Kxm+EULxRbUkjGU6WFsQqo3ORzB4tyKvlWFOE9mB2sE= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -86,44 +86,46 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/exporter/zipkinexporter/zipkin.go b/exporter/zipkinexporter/zipkin.go index 78a3b4994e39..1e5ee372f8c3 100644 --- a/exporter/zipkinexporter/zipkin.go +++ b/exporter/zipkinexporter/zipkin.go @@ -58,8 +58,8 @@ func createZipkinExporter(cfg *Config, settings component.TelemetrySettings) (*z } // start creates the http client -func (ze *zipkinExporter) start(_ context.Context, host component.Host) (err error) { - ze.client, err = ze.clientSettings.ToClient(host, ze.settings) +func (ze *zipkinExporter) start(ctx context.Context, host component.Host) (err error) { + ze.client, err = ze.clientSettings.ToClientContext(ctx, host, ze.settings) return } diff --git a/extension/ackextension/go.mod b/extension/ackextension/go.mod index 51f8f00f6e28..93079e5596ea 100644 --- a/extension/ackextension/go.mod +++ b/extension/ackextension/go.mod @@ -5,8 +5,8 @@ go 1.21 require ( github.com/hashicorp/golang-lru/v2 v2.0.7 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -23,9 +23,9 @@ require ( github.com/mitchellh/copystructure v1.2.0 // indirect github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect go.uber.org/zap v1.27.0 // indirect diff --git a/extension/ackextension/go.sum b/extension/ackextension/go.sum index 5d7e93c34046..86d1634e5e0a 100644 --- a/extension/ackextension/go.sum +++ b/extension/ackextension/go.sum @@ -40,8 +40,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -52,16 +52,16 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/asapauthextension/go.mod b/extension/asapauthextension/go.mod index 66d1a03fef15..e95a37e0877d 100644 --- a/extension/asapauthextension/go.mod +++ b/extension/asapauthextension/go.mod @@ -6,11 +6,11 @@ require ( bitbucket.org/atlassian/go-asap/v2 v2.8.0 github.com/SermoDigital/jose v0.9.2-0.20180104203859-803625baeddc github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/multierr v1.11.0 @@ -35,12 +35,12 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/pquerna/cachecontrol v0.1.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/vincent-petithory/dataurl v1.0.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/asapauthextension/go.sum b/extension/asapauthextension/go.sum index 077cd176dfa1..3ff8d8530eee 100644 --- a/extension/asapauthextension/go.sum +++ b/extension/asapauthextension/go.sum @@ -50,8 +50,8 @@ github.com/pquerna/cachecontrol v0.1.0 h1:yJMy84ti9h/+OEWa752kBTKv4XC30OtVVHYv/8 github.com/pquerna/cachecontrol v0.1.0/go.mod h1:NrUG3Z7Rdu85UNR3vm7SOsl1nFIeSiQnrHV5K9mBcUI= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -66,20 +66,20 @@ github.com/vincent-petithory/dataurl v1.0.0 h1:cXw+kPto8NLuJtlMsI152irrVw9fRDX8A github.com/vincent-petithory/dataurl v1.0.0/go.mod h1:FHafX5vmDzyP+1CQATJn7WFKc9CvnvxyvZy6I1MrG/U= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/awsproxy/go.mod b/extension/awsproxy/go.mod index 37782df057e0..6e7ab052dd85 100644 --- a/extension/awsproxy/go.mod +++ b/extension/awsproxy/go.mod @@ -6,11 +6,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/proxy v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -37,13 +37,13 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/awsproxy/go.sum b/extension/awsproxy/go.sum index d12010f7e374..6364d9bc4f72 100644 --- a/extension/awsproxy/go.sum +++ b/extension/awsproxy/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -65,24 +65,24 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/basicauthextension/go.mod b/extension/basicauthextension/go.mod index f322b93ec7bb..f8ba0452ddbd 100644 --- a/extension/basicauthextension/go.mod +++ b/extension/basicauthextension/go.mod @@ -5,12 +5,12 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 github.com/tg123/go-htpasswd v1.2.2 - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -35,11 +35,11 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/basicauthextension/go.sum b/extension/basicauthextension/go.sum index b35d936a52f9..ac2c0ac08935 100644 --- a/extension/basicauthextension/go.sum +++ b/extension/basicauthextension/go.sum @@ -49,8 +49,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -63,24 +63,24 @@ github.com/tg123/go-htpasswd v1.2.2 h1:tmNccDsQ+wYsoRfiONzIhDm5OkVHQzN3w4FOBAlN6 github.com/tg123/go-htpasswd v1.2.2/go.mod h1:FcIrK0J+6zptgVwK1JDlqyajW/1B4PtuJ/FLWl7nx8A= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.opentelemetry.io/collector/consumer v0.97.0 h1:S0BZQtJQxSHT156S8a5rLt3TeWYP8Rq+jn8QEyWQUYk= go.opentelemetry.io/collector/consumer v0.97.0/go.mod h1:1D06LURiZ/1KA2OnuKNeSn9bvFmJ5ZWe6L8kLu0osSY= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/bearertokenauthextension/go.mod b/extension/bearertokenauthextension/go.mod index 9d5861838de7..8df5b760c209 100644 --- a/extension/bearertokenauthextension/go.mod +++ b/extension/bearertokenauthextension/go.mod @@ -5,11 +5,11 @@ go 1.21 require ( github.com/fsnotify/fsnotify v1.7.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -34,11 +34,11 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/bearertokenauthextension/go.sum b/extension/bearertokenauthextension/go.sum index 3139a8d9259d..45c6072f3601 100644 --- a/extension/bearertokenauthextension/go.sum +++ b/extension/bearertokenauthextension/go.sum @@ -43,8 +43,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -55,20 +55,20 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/encoding/avrologencodingextension/go.mod b/extension/encoding/avrologencodingextension/go.mod index 8142d7066b7a..338209e2c9b3 100644 --- a/extension/encoding/avrologencodingextension/go.mod +++ b/extension/encoding/avrologencodingextension/go.mod @@ -6,10 +6,10 @@ require ( github.com/linkedin/goavro/v2 v2.9.8 github.com/open-telemetry/opentelemetry-collector-contrib/extension/encoding v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -36,10 +36,10 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/encoding/avrologencodingextension/go.sum b/extension/encoding/avrologencodingextension/go.sum index bdf049bc587c..9ec24c4d80fe 100644 --- a/extension/encoding/avrologencodingextension/go.sum +++ b/extension/encoding/avrologencodingextension/go.sum @@ -56,8 +56,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -70,16 +70,16 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/encoding/go.mod b/extension/encoding/go.mod index 6f116f2b3a3b..9c0783d4ed75 100644 --- a/extension/encoding/go.mod +++ b/extension/encoding/go.mod @@ -3,8 +3,8 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/extension/encod go 1.21 require ( - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 ) require ( @@ -21,9 +21,9 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect diff --git a/extension/encoding/go.sum b/extension/encoding/go.sum index 48e4007172d9..3cbe6b672d59 100644 --- a/extension/encoding/go.sum +++ b/extension/encoding/go.sum @@ -45,8 +45,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -57,16 +57,16 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/encoding/jaegerencodingextension/go.mod b/extension/encoding/jaegerencodingextension/go.mod index 9e2bf6379e71..e14abb68c1b2 100644 --- a/extension/encoding/jaegerencodingextension/go.mod +++ b/extension/encoding/jaegerencodingextension/go.mod @@ -8,10 +8,10 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/extension/encoding v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -38,11 +38,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/encoding/jaegerencodingextension/go.sum b/extension/encoding/jaegerencodingextension/go.sum index 6f3d3265c6fb..ea00ba2060fb 100644 --- a/extension/encoding/jaegerencodingextension/go.sum +++ b/extension/encoding/jaegerencodingextension/go.sum @@ -56,8 +56,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.49.0 h1:ToNTdK4zSnPVJmh698mGFkDor9wBI/iGaJy5dbH1EgI= github.com/prometheus/common v0.49.0/go.mod h1:Kxm+EULxRbUkjGU6WFsQqo3ORzB4tyKvlWFOE9mB2sE= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -70,18 +70,18 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/encoding/jsonlogencodingextension/go.mod b/extension/encoding/jsonlogencodingextension/go.mod index 5a1274424ffd..89b852a9a605 100644 --- a/extension/encoding/jsonlogencodingextension/go.mod +++ b/extension/encoding/jsonlogencodingextension/go.mod @@ -6,10 +6,10 @@ require ( github.com/json-iterator/go v1.1.12 github.com/open-telemetry/opentelemetry-collector-contrib/extension/encoding v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -34,10 +34,10 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/encoding/jsonlogencodingextension/go.sum b/extension/encoding/jsonlogencodingextension/go.sum index 5d278bf56ac0..e4b898dd391d 100644 --- a/extension/encoding/jsonlogencodingextension/go.sum +++ b/extension/encoding/jsonlogencodingextension/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -66,16 +66,16 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/encoding/otlpencodingextension/go.mod b/extension/encoding/otlpencodingextension/go.mod index b15d899d6805..943c2b1b903c 100644 --- a/extension/encoding/otlpencodingextension/go.mod +++ b/extension/encoding/otlpencodingextension/go.mod @@ -5,10 +5,10 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/extension/encoding v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -34,10 +34,10 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/encoding/otlpencodingextension/go.sum b/extension/encoding/otlpencodingextension/go.sum index 5d278bf56ac0..e4b898dd391d 100644 --- a/extension/encoding/otlpencodingextension/go.sum +++ b/extension/encoding/otlpencodingextension/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -66,16 +66,16 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/encoding/textencodingextension/go.mod b/extension/encoding/textencodingextension/go.mod index 33e10e162b06..4a2513eacbcc 100644 --- a/extension/encoding/textencodingextension/go.mod +++ b/extension/encoding/textencodingextension/go.mod @@ -6,10 +6,10 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/extension/encoding v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -35,10 +35,10 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/encoding/textencodingextension/go.sum b/extension/encoding/textencodingextension/go.sum index 2c6638efc237..06444e28a1e0 100644 --- a/extension/encoding/textencodingextension/go.sum +++ b/extension/encoding/textencodingextension/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -66,16 +66,16 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/encoding/zipkinencodingextension/go.mod b/extension/encoding/zipkinencodingextension/go.mod index 71c2eb40825a..59a32b495dc1 100644 --- a/extension/encoding/zipkinencodingextension/go.mod +++ b/extension/encoding/zipkinencodingextension/go.mod @@ -6,10 +6,10 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/extension/encoding v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -39,11 +39,11 @@ require ( github.com/openzipkin/zipkin-go v0.4.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/encoding/zipkinencodingextension/go.sum b/extension/encoding/zipkinencodingextension/go.sum index 67483f96acff..760b3afcab70 100644 --- a/extension/encoding/zipkinencodingextension/go.sum +++ b/extension/encoding/zipkinencodingextension/go.sum @@ -58,8 +58,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.49.0 h1:ToNTdK4zSnPVJmh698mGFkDor9wBI/iGaJy5dbH1EgI= github.com/prometheus/common v0.49.0/go.mod h1:Kxm+EULxRbUkjGU6WFsQqo3ORzB4tyKvlWFOE9mB2sE= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -72,18 +72,18 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/googleclientauthextension/go.mod b/extension/googleclientauthextension/go.mod index 0f5619d2715a..2e74c511ffc7 100644 --- a/extension/googleclientauthextension/go.mod +++ b/extension/googleclientauthextension/go.mod @@ -6,10 +6,10 @@ exclude github.com/knadh/koanf v1.5.0 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -32,11 +32,11 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/googleclientauthextension/go.sum b/extension/googleclientauthextension/go.sum index c70e19e0d6bd..fcb51ce43f31 100644 --- a/extension/googleclientauthextension/go.sum +++ b/extension/googleclientauthextension/go.sum @@ -41,8 +41,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -53,18 +53,18 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/headerssetterextension/go.mod b/extension/headerssetterextension/go.mod index 9af39a3698b5..277e9ca8892d 100644 --- a/extension/headerssetterextension/go.mod +++ b/extension/headerssetterextension/go.mod @@ -4,11 +4,11 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -33,11 +33,11 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/headerssetterextension/go.sum b/extension/headerssetterextension/go.sum index 59414b9032b2..7abbae3f3f53 100644 --- a/extension/headerssetterextension/go.sum +++ b/extension/headerssetterextension/go.sum @@ -47,8 +47,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -59,22 +59,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.opentelemetry.io/collector/consumer v0.97.0 h1:S0BZQtJQxSHT156S8a5rLt3TeWYP8Rq+jn8QEyWQUYk= go.opentelemetry.io/collector/consumer v0.97.0/go.mod h1:1D06LURiZ/1KA2OnuKNeSn9bvFmJ5ZWe6L8kLu0osSY= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/healthcheckextension/go.mod b/extension/healthcheckextension/go.mod index 74db6443bbca..795c486fe30a 100644 --- a/extension/healthcheckextension/go.mod +++ b/extension/healthcheckextension/go.mod @@ -6,11 +6,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 go.opencensus.io v0.24.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -40,20 +40,20 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rogpeppe/go-internal v1.11.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/extension/healthcheckextension/go.sum b/extension/healthcheckextension/go.sum index 4e16be72fd4d..bad29c21217e 100644 --- a/extension/healthcheckextension/go.sum +++ b/extension/healthcheckextension/go.sum @@ -91,8 +91,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -113,36 +113,36 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.opentelemetry.io/collector/consumer v0.97.0 h1:S0BZQtJQxSHT156S8a5rLt3TeWYP8Rq+jn8QEyWQUYk= go.opentelemetry.io/collector/consumer v0.97.0/go.mod h1:1D06LURiZ/1KA2OnuKNeSn9bvFmJ5ZWe6L8kLu0osSY= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/extension/healthcheckextension/healthcheckextension.go b/extension/healthcheckextension/healthcheckextension.go index 55307b92249c..abebd3b485b9 100644 --- a/extension/healthcheckextension/healthcheckextension.go +++ b/extension/healthcheckextension/healthcheckextension.go @@ -30,15 +30,15 @@ type healthCheckExtension struct { var _ extension.PipelineWatcher = (*healthCheckExtension)(nil) -func (hc *healthCheckExtension) Start(_ context.Context, host component.Host) error { +func (hc *healthCheckExtension) Start(ctx context.Context, host component.Host) error { hc.logger.Info("Starting health_check extension", zap.Any("config", hc.config)) - ln, err := hc.config.ToListener() + ln, err := hc.config.ToListenerContext(ctx) if err != nil { return fmt.Errorf("failed to bind to address %s: %w", hc.config.Endpoint, err) } - hc.server, err = hc.config.ToServer(host, hc.settings, nil) + hc.server, err = hc.config.ToServerContext(ctx, host, hc.settings, nil) if err != nil { return err } diff --git a/extension/httpforwarderextension/extension.go b/extension/httpforwarderextension/extension.go index 82250ba56487..806e38325cfc 100644 --- a/extension/httpforwarderextension/extension.go +++ b/extension/httpforwarderextension/extension.go @@ -26,13 +26,13 @@ type httpForwarder struct { var _ extension.Extension = (*httpForwarder)(nil) -func (h *httpForwarder) Start(_ context.Context, host component.Host) error { - listener, err := h.config.Ingress.ToListener() +func (h *httpForwarder) Start(ctx context.Context, host component.Host) error { + listener, err := h.config.Ingress.ToListenerContext(ctx) if err != nil { return fmt.Errorf("failed to bind to address %s: %w", h.config.Ingress.Endpoint, err) } - httpClient, err := h.config.Egress.ToClient(host, h.settings) + httpClient, err := h.config.Egress.ToClientContext(ctx, host, h.settings) if err != nil { return fmt.Errorf("failed to create HTTP Client: %w", err) } @@ -41,7 +41,7 @@ func (h *httpForwarder) Start(_ context.Context, host component.Host) error { handler := http.NewServeMux() handler.HandleFunc("/", h.forwardRequest) - h.server, err = h.config.Ingress.ToServer(host, h.settings, handler) + h.server, err = h.config.Ingress.ToServerContext(ctx, host, h.settings, handler) if err != nil { return fmt.Errorf("failed to create HTTP Client: %w", err) } diff --git a/extension/httpforwarderextension/go.mod b/extension/httpforwarderextension/go.mod index f67275d801da..e9f154f3a1b2 100644 --- a/extension/httpforwarderextension/go.mod +++ b/extension/httpforwarderextension/go.mod @@ -5,12 +5,12 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -39,18 +39,18 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/extension/httpforwarderextension/go.sum b/extension/httpforwarderextension/go.sum index c2a7d6f9b9c5..245a4865439f 100644 --- a/extension/httpforwarderextension/go.sum +++ b/extension/httpforwarderextension/go.sum @@ -57,8 +57,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -71,36 +71,36 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.opentelemetry.io/collector/consumer v0.97.0 h1:S0BZQtJQxSHT156S8a5rLt3TeWYP8Rq+jn8QEyWQUYk= go.opentelemetry.io/collector/consumer v0.97.0/go.mod h1:1D06LURiZ/1KA2OnuKNeSn9bvFmJ5ZWe6L8kLu0osSY= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/extension/jaegerremotesampling/go.mod b/extension/jaegerremotesampling/go.mod index c8cf5cf0744b..8c1fb4ba263e 100644 --- a/extension/jaegerremotesampling/go.mod +++ b/extension/jaegerremotesampling/go.mod @@ -8,15 +8,15 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 github.com/tilinna/clock v1.1.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -53,7 +53,7 @@ require ( github.com/pelletier/go-toml/v2 v2.1.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -65,13 +65,13 @@ require ( github.com/spf13/pflag v1.0.5 // indirect github.com/spf13/viper v1.18.2 // indirect github.com/subosito/gotenv v1.6.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/extension/jaegerremotesampling/go.sum b/extension/jaegerremotesampling/go.sum index 736e7b3961e7..34d3f9eea96c 100644 --- a/extension/jaegerremotesampling/go.sum +++ b/extension/jaegerremotesampling/go.sum @@ -84,8 +84,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.49.0 h1:ToNTdK4zSnPVJmh698mGFkDor9wBI/iGaJy5dbH1EgI= github.com/prometheus/common v0.49.0/go.mod h1:Kxm+EULxRbUkjGU6WFsQqo3ORzB4tyKvlWFOE9mB2sE= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -124,40 +124,42 @@ github.com/tilinna/clock v1.1.0 h1:6IQQQCo6KoBxVudv6gwtY8o4eDfhHo8ojA5dP0MfhSs= github.com/tilinna/clock v1.1.0/go.mod h1:ZsP7BcY7sEEz7ktc0IVy8Us6boDrK8VradlKRUGfOao= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.opentelemetry.io/collector/consumer v0.97.0 h1:S0BZQtJQxSHT156S8a5rLt3TeWYP8Rq+jn8QEyWQUYk= go.opentelemetry.io/collector/consumer v0.97.0/go.mod h1:1D06LURiZ/1KA2OnuKNeSn9bvFmJ5ZWe6L8kLu0osSY= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/extension/jaegerremotesampling/internal/http.go b/extension/jaegerremotesampling/internal/http.go index b376723c3fe0..5da9ac828248 100644 --- a/extension/jaegerremotesampling/internal/http.go +++ b/extension/jaegerremotesampling/internal/http.go @@ -54,15 +54,15 @@ func NewHTTP(telemetry component.TelemetrySettings, settings confighttp.ServerCo return srv, nil } -func (h *SamplingHTTPServer) Start(_ context.Context, host component.Host) error { +func (h *SamplingHTTPServer) Start(ctx context.Context, host component.Host) error { var err error - h.srv, err = h.settings.ToServer(host, h.telemetry, h.mux) + h.srv, err = h.settings.ToServerContext(ctx, host, h.telemetry, h.mux) if err != nil { return err } var hln net.Listener - hln, err = h.settings.ToListener() + hln, err = h.settings.ToListenerContext(ctx) if err != nil { return err } diff --git a/extension/oauth2clientauthextension/extension_test.go b/extension/oauth2clientauthextension/extension_test.go index a271c38f60ce..a24d869705e9 100644 --- a/extension/oauth2clientauthextension/extension_test.go +++ b/extension/oauth2clientauthextension/extension_test.go @@ -323,7 +323,7 @@ func TestFailContactingOAuth(t *testing.T) { }, } - client, _ := setting.ToClient(componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings()) + client, _ := setting.ToClientContext(context.Background(), componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings()) req, err := http.NewRequest("POST", setting.Endpoint, nil) assert.NoError(t, err) _, err = client.Do(req) diff --git a/extension/oauth2clientauthextension/go.mod b/extension/oauth2clientauthextension/go.mod index a79a697abf70..e9feb01faa62 100644 --- a/extension/oauth2clientauthextension/go.mod +++ b/extension/oauth2clientauthextension/go.mod @@ -4,13 +4,13 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -44,17 +44,17 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/extension/oauth2clientauthextension/go.sum b/extension/oauth2clientauthextension/go.sum index 553f56129cac..a5ced8a19c0b 100644 --- a/extension/oauth2clientauthextension/go.sum +++ b/extension/oauth2clientauthextension/go.sum @@ -62,8 +62,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -77,36 +77,36 @@ github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8 github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.opentelemetry.io/collector/consumer v0.97.0 h1:S0BZQtJQxSHT156S8a5rLt3TeWYP8Rq+jn8QEyWQUYk= go.opentelemetry.io/collector/consumer v0.97.0/go.mod h1:1D06LURiZ/1KA2OnuKNeSn9bvFmJ5ZWe6L8kLu0osSY= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/extension/observer/dockerobserver/go.mod b/extension/observer/dockerobserver/go.mod index b93d00e78519..66598a89e0dc 100644 --- a/extension/observer/dockerobserver/go.mod +++ b/extension/observer/dockerobserver/go.mod @@ -10,9 +10,9 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/docker v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -60,7 +60,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.23.12 // indirect @@ -69,8 +69,8 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.3 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/extension/observer/dockerobserver/go.sum b/extension/observer/dockerobserver/go.sum index 0c094a73cb9f..b0638a7c38dd 100644 --- a/extension/observer/dockerobserver/go.sum +++ b/extension/observer/dockerobserver/go.sum @@ -104,8 +104,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -141,16 +141,16 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.3 h1:E1ctvB7uKFMOJw3fdOW32DwGE9I7t++CRUEMKvFoFiw= github.com/yusufpapurcu/wmi v1.2.3/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/extension/observer/ecsobserver/go.mod b/extension/observer/ecsobserver/go.mod index 565271d7f6c3..8e81f0cf1f1a 100644 --- a/extension/observer/ecsobserver/go.mod +++ b/extension/observer/ecsobserver/go.mod @@ -6,9 +6,9 @@ require ( github.com/aws/aws-sdk-go v1.51.17 github.com/hashicorp/golang-lru v1.0.2 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -35,11 +35,11 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/observer/ecsobserver/go.sum b/extension/observer/ecsobserver/go.sum index b358319103c7..e06d1da7e3d5 100644 --- a/extension/observer/ecsobserver/go.sum +++ b/extension/observer/ecsobserver/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -63,16 +63,16 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/observer/ecstaskobserver/go.mod b/extension/observer/ecstaskobserver/go.mod index 2e08831c3807..7cbcab5480e1 100644 --- a/extension/observer/ecstaskobserver/go.mod +++ b/extension/observer/ecstaskobserver/go.mod @@ -7,10 +7,10 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/ecsutil v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -39,20 +39,20 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/extension/observer/ecstaskobserver/go.sum b/extension/observer/ecstaskobserver/go.sum index 1273bab2731b..a8dd33adf76f 100644 --- a/extension/observer/ecstaskobserver/go.sum +++ b/extension/observer/ecstaskobserver/go.sum @@ -57,8 +57,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -73,36 +73,36 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.opentelemetry.io/collector/consumer v0.97.0 h1:S0BZQtJQxSHT156S8a5rLt3TeWYP8Rq+jn8QEyWQUYk= go.opentelemetry.io/collector/consumer v0.97.0/go.mod h1:1D06LURiZ/1KA2OnuKNeSn9bvFmJ5ZWe6L8kLu0osSY= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/extension/observer/hostobserver/go.mod b/extension/observer/hostobserver/go.mod index 4c3e70c0b66d..f94c80f683ae 100644 --- a/extension/observer/hostobserver/go.mod +++ b/extension/observer/hostobserver/go.mod @@ -6,9 +6,9 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/extension/observer v0.97.0 github.com/shirou/gopsutil/v3 v3.24.3 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -35,15 +35,15 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shoenig/go-m1cpu v0.1.6 // indirect github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/observer/hostobserver/go.sum b/extension/observer/hostobserver/go.sum index 4d18fa60953f..df33a81ef381 100644 --- a/extension/observer/hostobserver/go.sum +++ b/extension/observer/hostobserver/go.sum @@ -50,8 +50,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -82,16 +82,16 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/observer/k8sobserver/go.mod b/extension/observer/k8sobserver/go.mod index cb3c5975f33c..d7e0eee6b6ac 100644 --- a/extension/observer/k8sobserver/go.mod +++ b/extension/observer/k8sobserver/go.mod @@ -6,9 +6,9 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/extension/observer v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/k8sconfig v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -50,12 +50,12 @@ require ( github.com/openshift/client-go v0.0.0-20210521082421-73d9475a9142 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/spf13/pflag v1.0.5 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/observer/k8sobserver/go.sum b/extension/observer/k8sobserver/go.sum index 14ab8c4de43f..eef2864a0e1a 100644 --- a/extension/observer/k8sobserver/go.sum +++ b/extension/observer/k8sobserver/go.sum @@ -230,8 +230,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -264,16 +264,16 @@ go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/oidcauthextension/go.mod b/extension/oidcauthextension/go.mod index 4a2155724740..5e833c478d5a 100644 --- a/extension/oidcauthextension/go.mod +++ b/extension/oidcauthextension/go.mod @@ -5,11 +5,11 @@ go 1.21 require ( github.com/coreos/go-oidc/v3 v3.10.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -33,11 +33,11 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/oidcauthextension/go.sum b/extension/oidcauthextension/go.sum index 3fbc2c5194e2..75ee647b262e 100644 --- a/extension/oidcauthextension/go.sum +++ b/extension/oidcauthextension/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -65,22 +65,22 @@ github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8 github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.opentelemetry.io/collector/consumer v0.97.0 h1:S0BZQtJQxSHT156S8a5rLt3TeWYP8Rq+jn8QEyWQUYk= go.opentelemetry.io/collector/consumer v0.97.0/go.mod h1:1D06LURiZ/1KA2OnuKNeSn9bvFmJ5ZWe6L8kLu0osSY= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/opampextension/go.mod b/extension/opampextension/go.mod index 4e10d887cccc..52dfc52b89fd 100644 --- a/extension/opampextension/go.mod +++ b/extension/opampextension/go.mod @@ -7,13 +7,13 @@ require ( github.com/oklog/ulid/v2 v2.1.0 github.com/open-telemetry/opamp-go v0.14.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -40,11 +40,11 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rogpeppe/go-internal v1.11.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/opampextension/go.sum b/extension/opampextension/go.sum index 4e5a3b48e8b8..da46a1b5c162 100644 --- a/extension/opampextension/go.sum +++ b/extension/opampextension/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,22 +64,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/pprofextension/go.mod b/extension/pprofextension/go.mod index 0d6c18a0ff91..16cbf78a548c 100644 --- a/extension/pprofextension/go.mod +++ b/extension/pprofextension/go.mod @@ -5,10 +5,10 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -33,12 +33,12 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/pprofextension/go.sum b/extension/pprofextension/go.sum index 83856d30e0f7..22bf9f6401c4 100644 --- a/extension/pprofextension/go.sum +++ b/extension/pprofextension/go.sum @@ -43,8 +43,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -55,20 +55,20 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/remotetapextension/extension.go b/extension/remotetapextension/extension.go index b1722b7f249a..52892c77d8ad 100644 --- a/extension/remotetapextension/extension.go +++ b/extension/remotetapextension/extension.go @@ -23,7 +23,7 @@ type remoteObserverExtension struct { server *http.Server } -func (s *remoteObserverExtension) Start(_ context.Context, host component.Host) error { +func (s *remoteObserverExtension) Start(ctx context.Context, host component.Host) error { htmlContent, err := fs.Sub(httpFS, "html") if err != nil { @@ -31,7 +31,7 @@ func (s *remoteObserverExtension) Start(_ context.Context, host component.Host) } mux := http.NewServeMux() mux.Handle("/", http.FileServer(http.FS(htmlContent))) - s.server, err = s.config.ServerConfig.ToServer(host, s.settings.TelemetrySettings, mux) + s.server, err = s.config.ServerConfig.ToServerContext(ctx, host, s.settings.TelemetrySettings, mux) if err != nil { return err } diff --git a/extension/remotetapextension/go.mod b/extension/remotetapextension/go.mod index ad8fe5d905d5..c892c1e9f042 100644 --- a/extension/remotetapextension/go.mod +++ b/extension/remotetapextension/go.mod @@ -4,10 +4,10 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -35,20 +35,20 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/extension/remotetapextension/go.sum b/extension/remotetapextension/go.sum index c2a7d6f9b9c5..245a4865439f 100644 --- a/extension/remotetapextension/go.sum +++ b/extension/remotetapextension/go.sum @@ -57,8 +57,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -71,36 +71,36 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.opentelemetry.io/collector/consumer v0.97.0 h1:S0BZQtJQxSHT156S8a5rLt3TeWYP8Rq+jn8QEyWQUYk= go.opentelemetry.io/collector/consumer v0.97.0/go.mod h1:1D06LURiZ/1KA2OnuKNeSn9bvFmJ5ZWe6L8kLu0osSY= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/extension/sigv4authextension/go.mod b/extension/sigv4authextension/go.mod index 98bfb16809cd..51d1a710d6a0 100644 --- a/extension/sigv4authextension/go.mod +++ b/extension/sigv4authextension/go.mod @@ -8,10 +8,10 @@ require ( github.com/aws/aws-sdk-go-v2/credentials v1.17.11 github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -44,11 +44,11 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/sigv4authextension/go.sum b/extension/sigv4authextension/go.sum index 408410c8852c..b6287aaf87b3 100644 --- a/extension/sigv4authextension/go.sum +++ b/extension/sigv4authextension/go.sum @@ -67,8 +67,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -79,18 +79,18 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/solarwindsapmsettingsextension/go.mod b/extension/solarwindsapmsettingsextension/go.mod index 76bb863db447..1d584d7e13d3 100644 --- a/extension/solarwindsapmsettingsextension/go.mod +++ b/extension/solarwindsapmsettingsextension/go.mod @@ -4,9 +4,9 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -29,11 +29,11 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/solarwindsapmsettingsextension/go.sum b/extension/solarwindsapmsettingsextension/go.sum index d2ed7f4850a2..b52b90282c25 100644 --- a/extension/solarwindsapmsettingsextension/go.sum +++ b/extension/solarwindsapmsettingsextension/go.sum @@ -41,8 +41,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -53,16 +53,16 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/storage/dbstorage/go.mod b/extension/storage/dbstorage/go.mod index 510222a144dc..6aecd6497697 100644 --- a/extension/storage/dbstorage/go.mod +++ b/extension/storage/dbstorage/go.mod @@ -6,9 +6,9 @@ require ( github.com/jackc/pgx/v4 v4.18.3 github.com/mattn/go-sqlite3 v1.14.22 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -40,11 +40,11 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/storage/dbstorage/go.sum b/extension/storage/dbstorage/go.sum index 0766d21a18e6..2b531002c6f3 100644 --- a/extension/storage/dbstorage/go.sum +++ b/extension/storage/dbstorage/go.sum @@ -124,8 +124,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -155,16 +155,16 @@ github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8 github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/storage/filestorage/go.mod b/extension/storage/filestorage/go.mod index 1d9a18a82710..9b71db4f2462 100644 --- a/extension/storage/filestorage/go.mod +++ b/extension/storage/filestorage/go.mod @@ -5,10 +5,10 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 go.etcd.io/bbolt v1.3.9 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -34,11 +34,11 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/extension/storage/filestorage/go.sum b/extension/storage/filestorage/go.sum index 4930ee31ddcd..2b1aab426815 100644 --- a/extension/storage/filestorage/go.sum +++ b/extension/storage/filestorage/go.sum @@ -43,8 +43,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -57,18 +57,18 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.etcd.io/bbolt v1.3.9 h1:8x7aARPEXiXbHmtUwAIv7eV2fQFHrLLavdiJ3uzJXoI= go.etcd.io/bbolt v1.3.9/go.mod h1:zaO32+Ti0PK1ivdPtgMESzuzL2VPoIG1PCQNvOdo/dE= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/storage/go.mod b/extension/storage/go.mod index 636977533b37..53db292d9117 100644 --- a/extension/storage/go.mod +++ b/extension/storage/go.mod @@ -4,8 +4,8 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 ) @@ -25,12 +25,12 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect diff --git a/extension/storage/go.sum b/extension/storage/go.sum index ff90973c460d..8df889e8eaeb 100644 --- a/extension/storage/go.sum +++ b/extension/storage/go.sum @@ -39,8 +39,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -51,16 +51,16 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/extension/sumologicextension/extension.go b/extension/sumologicextension/extension.go index 99cb1753274f..353a47f8a59a 100644 --- a/extension/sumologicextension/extension.go +++ b/extension/sumologicextension/extension.go @@ -187,7 +187,7 @@ func (se *SumologicExtension) Start(ctx context.Context, host component.Host) er return err } - if err = se.injectCredentials(colCreds); err != nil { + if err = se.injectCredentials(ctx, colCreds); err != nil { return err } @@ -229,7 +229,7 @@ func (se *SumologicExtension) validateCredentials( zap.String(collectorIDField, colCreds.Credentials.CollectorID), ) - if err := se.injectCredentials(colCreds); err != nil { + if err := se.injectCredentials(ctx, colCreds); err != nil { return err } @@ -267,14 +267,14 @@ func (se *SumologicExtension) validateCredentials( // - into registration info that's stored in the extension and can be used by roundTripper // - into http client and its transport so that each request is using collector // credentials as authentication keys -func (se *SumologicExtension) injectCredentials(colCreds credentials.CollectorCredentials) error { +func (se *SumologicExtension) injectCredentials(ctx context.Context, colCreds credentials.CollectorCredentials) error { se.credsNotifyLock.Lock() defer se.credsNotifyLock.Unlock() // Set the registration info so that it can be used in RoundTripper. se.registrationInfo = colCreds.Credentials - httpClient, err := se.getHTTPClient(se.conf.ClientConfig, colCreds.Credentials) + httpClient, err := se.getHTTPClient(ctx, se.conf.ClientConfig, colCreds.Credentials) if err != nil { return err } @@ -289,10 +289,12 @@ func (se *SumologicExtension) injectCredentials(colCreds credentials.CollectorCr } func (se *SumologicExtension) getHTTPClient( + ctx context.Context, httpClientSettings confighttp.ClientConfig, _ api.OpenRegisterResponsePayload, ) (*http.Client, error) { - httpClient, err := httpClientSettings.ToClient( + httpClient, err := httpClientSettings.ToClientContext( + ctx, se.host, component.TelemetrySettings{}, ) @@ -591,7 +593,7 @@ func (se *SumologicExtension) heartbeatLoop() { } // Inject newly received credentials into extension's configuration. - if err = se.injectCredentials(colCreds); err != nil { + if err = se.injectCredentials(ctx, colCreds); err != nil { se.logger.Error("Heartbeat error, cannot inject new collector credentials", zap.Error(err)) continue } diff --git a/extension/sumologicextension/extension_test.go b/extension/sumologicextension/extension_test.go index f5435323affa..4db2e5c106e8 100644 --- a/extension/sumologicextension/extension_test.go +++ b/extension/sumologicextension/extension_test.go @@ -1566,7 +1566,7 @@ func TestUpdateMetadataRequestPayload(t *testing.T) { se, err := newSumologicExtension(cfg, zap.NewNop(), component.NewID(metadata.Type), "1.0.0") require.NoError(t, err) - httpClient, err := se.getHTTPClient(se.conf.ClientConfig, api.OpenRegisterResponsePayload{}) + httpClient, err := se.getHTTPClient(context.Background(), se.conf.ClientConfig, api.OpenRegisterResponsePayload{}) require.NoError(t, err) err = se.updateMetadataWithHTTPClient(context.TODO(), httpClient) diff --git a/extension/sumologicextension/go.mod b/extension/sumologicextension/go.mod index e718bb030064..04082eba4fa8 100644 --- a/extension/sumologicextension/go.mod +++ b/extension/sumologicextension/go.mod @@ -8,12 +8,12 @@ require ( github.com/mitchellh/go-ps v1.0.0 github.com/shirou/gopsutil/v3 v3.24.3 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -44,7 +44,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -52,14 +52,14 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/extension/sumologicextension/go.sum b/extension/sumologicextension/go.sum index 305871ce2769..9f434996b0ab 100644 --- a/extension/sumologicextension/go.sum +++ b/extension/sumologicextension/go.sum @@ -70,8 +70,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -103,36 +103,36 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.opentelemetry.io/collector/consumer v0.97.0 h1:S0BZQtJQxSHT156S8a5rLt3TeWYP8Rq+jn8QEyWQUYk= go.opentelemetry.io/collector/consumer v0.97.0/go.mod h1:1D06LURiZ/1KA2OnuKNeSn9bvFmJ5ZWe6L8kLu0osSY= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/go.mod b/go.mod index c10b9ef3c851..15f284533129 100644 --- a/go.mod +++ b/go.mod @@ -167,22 +167,22 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/receiver/windowsperfcountersreceiver v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zipkinreceiver v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zookeeperreceiver v0.97.0 - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/loggingexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/loggingexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 ) require ( @@ -626,31 +626,31 @@ require ( go.mongodb.org/atlas v0.36.0 // indirect go.mongodb.org/mongo-driver v1.14.0 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect diff --git a/go.sum b/go.sum index dc47dc45dd39..f75039cc8af5 100644 --- a/go.sum +++ b/go.sum @@ -1651,88 +1651,90 @@ go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240404121116-4f1a8936d26b h1:qKPjqgmofcwOEkMWIMxJ9dkEneqj0Qi4zRYxhMNCYnM= -go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:fl49zt1fMqhfQM24yfFNE02Fz6z7N6ygjuATuV6SRDw= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:peaYUYJQuzSDBH0bbjDaFxep/qut+VY8eSa28OPOjsE= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:bD14O9UdbCLRMllSqObkA1klraPHe0GWmw4QUBxNH2g= -go.opentelemetry.io/collector/exporter/loggingexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:EdIC//H381QGQ4BEsngiG5lEHRVq1faaaO3Dwaqvrm0= -go.opentelemetry.io/collector/exporter/loggingexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8tmAbXYfbdTPPBKF+ivIyFxCIWP1V5u2+rEeBls8Rgk= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:jv6wp8Muswbz/iS62KGDNUZx2GSBsnL9zL2RAQDQTxw= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:d0SAS68CUbHU+GKOrzMlGMWCsRfn8a9Rh8AUOHxC+xk= -go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:rkbtSTjRgfd9eR/UdSMJJr4QtMoRLGqD3AvLffcqIZg= -go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:radMtwB70wa+R+EeMpzqa3T7UoEw/4NbnjjTB4BJn/8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b h1:J47Jgx/R5B8BcwaWcrO2lmo/4h8QG29YTPvLBSeZ2dU= -go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lSa1oK8+RQHN+Jjz852mL0Ivd/EWLh5IRy/OD91YnDo= -go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b h1:6tiaV2CzIB2mw5koYn24FKENKnUDhVwry+gtQUvw47I= -go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:N3BDFI4ghKltAUTWZ+Xovk6dw64MAmRWXlWx/77XlSo= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:Ka/rte5zyQ0Sm7esxDRmhmO4JSHYIVfj8VbEVWJKRJ0= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JVGUkc1eFmFDBGqr94dl+dqF2FFPe7LeBeWGvJiFWmM= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240409140257-792fac1b62d4 h1:znQ5NkpXjctFf64v/5n8km4ao18XKuum+Q/O32niVJk= +go.opentelemetry.io/collector/connector/forwardconnector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:lwYy9g0gsVkO2VqqXcRg2fhT/2674GGY+NqpSeRR9S8= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:xpgItQmezCZaGj/7+YlfcPuxxd5FM1Kho5b5VIUxXAY= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:49WJwX7BbMsPUQwIwax6dAo4k4wqGSrUDmR2FSIn6jI= +go.opentelemetry.io/collector/exporter/loggingexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:wwT2P7nQIDuGy3sjW20afbHNEFH718qfw3kvzwitSHo= +go.opentelemetry.io/collector/exporter/loggingexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WcBe4Dkj8iEJbCWuwgIDTBAsyt4m/6de9/jQYj4ozeo= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:EZ1WfK0tKytC56o30ZhSj+1IROllj+XMGe0pqm5KGOM= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:s3L5toZ5PsceEgmDiZvFEQQwyos8VxdpZ1e7fokrwAE= +go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:TnTlVrAXmjQfV8JRqMZyXdIWuiW6Kj+5HjlQz8rlIW8= +go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4VUw2sqVrGPa8moPsnYsIx0TRlRrrFVJJMXWMlxT4qM= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4 h1:AviXbdVcPOg7s03b+ghJNoNehjkXB2dGIR8bp6hdZoA= +go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:LVCgfLNNJ3pYTbuWtQ0t+ojGz78eRM6m9iIKlJOGIOU= +go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4 h1:hMqlVhoK86vxIbtJZhOJ4pDDFcsz11wudLAx9jwwsg0= +go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:/hIvDIGbSmk4BDjkSNi/8S7Ggk3xoy0SiZURLTYiZQU= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:5gJF1aDG3CPKgnUUV8244ebRWn7zwNhacGAXoArXETI= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WbMSjJjS13vslBYjSck1/Zt7TcD2sLt0BldNm7khVuQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/internal/aws/containerinsight/go.mod b/internal/aws/containerinsight/go.mod index ae4d8997f3f5..b6a319866404 100644 --- a/internal/aws/containerinsight/go.mod +++ b/internal/aws/containerinsight/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 ) diff --git a/internal/aws/containerinsight/go.sum b/internal/aws/containerinsight/go.sum index 8988ad9e4161..f2c9248fee7d 100644 --- a/internal/aws/containerinsight/go.sum +++ b/internal/aws/containerinsight/go.sum @@ -33,8 +33,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/internal/aws/cwlogs/go.mod b/internal/aws/cwlogs/go.mod index 3c41b3b74d8d..2a8dafec38fd 100644 --- a/internal/aws/cwlogs/go.mod +++ b/internal/aws/cwlogs/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/aws/aws-sdk-go v1.51.17 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 ) @@ -23,9 +23,9 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect diff --git a/internal/aws/cwlogs/go.sum b/internal/aws/cwlogs/go.sum index 0f1cd1b141a1..2652a683493b 100644 --- a/internal/aws/cwlogs/go.sum +++ b/internal/aws/cwlogs/go.sum @@ -48,14 +48,14 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/metric v1.24.0 h1:6EhoGWWK28x1fbpA4tYTOWBkPefTDQnb8WSGXlc88kI= diff --git a/internal/aws/ecsutil/client.go b/internal/aws/ecsutil/client.go index 116d2b0c70f9..e5585375608e 100644 --- a/internal/aws/ecsutil/client.go +++ b/internal/aws/ecsutil/client.go @@ -4,6 +4,7 @@ package ecsutil // import "github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/ecsutil" import ( + "context" "fmt" "io" "net/http" @@ -45,6 +46,7 @@ type defaultClientProvider struct { func (dcp *defaultClientProvider) BuildClient() (Client, error) { return defaultClient( + context.Background(), dcp.baseURL, dcp.clientSettings, dcp.host, @@ -53,12 +55,13 @@ func (dcp *defaultClientProvider) BuildClient() (Client, error) { } func defaultClient( + ctx context.Context, baseURL url.URL, clientSettings confighttp.ClientConfig, host component.Host, settings component.TelemetrySettings, ) (*clientImpl, error) { - client, err := clientSettings.ToClient(host, settings) + client, err := clientSettings.ToClientContext(ctx, host, settings) if err != nil { return nil, err } diff --git a/internal/aws/ecsutil/client_test.go b/internal/aws/ecsutil/client_test.go index e478386ced39..1a4c0e3d9ff9 100644 --- a/internal/aws/ecsutil/client_test.go +++ b/internal/aws/ecsutil/client_test.go @@ -4,6 +4,7 @@ package ecsutil import ( + "context" "fmt" "io" "net/http" @@ -48,7 +49,7 @@ func TestNewClientProvider(t *testing.T) { func TestDefaultClient(t *testing.T) { endpoint, _ := url.Parse("http://localhost:8080") - client, err := defaultClient(*endpoint, confighttp.ClientConfig{}, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings()) + client, err := defaultClient(context.Background(), *endpoint, confighttp.ClientConfig{}, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings()) require.NoError(t, err) require.NotNil(t, client.httpClient.Transport) require.Equal(t, "http://localhost:8080", client.baseURL.String()) diff --git a/internal/aws/ecsutil/go.mod b/internal/aws/ecsutil/go.mod index 254282b0d363..f699acb0fe0d 100644 --- a/internal/aws/ecsutil/go.mod +++ b/internal/aws/ecsutil/go.mod @@ -5,8 +5,8 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 ) @@ -32,22 +32,22 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/internal/aws/ecsutil/go.sum b/internal/aws/ecsutil/go.sum index eb86661c8a09..48c71af58ae2 100644 --- a/internal/aws/ecsutil/go.sum +++ b/internal/aws/ecsutil/go.sum @@ -55,8 +55,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -69,36 +69,36 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= go.opentelemetry.io/collector/consumer v0.97.0 h1:S0BZQtJQxSHT156S8a5rLt3TeWYP8Rq+jn8QEyWQUYk= go.opentelemetry.io/collector/consumer v0.97.0/go.mod h1:1D06LURiZ/1KA2OnuKNeSn9bvFmJ5ZWe6L8kLu0osSY= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/internal/aws/proxy/go.mod b/internal/aws/proxy/go.mod index bb4dd9fa7cd4..e6e440cd9c2f 100644 --- a/internal/aws/proxy/go.mod +++ b/internal/aws/proxy/go.mod @@ -6,8 +6,8 @@ require ( github.com/aws/aws-sdk-go v1.51.17 github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/zap v1.27.0 ) @@ -17,8 +17,8 @@ require ( github.com/hashicorp/go-version v1.6.0 // indirect github.com/jmespath/go-jmespath v0.4.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.uber.org/multierr v1.11.0 // indirect golang.org/x/sys v0.14.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect diff --git a/internal/aws/proxy/go.sum b/internal/aws/proxy/go.sum index 102855eac505..ee4bbfc3345b 100644 --- a/internal/aws/proxy/go.sum +++ b/internal/aws/proxy/go.sum @@ -34,16 +34,16 @@ github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncj github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= go.opentelemetry.io/collector/confmap v0.97.0 h1:0CGSk7YW9rPc6jCwJteJzHzN96HRoHTfuqI7J/EmZsg= go.opentelemetry.io/collector/confmap v0.97.0/go.mod h1:AnJmZcZoOLuykSXGiAf3shi11ZZk5ei4tZd9dDTTpWE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/internal/aws/xray/go.mod b/internal/aws/xray/go.mod index 22e8470ddeb0..15ba538b5f2d 100644 --- a/internal/aws/xray/go.mod +++ b/internal/aws/xray/go.mod @@ -6,7 +6,7 @@ require ( github.com/aws/aws-sdk-go v1.51.17 github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/awsutil v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 ) @@ -24,9 +24,9 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect diff --git a/internal/aws/xray/go.sum b/internal/aws/xray/go.sum index 80e7fd4ccb18..4a849570d853 100644 --- a/internal/aws/xray/go.sum +++ b/internal/aws/xray/go.sum @@ -48,14 +48,14 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/metric v1.24.0 h1:6EhoGWWK28x1fbpA4tYTOWBkPefTDQnb8WSGXlc88kI= diff --git a/internal/common/go.mod b/internal/common/go.mod index 1fac461861b0..d02deb2670dd 100644 --- a/internal/common/go.mod +++ b/internal/common/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 ) diff --git a/internal/common/go.sum b/internal/common/go.sum index 1a0df8628941..4b40373dfa1a 100644 --- a/internal/common/go.sum +++ b/internal/common/go.sum @@ -12,8 +12,8 @@ github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjR github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/internal/coreinternal/go.mod b/internal/coreinternal/go.mod index d93cc93894e8..fd1eb47fee96 100644 --- a/internal/coreinternal/go.mod +++ b/internal/coreinternal/go.mod @@ -9,12 +9,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -68,7 +68,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -77,8 +77,8 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect diff --git a/internal/coreinternal/go.sum b/internal/coreinternal/go.sum index 06797f6aa197..525a135032dc 100644 --- a/internal/coreinternal/go.sum +++ b/internal/coreinternal/go.sum @@ -110,8 +110,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -147,22 +147,24 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/internal/datadog/go.mod b/internal/datadog/go.mod index 97f1c5b25cfa..5ba1eca364f0 100644 --- a/internal/datadog/go.mod +++ b/internal/datadog/go.mod @@ -9,8 +9,8 @@ require ( github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.13.4 github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/metrics v0.13.4 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/sdk/metric v1.24.0 @@ -63,7 +63,7 @@ require ( github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/secure-systems-lab/go-securesystemslib v0.7.0 // indirect @@ -73,9 +73,9 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.3 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect diff --git a/internal/datadog/go.sum b/internal/datadog/go.sum index f3c356df74d4..620baa595202 100644 --- a/internal/datadog/go.sum +++ b/internal/datadog/go.sum @@ -137,8 +137,8 @@ github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c h1:NRoLoZvkB github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -184,16 +184,16 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yusufpapurcu/wmi v1.2.3 h1:E1ctvB7uKFMOJw3fdOW32DwGE9I7t++CRUEMKvFoFiw= github.com/yusufpapurcu/wmi v1.2.3/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/internal/exp/metrics/go.mod b/internal/exp/metrics/go.mod index 120292d5b192..2f5845e0f2f5 100644 --- a/internal/exp/metrics/go.mod +++ b/internal/exp/metrics/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 ) require ( diff --git a/internal/exp/metrics/go.sum b/internal/exp/metrics/go.sum index 4e234ad9a4f6..eac0180d1493 100644 --- a/internal/exp/metrics/go.sum +++ b/internal/exp/metrics/go.sum @@ -35,8 +35,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/internal/filter/go.mod b/internal/filter/go.mod index d7add9eabddb..e82db87eba33 100644 --- a/internal/filter/go.mod +++ b/internal/filter/go.mod @@ -9,11 +9,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 ) @@ -42,10 +42,10 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect diff --git a/internal/filter/go.sum b/internal/filter/go.sum index a3a65ac8cef3..5d67a608c8b5 100644 --- a/internal/filter/go.sum +++ b/internal/filter/go.sum @@ -68,8 +68,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -82,18 +82,18 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/internal/kafka/go.mod b/internal/kafka/go.mod index ffcc75091bdc..667b93b4186b 100644 --- a/internal/kafka/go.mod +++ b/internal/kafka/go.mod @@ -7,7 +7,7 @@ require ( github.com/aws/aws-sdk-go v1.51.17 github.com/stretchr/testify v1.9.0 github.com/xdg-go/scram v1.1.2 - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/multierr v1.11.0 ) @@ -34,7 +34,7 @@ require ( github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect github.com/xdg-go/pbkdf2 v1.0.0 // indirect github.com/xdg-go/stringprep v1.0.4 // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect golang.org/x/crypto v0.21.0 // indirect golang.org/x/net v0.23.0 // indirect golang.org/x/sys v0.18.0 // indirect diff --git a/internal/kafka/go.sum b/internal/kafka/go.sum index 1c4b87ed1b80..293f4e266acb 100644 --- a/internal/kafka/go.sum +++ b/internal/kafka/go.sum @@ -87,10 +87,10 @@ github.com/xdg-go/scram v1.1.2/go.mod h1:RT/sEzTbU5y00aCK8UOx6R7YryM0iF1N2MOmC3k github.com/xdg-go/stringprep v1.0.4 h1:XLI/Ng3O1Atzq0oBs3TWm+5ZVgkq2aqdlvP9JtoZ6c8= github.com/xdg-go/stringprep v1.0.4/go.mod h1:mPGuuIYwz7CmR2bT9j4GbQqutWS1zV24gijq1dTyGkM= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= go.opentelemetry.io/collector/confmap v0.97.0 h1:0CGSk7YW9rPc6jCwJteJzHzN96HRoHTfuqI7J/EmZsg= go.opentelemetry.io/collector/confmap v0.97.0/go.mod h1:AnJmZcZoOLuykSXGiAf3shi11ZZk5ei4tZd9dDTTpWE= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= diff --git a/internal/kubelet/go.mod b/internal/kubelet/go.mod index 439e893c7b91..e2cd1f37ac18 100644 --- a/internal/kubelet/go.mod +++ b/internal/kubelet/go.mod @@ -6,7 +6,7 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/k8sconfig v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 k8s.io/client-go v0.29.3 @@ -36,7 +36,7 @@ require ( github.com/openshift/client-go v0.0.0-20210521082421-73d9475a9142 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/spf13/pflag v1.0.5 // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.uber.org/multierr v1.11.0 // indirect golang.org/x/net v0.23.0 // indirect golang.org/x/oauth2 v0.14.0 // indirect diff --git a/internal/kubelet/go.sum b/internal/kubelet/go.sum index 6429524989c4..3eaf2e8f3e74 100644 --- a/internal/kubelet/go.sum +++ b/internal/kubelet/go.sum @@ -244,10 +244,10 @@ go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= go.opentelemetry.io/collector/confmap v0.97.0 h1:0CGSk7YW9rPc6jCwJteJzHzN96HRoHTfuqI7J/EmZsg= go.opentelemetry.io/collector/confmap v0.97.0/go.mod h1:AnJmZcZoOLuykSXGiAf3shi11ZZk5ei4tZd9dDTTpWE= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= diff --git a/internal/metadataproviders/go.mod b/internal/metadataproviders/go.mod index 9e5fbeef5c9b..6b0f78245b72 100644 --- a/internal/metadataproviders/go.mod +++ b/internal/metadataproviders/go.mod @@ -9,7 +9,7 @@ require ( github.com/hashicorp/consul/api v1.28.2 github.com/open-telemetry/opentelemetry-collector-contrib/internal/k8sconfig v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/sdk v1.24.0 go.uber.org/goleak v1.3.0 diff --git a/internal/metadataproviders/go.sum b/internal/metadataproviders/go.sum index 38bab2a37faf..54251b4d0ff0 100644 --- a/internal/metadataproviders/go.sum +++ b/internal/metadataproviders/go.sum @@ -417,8 +417,8 @@ go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/internal/sharedcomponent/go.mod b/internal/sharedcomponent/go.mod index 464d72130e08..e4c9ec72be17 100644 --- a/internal/sharedcomponent/go.mod +++ b/internal/sharedcomponent/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 ) @@ -24,12 +24,12 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect diff --git a/internal/sharedcomponent/go.sum b/internal/sharedcomponent/go.sum index 70b408b005c4..1107e9cc1dae 100644 --- a/internal/sharedcomponent/go.sum +++ b/internal/sharedcomponent/go.sum @@ -39,8 +39,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -51,14 +51,14 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/internal/splunk/go.mod b/internal/splunk/go.mod index a19256b218fa..ff4af2a603e5 100644 --- a/internal/splunk/go.mod +++ b/internal/splunk/go.mod @@ -4,10 +4,10 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/multierr v1.11.0 ) @@ -27,12 +27,12 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect diff --git a/internal/splunk/go.sum b/internal/splunk/go.sum index 49263b88d193..89b5176e948d 100644 --- a/internal/splunk/go.sum +++ b/internal/splunk/go.sum @@ -51,8 +51,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -65,28 +65,30 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= go.opentelemetry.io/collector/receiver v0.97.0 h1:ozzE5MhIPtfnYA/UKB/NCcgxSmeLqdwErboi6B/IpLQ= go.opentelemetry.io/collector/receiver v0.97.0/go.mod h1:1TCN9DRuB45+xKqlwv4BMQR6qXgaJeSSNezFTJhmDUo= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/internal/sqlquery/go.mod b/internal/sqlquery/go.mod index b2ff6c588cbc..0e6ba1c790d0 100644 --- a/internal/sqlquery/go.mod +++ b/internal/sqlquery/go.mod @@ -10,9 +10,9 @@ require ( github.com/sijms/go-ora/v2 v2.8.11 github.com/snowflakedb/gosnowflake v1.9.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/multierr v1.11.0 go.uber.org/zap v1.27.0 ) @@ -85,10 +85,10 @@ require ( github.com/prometheus/procfs v0.13.0 // indirect github.com/sirupsen/logrus v1.9.0 // indirect github.com/zeebo/xxh3 v1.0.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect diff --git a/internal/sqlquery/go.sum b/internal/sqlquery/go.sum index 6c9ea3531ca9..7b23c8eb40dd 100644 --- a/internal/sqlquery/go.sum +++ b/internal/sqlquery/go.sum @@ -218,20 +218,20 @@ github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/internal/tools/go.mod b/internal/tools/go.mod index 503e170d8531..4729690a3203 100644 --- a/internal/tools/go.mod +++ b/internal/tools/go.mod @@ -15,8 +15,8 @@ require ( go.opentelemetry.io/build-tools/crosslink v0.13.0 go.opentelemetry.io/build-tools/issuegenerator v0.13.0 go.opentelemetry.io/build-tools/multimod v0.13.0 - go.opentelemetry.io/collector/cmd/builder v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/cmd/mdatagen v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/cmd/builder v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/cmd/mdatagen v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 golang.org/x/tools v0.19.0 golang.org/x/vuln v1.0.4 @@ -167,7 +167,7 @@ require ( github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/polyfloyd/go-errorlint v1.4.8 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/quasilyte/go-ruleguard v0.4.2 // indirect @@ -222,11 +222,11 @@ require ( go-simpler.org/musttag v0.9.0 // indirect go-simpler.org/sloglint v0.5.0 // indirect go.opentelemetry.io/build-tools v0.13.0 // indirect - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect diff --git a/internal/tools/go.sum b/internal/tools/go.sum index 1489b831b5f8..39768e852f38 100644 --- a/internal/tools/go.sum +++ b/internal/tools/go.sum @@ -531,8 +531,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= @@ -703,20 +703,20 @@ go.opentelemetry.io/build-tools/issuegenerator v0.13.0 h1:hAzDPWh/oyBVoYRB5Xb8Y6 go.opentelemetry.io/build-tools/issuegenerator v0.13.0/go.mod h1:hHPQ5lv0apJv0QM8mz/k5nAwacDEEDD+fJ8xYhrKjBM= go.opentelemetry.io/build-tools/multimod v0.13.0 h1:HGAP3zCM8vOTNJSQbjQ5VbKZSctIZxppPBxRTzye7ic= go.opentelemetry.io/build-tools/multimod v0.13.0/go.mod h1:CxZp68c4PIN+bYlVOGB2FvE5zZMBuGz7cGSHv2L7pSc= -go.opentelemetry.io/collector/cmd/builder v0.97.1-0.20240404121116-4f1a8936d26b h1:LFVQFio6DuenOnddAg+5j+qEVxUiY78vyhEts1Cs0kk= -go.opentelemetry.io/collector/cmd/builder v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:1Odbp7rTiPEXoJEcVMdw2Q1a3pmOTATlip3+kgFL02k= -go.opentelemetry.io/collector/cmd/mdatagen v0.97.1-0.20240404121116-4f1a8936d26b h1:kFTXSMue8b+oNpLC8WHQKtSiOfeTWyH5/Ab9Y+mun+w= -go.opentelemetry.io/collector/cmd/mdatagen v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:eKCxDpqR0GbODETCNzOu3hLHirVBtBxLCwG2z2siVEc= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/cmd/builder v0.97.1-0.20240409140257-792fac1b62d4 h1:1pZJ8z4N0Ogrs0/jEdnYFemDz1PvQ4c5xOuFooLTWtY= +go.opentelemetry.io/collector/cmd/builder v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:1Odbp7rTiPEXoJEcVMdw2Q1a3pmOTATlip3+kgFL02k= +go.opentelemetry.io/collector/cmd/mdatagen v0.97.1-0.20240409140257-792fac1b62d4 h1:RN7GR3yK53lW1lN4FJrG+C8KD6c2ezIzkHDlPxTDFwo= +go.opentelemetry.io/collector/cmd/mdatagen v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:gycAuJQonuKUvYFGaI9c37NP7/WpijFMgTm8/jDWsZE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/metric v1.24.0 h1:6EhoGWWK28x1fbpA4tYTOWBkPefTDQnb8WSGXlc88kI= diff --git a/pkg/batchperresourceattr/go.mod b/pkg/batchperresourceattr/go.mod index 7e13b8bb8dfd..229e433ccc16 100644 --- a/pkg/batchperresourceattr/go.mod +++ b/pkg/batchperresourceattr/go.mod @@ -4,8 +4,8 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/multierr v1.11.0 ) diff --git a/pkg/batchperresourceattr/go.sum b/pkg/batchperresourceattr/go.sum index 40beb8790cda..b0e72435a9de 100644 --- a/pkg/batchperresourceattr/go.sum +++ b/pkg/batchperresourceattr/go.sum @@ -33,12 +33,12 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.0 h1:qyOju13byHIKEK/JehmTiGMj4pFLa4kDyrOCtTmjHU0= -go.opentelemetry.io/collector v0.97.0/go.mod h1:V6xquYAaO2VHVu4DBK28JYuikRdZajh7DH5Vl/Y8NiA= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/pkg/batchpersignal/go.mod b/pkg/batchpersignal/go.mod index 0568a8870353..bc619d06ba0a 100644 --- a/pkg/batchpersignal/go.mod +++ b/pkg/batchpersignal/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 ) diff --git a/pkg/batchpersignal/go.sum b/pkg/batchpersignal/go.sum index cbe60891cc0f..ea4a002e69b5 100644 --- a/pkg/batchpersignal/go.sum +++ b/pkg/batchpersignal/go.sum @@ -34,8 +34,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/pkg/experimentalmetricmetadata/go.mod b/pkg/experimentalmetricmetadata/go.mod index d87844ab6947..478382a0e8e6 100644 --- a/pkg/experimentalmetricmetadata/go.mod +++ b/pkg/experimentalmetricmetadata/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 ) diff --git a/pkg/experimentalmetricmetadata/go.sum b/pkg/experimentalmetricmetadata/go.sum index cbe60891cc0f..ea4a002e69b5 100644 --- a/pkg/experimentalmetricmetadata/go.sum +++ b/pkg/experimentalmetricmetadata/go.sum @@ -34,8 +34,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/pkg/golden/go.mod b/pkg/golden/go.mod index 46fd2f8c9780..193d12e77aff 100644 --- a/pkg/golden/go.mod +++ b/pkg/golden/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/pkg/golden/go.sum b/pkg/golden/go.sum index 4e234ad9a4f6..eac0180d1493 100644 --- a/pkg/golden/go.sum +++ b/pkg/golden/go.sum @@ -35,8 +35,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/pkg/ottl/go.mod b/pkg/ottl/go.mod index 98ae7facc8f1..8cc147b2263c 100644 --- a/pkg/ottl/go.mod +++ b/pkg/ottl/go.mod @@ -11,8 +11,8 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 @@ -38,11 +38,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect diff --git a/pkg/ottl/go.sum b/pkg/ottl/go.sum index f0dd17d0045b..9d0c9725140e 100644 --- a/pkg/ottl/go.sum +++ b/pkg/ottl/go.sum @@ -62,8 +62,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -76,14 +76,14 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/pkg/pdatatest/go.mod b/pkg/pdatatest/go.mod index ce1089166927..4c0e2e3d552a 100644 --- a/pkg/pdatatest/go.mod +++ b/pkg/pdatatest/go.mod @@ -6,7 +6,7 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/multierr v1.11.0 ) diff --git a/pkg/pdatatest/go.sum b/pkg/pdatatest/go.sum index 4e234ad9a4f6..eac0180d1493 100644 --- a/pkg/pdatatest/go.sum +++ b/pkg/pdatatest/go.sum @@ -35,8 +35,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/pkg/pdatautil/go.mod b/pkg/pdatautil/go.mod index 7f66cc13162c..3b174a97808e 100644 --- a/pkg/pdatautil/go.mod +++ b/pkg/pdatautil/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/cespare/xxhash/v2 v2.3.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 ) diff --git a/pkg/pdatautil/go.sum b/pkg/pdatautil/go.sum index 4eb69c6af3ee..cd52f5ddf8a9 100644 --- a/pkg/pdatautil/go.sum +++ b/pkg/pdatautil/go.sum @@ -25,8 +25,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/pkg/resourcetotelemetry/go.mod b/pkg/resourcetotelemetry/go.mod index 64ae4ecf4391..587b68f9bbc0 100644 --- a/pkg/resourcetotelemetry/go.mod +++ b/pkg/resourcetotelemetry/go.mod @@ -5,9 +5,9 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 ) @@ -25,9 +25,9 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect diff --git a/pkg/resourcetotelemetry/go.sum b/pkg/resourcetotelemetry/go.sum index 48c898fdad96..dddb6bb6be6b 100644 --- a/pkg/resourcetotelemetry/go.sum +++ b/pkg/resourcetotelemetry/go.sum @@ -47,8 +47,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -61,18 +61,18 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/pkg/sampling/go.mod b/pkg/sampling/go.mod index ef182ec28518..22cf58ca9b97 100644 --- a/pkg/sampling/go.mod +++ b/pkg/sampling/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/multierr v1.11.0 ) diff --git a/pkg/sampling/go.sum b/pkg/sampling/go.sum index 40b0552f644f..251e23af0129 100644 --- a/pkg/sampling/go.sum +++ b/pkg/sampling/go.sum @@ -23,8 +23,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/pkg/stanza/go.mod b/pkg/stanza/go.mod index 8c75e3faf263..b40fad7e2156 100644 --- a/pkg/stanza/go.mod +++ b/pkg/stanza/go.mod @@ -14,14 +14,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 github.com/valyala/fastjson v1.6.4 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/multierr v1.11.0 go.uber.org/zap v1.27.0 @@ -53,13 +53,13 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect diff --git a/pkg/stanza/go.sum b/pkg/stanza/go.sum index b5e48f602765..8d3f6269889d 100644 --- a/pkg/stanza/go.sum +++ b/pkg/stanza/go.sum @@ -67,8 +67,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -87,28 +87,30 @@ github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLr github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/pkg/translator/azure/go.mod b/pkg/translator/azure/go.mod index 4373e7f0b6f6..f873bcdd07f7 100644 --- a/pkg/translator/azure/go.mod +++ b/pkg/translator/azure/go.mod @@ -7,9 +7,9 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/relvacode/iso8601 v1.4.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc @@ -30,8 +30,8 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect diff --git a/pkg/translator/azure/go.sum b/pkg/translator/azure/go.sum index c24c7ad176ca..8055177c94d0 100644 --- a/pkg/translator/azure/go.sum +++ b/pkg/translator/azure/go.sum @@ -53,16 +53,16 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/metric v1.24.0 h1:6EhoGWWK28x1fbpA4tYTOWBkPefTDQnb8WSGXlc88kI= diff --git a/pkg/translator/jaeger/go.mod b/pkg/translator/jaeger/go.mod index f3a35468f17d..19c27cb92e04 100644 --- a/pkg/translator/jaeger/go.mod +++ b/pkg/translator/jaeger/go.mod @@ -6,8 +6,8 @@ require ( github.com/jaegertracing/jaeger v1.55.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 ) diff --git a/pkg/translator/jaeger/go.sum b/pkg/translator/jaeger/go.sum index e21dd13d9e17..9b4e1f3bfc30 100644 --- a/pkg/translator/jaeger/go.sum +++ b/pkg/translator/jaeger/go.sum @@ -39,10 +39,10 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y1YELI= diff --git a/pkg/translator/loki/go.mod b/pkg/translator/loki/go.mod index 5d4f3ba03cbb..878ad49971aa 100644 --- a/pkg/translator/loki/go.mod +++ b/pkg/translator/loki/go.mod @@ -11,8 +11,8 @@ require ( github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 ) @@ -32,9 +32,9 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.uber.org/atomic v1.11.0 // indirect go.uber.org/multierr v1.11.0 // indirect golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect diff --git a/pkg/translator/loki/go.sum b/pkg/translator/loki/go.sum index 4dded3629248..42afdd165ce6 100644 --- a/pkg/translator/loki/go.sum +++ b/pkg/translator/loki/go.sum @@ -79,8 +79,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= @@ -97,12 +97,12 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE= go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= diff --git a/pkg/translator/opencensus/go.mod b/pkg/translator/opencensus/go.mod index 0e159e7976b8..9ddf9da86306 100644 --- a/pkg/translator/opencensus/go.mod +++ b/pkg/translator/opencensus/go.mod @@ -10,8 +10,8 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 go.opencensus.io v0.24.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 google.golang.org/protobuf v1.33.0 ) diff --git a/pkg/translator/opencensus/go.sum b/pkg/translator/opencensus/go.sum index 9c674d8ecab3..2ca797697a87 100644 --- a/pkg/translator/opencensus/go.sum +++ b/pkg/translator/opencensus/go.sum @@ -75,10 +75,10 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/pkg/translator/prometheus/go.mod b/pkg/translator/prometheus/go.mod index ce7b40d90404..69dd91092d87 100644 --- a/pkg/translator/prometheus/go.mod +++ b/pkg/translator/prometheus/go.mod @@ -5,8 +5,8 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 ) diff --git a/pkg/translator/prometheus/go.sum b/pkg/translator/prometheus/go.sum index d7b18584d6b9..3657cede4dd9 100644 --- a/pkg/translator/prometheus/go.sum +++ b/pkg/translator/prometheus/go.sum @@ -36,10 +36,10 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/pkg/translator/prometheusremotewrite/go.mod b/pkg/translator/prometheusremotewrite/go.mod index 845a50719237..dd483e26ea52 100644 --- a/pkg/translator/prometheusremotewrite/go.mod +++ b/pkg/translator/prometheusremotewrite/go.mod @@ -8,8 +8,8 @@ require ( github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/multierr v1.11.0 ) @@ -23,8 +23,8 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect - github.com/prometheus/client_model v0.6.0 // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + github.com/prometheus/client_model v0.6.1 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect golang.org/x/net v0.23.0 // indirect golang.org/x/sys v0.18.0 // indirect golang.org/x/text v0.14.0 // indirect diff --git a/pkg/translator/prometheusremotewrite/go.sum b/pkg/translator/prometheusremotewrite/go.sum index e573c5ef7421..775abee7d659 100644 --- a/pkg/translator/prometheusremotewrite/go.sum +++ b/pkg/translator/prometheusremotewrite/go.sum @@ -27,8 +27,8 @@ github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjY github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e h1:UmqAuY2OyDoog8+l5FybViJE5B2r+UxVGCUwFTsY5AA= @@ -41,12 +41,12 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/pkg/translator/signalfx/go.mod b/pkg/translator/signalfx/go.mod index 5cbb15aec588..057dbe143470 100644 --- a/pkg/translator/signalfx/go.mod +++ b/pkg/translator/signalfx/go.mod @@ -7,7 +7,7 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/multierr v1.11.0 ) diff --git a/pkg/translator/signalfx/go.sum b/pkg/translator/signalfx/go.sum index e3755b979608..454e9a30e9d4 100644 --- a/pkg/translator/signalfx/go.sum +++ b/pkg/translator/signalfx/go.sum @@ -47,8 +47,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/pkg/translator/skywalking/go.mod b/pkg/translator/skywalking/go.mod index d88a91a55fd9..268057bdc2f9 100644 --- a/pkg/translator/skywalking/go.mod +++ b/pkg/translator/skywalking/go.mod @@ -5,8 +5,8 @@ go 1.21 require ( github.com/google/uuid v1.6.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 skywalking.apache.org/repo/goapi v0.0.0-20240104145220-ba7202308dd4 ) diff --git a/pkg/translator/skywalking/go.sum b/pkg/translator/skywalking/go.sum index c40791b3992f..e5ac474a149f 100644 --- a/pkg/translator/skywalking/go.sum +++ b/pkg/translator/skywalking/go.sum @@ -83,10 +83,10 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= diff --git a/pkg/translator/zipkin/go.mod b/pkg/translator/zipkin/go.mod index 4f2647bf0fb9..6a0aa2a2f2d5 100644 --- a/pkg/translator/zipkin/go.mod +++ b/pkg/translator/zipkin/go.mod @@ -7,8 +7,8 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/openzipkin/zipkin-go v0.4.2 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 ) diff --git a/pkg/translator/zipkin/go.sum b/pkg/translator/zipkin/go.sum index fb3e4ea7d805..38ba36a768e5 100644 --- a/pkg/translator/zipkin/go.sum +++ b/pkg/translator/zipkin/go.sum @@ -41,10 +41,10 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y1YELI= diff --git a/processor/attributesprocessor/go.mod b/processor/attributesprocessor/go.mod index fc33692300be..11471f7bf657 100644 --- a/processor/attributesprocessor/go.mod +++ b/processor/attributesprocessor/go.mod @@ -8,12 +8,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -47,12 +47,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/attributesprocessor/go.sum b/processor/attributesprocessor/go.sum index e93f9067acfd..46efbcb7f123 100644 --- a/processor/attributesprocessor/go.sum +++ b/processor/attributesprocessor/go.sum @@ -68,8 +68,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -82,24 +82,26 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/cumulativetodeltaprocessor/go.mod b/processor/cumulativetodeltaprocessor/go.mod index cdfed885ff2b..58963ff91d55 100644 --- a/processor/cumulativetodeltaprocessor/go.mod +++ b/processor/cumulativetodeltaprocessor/go.mod @@ -6,11 +6,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -38,11 +38,12 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/cumulativetodeltaprocessor/go.sum b/processor/cumulativetodeltaprocessor/go.sum index 8f3e8e6170cd..03bc48b05d9e 100644 --- a/processor/cumulativetodeltaprocessor/go.sum +++ b/processor/cumulativetodeltaprocessor/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -66,20 +66,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/deltatocumulativeprocessor/go.mod b/processor/deltatocumulativeprocessor/go.mod index 822b3a1bf125..1386840c01ae 100644 --- a/processor/deltatocumulativeprocessor/go.mod +++ b/processor/deltatocumulativeprocessor/go.mod @@ -5,11 +5,11 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/exp/metrics v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -36,11 +36,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/deltatocumulativeprocessor/go.sum b/processor/deltatocumulativeprocessor/go.sum index 4087bddb2400..98b746a8da99 100644 --- a/processor/deltatocumulativeprocessor/go.sum +++ b/processor/deltatocumulativeprocessor/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,20 +64,20 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/deltatorateprocessor/go.mod b/processor/deltatorateprocessor/go.mod index ddaf3617c85f..69cdc70ecdcd 100644 --- a/processor/deltatorateprocessor/go.mod +++ b/processor/deltatorateprocessor/go.mod @@ -4,11 +4,11 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -35,11 +35,12 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/deltatorateprocessor/go.sum b/processor/deltatorateprocessor/go.sum index 1fec22705eb5..c1ea3328f868 100644 --- a/processor/deltatorateprocessor/go.sum +++ b/processor/deltatorateprocessor/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,20 +64,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/filterprocessor/go.mod b/processor/filterprocessor/go.mod index dfed7b711695..ac426ce3d9f2 100644 --- a/processor/filterprocessor/go.mod +++ b/processor/filterprocessor/go.mod @@ -7,11 +7,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/sdk/metric v1.24.0 @@ -48,13 +48,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect diff --git a/processor/filterprocessor/go.sum b/processor/filterprocessor/go.sum index e93f9067acfd..46efbcb7f123 100644 --- a/processor/filterprocessor/go.sum +++ b/processor/filterprocessor/go.sum @@ -68,8 +68,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -82,24 +82,26 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/groupbyattrsprocessor/go.mod b/processor/groupbyattrsprocessor/go.mod index 8a4791c85502..6b629fb02202 100644 --- a/processor/groupbyattrsprocessor/go.mod +++ b/processor/groupbyattrsprocessor/go.mod @@ -5,11 +5,11 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/sdk/metric v1.24.0 @@ -38,11 +38,12 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect diff --git a/processor/groupbyattrsprocessor/go.sum b/processor/groupbyattrsprocessor/go.sum index 4087bddb2400..02b12ab51539 100644 --- a/processor/groupbyattrsprocessor/go.sum +++ b/processor/groupbyattrsprocessor/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,20 +64,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/groupbytraceprocessor/go.mod b/processor/groupbytraceprocessor/go.mod index c0654bda9756..7bb3f345b774 100644 --- a/processor/groupbytraceprocessor/go.mod +++ b/processor/groupbytraceprocessor/go.mod @@ -6,11 +6,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/batchpersignal v0.97.0 github.com/stretchr/testify v1.9.0 go.opencensus.io v0.24.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/multierr v1.11.0 @@ -37,11 +37,12 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/groupbytraceprocessor/go.sum b/processor/groupbytraceprocessor/go.sum index ec2d5a509433..e6e39f110be6 100644 --- a/processor/groupbytraceprocessor/go.sum +++ b/processor/groupbytraceprocessor/go.sum @@ -80,8 +80,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -101,20 +101,22 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/intervalprocessor/go.mod b/processor/intervalprocessor/go.mod index adf44c62c136..e012200eb0bb 100644 --- a/processor/intervalprocessor/go.mod +++ b/processor/intervalprocessor/go.mod @@ -4,11 +4,11 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -34,11 +34,11 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/intervalprocessor/go.sum b/processor/intervalprocessor/go.sum index 1fec22705eb5..236fba81186b 100644 --- a/processor/intervalprocessor/go.sum +++ b/processor/intervalprocessor/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,20 +64,20 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/k8sattributesprocessor/go.mod b/processor/k8sattributesprocessor/go.mod index d882777a3bc8..2904d69e85d7 100644 --- a/processor/k8sattributesprocessor/go.mod +++ b/processor/k8sattributesprocessor/go.mod @@ -9,16 +9,16 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/k8stest v0.97.0 github.com/stretchr/testify v1.9.0 go.opencensus.io v0.24.0 - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -77,23 +77,24 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/sirupsen/logrus v1.9.3 // indirect github.com/spf13/pflag v1.0.5 // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/processor/k8sattributesprocessor/go.sum b/processor/k8sattributesprocessor/go.sum index c45946e69099..b3632908f98f 100644 --- a/processor/k8sattributesprocessor/go.sum +++ b/processor/k8sattributesprocessor/go.sum @@ -1168,8 +1168,8 @@ github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1: github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -1231,48 +1231,50 @@ go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/processor/logstransformprocessor/go.mod b/processor/logstransformprocessor/go.mod index 1babef933314..0996e2638349 100644 --- a/processor/logstransformprocessor/go.mod +++ b/processor/logstransformprocessor/go.mod @@ -7,12 +7,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -45,14 +45,15 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/valyala/fastjson v1.6.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/logstransformprocessor/go.sum b/processor/logstransformprocessor/go.sum index 5fbb7dc68819..6d98a68cde7b 100644 --- a/processor/logstransformprocessor/go.sum +++ b/processor/logstransformprocessor/go.sum @@ -61,8 +61,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -81,26 +81,28 @@ github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLr github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/metricsgenerationprocessor/go.mod b/processor/metricsgenerationprocessor/go.mod index 868f7471ebb3..9d89d9710d1f 100644 --- a/processor/metricsgenerationprocessor/go.mod +++ b/processor/metricsgenerationprocessor/go.mod @@ -4,11 +4,11 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -35,11 +35,12 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/metricsgenerationprocessor/go.sum b/processor/metricsgenerationprocessor/go.sum index 1fec22705eb5..c1ea3328f868 100644 --- a/processor/metricsgenerationprocessor/go.sum +++ b/processor/metricsgenerationprocessor/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,20 +64,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/metricstransformprocessor/go.mod b/processor/metricstransformprocessor/go.mod index 5b984a770cdc..16dbdda95548 100644 --- a/processor/metricstransformprocessor/go.mod +++ b/processor/metricstransformprocessor/go.mod @@ -6,11 +6,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -38,11 +38,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/metricstransformprocessor/go.sum b/processor/metricstransformprocessor/go.sum index 4087bddb2400..02b12ab51539 100644 --- a/processor/metricstransformprocessor/go.sum +++ b/processor/metricstransformprocessor/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,20 +64,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/probabilisticsamplerprocessor/go.mod b/processor/probabilisticsamplerprocessor/go.mod index 5a84f7fc1609..b15dd9a221dd 100644 --- a/processor/probabilisticsamplerprocessor/go.mod +++ b/processor/probabilisticsamplerprocessor/go.mod @@ -6,14 +6,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 go.opencensus.io v0.24.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -48,7 +48,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -58,19 +58,20 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/propagators/b3 v1.24.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/processor/probabilisticsamplerprocessor/go.sum b/processor/probabilisticsamplerprocessor/go.sum index 2ca5e3b33121..c9e9aa66f563 100644 --- a/processor/probabilisticsamplerprocessor/go.sum +++ b/processor/probabilisticsamplerprocessor/go.sum @@ -98,8 +98,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -138,54 +138,56 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= go.opentelemetry.io/collector/config/confignet v0.97.0 h1:KJjv10/YVMslSSLVWW/IIjpLM3JiO3rWvw5dK/t1H7g= go.opentelemetry.io/collector/config/confignet v0.97.0/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= go.opentelemetry.io/collector/config/configretry v0.97.0 h1:k7VwQ5H0oBLm6Fgm0ltfDDbmQVsiqSIY9ojijF0hiR0= go.opentelemetry.io/collector/config/configretry v0.97.0/go.mod h1:s7A6ZGxK8bxqidFzwbr2pITzbsB2qf+aeHEDQDcanV8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/propagators/b3 v1.24.0 h1:n4xwCdTx3pZqZs2CjS/CUZAs03y3dZcGhC/FepKtEUY= diff --git a/processor/redactionprocessor/go.mod b/processor/redactionprocessor/go.mod index 200da92fbf40..e0e5e2f0046e 100644 --- a/processor/redactionprocessor/go.mod +++ b/processor/redactionprocessor/go.mod @@ -4,11 +4,11 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -35,11 +35,12 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/redactionprocessor/go.sum b/processor/redactionprocessor/go.sum index 1fec22705eb5..c1ea3328f868 100644 --- a/processor/redactionprocessor/go.sum +++ b/processor/redactionprocessor/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,20 +64,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/remotetapprocessor/go.mod b/processor/remotetapprocessor/go.mod index 9221af258b31..dbc207320913 100644 --- a/processor/remotetapprocessor/go.mod +++ b/processor/remotetapprocessor/go.mod @@ -6,12 +6,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -44,20 +44,21 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/processor/remotetapprocessor/go.sum b/processor/remotetapprocessor/go.sum index ece8395fc3af..bd8f1fe87c3a 100644 --- a/processor/remotetapprocessor/go.sum +++ b/processor/remotetapprocessor/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -76,38 +76,40 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/processor/remotetapprocessor/processor.go b/processor/remotetapprocessor/processor.go index 30b186a6c3e3..a5b21bbaf035 100644 --- a/processor/remotetapprocessor/processor.go +++ b/processor/remotetapprocessor/processor.go @@ -41,14 +41,14 @@ func newProcessor(settings processor.CreateSettings, config *Config) *wsprocesso } } -func (w *wsprocessor) Start(_ context.Context, host component.Host) error { +func (w *wsprocessor) Start(ctx context.Context, host component.Host) error { var err error var ln net.Listener - ln, err = w.config.ServerConfig.ToListener() + ln, err = w.config.ServerConfig.ToListenerContext(ctx) if err != nil { return fmt.Errorf("failed to bind to address %s: %w", w.config.Endpoint, err) } - w.server, err = w.config.ServerConfig.ToServer(host, w.telemetrySettings, websocket.Handler(w.handleConn)) + w.server, err = w.config.ServerConfig.ToServerContext(ctx, host, w.telemetrySettings, websocket.Handler(w.handleConn)) if err != nil { return err } diff --git a/processor/resourcedetectionprocessor/go.mod b/processor/resourcedetectionprocessor/go.mod index e70decb2c373..775efebe1a07 100644 --- a/processor/resourcedetectionprocessor/go.mod +++ b/processor/resourcedetectionprocessor/go.mod @@ -14,16 +14,16 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/metadataproviders v0.97.0 github.com/shirou/gopsutil/v3 v3.24.3 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -99,7 +99,7 @@ require ( github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -110,13 +110,14 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/processor/resourcedetectionprocessor/go.sum b/processor/resourcedetectionprocessor/go.sum index 2c8c659a5e9b..215b82382625 100644 --- a/processor/resourcedetectionprocessor/go.sum +++ b/processor/resourcedetectionprocessor/go.sum @@ -406,8 +406,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= @@ -472,40 +472,42 @@ go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/processor/resourcedetectionprocessor/resourcedetection_processor.go b/processor/resourcedetectionprocessor/resourcedetection_processor.go index a3b07c6636ac..558373291e08 100644 --- a/processor/resourcedetectionprocessor/resourcedetection_processor.go +++ b/processor/resourcedetectionprocessor/resourcedetection_processor.go @@ -27,7 +27,7 @@ type resourceDetectionProcessor struct { // Start is invoked during service startup. func (rdp *resourceDetectionProcessor) Start(ctx context.Context, host component.Host) error { - client, _ := rdp.httpClientSettings.ToClient(host, rdp.telemetrySettings) + client, _ := rdp.httpClientSettings.ToClientContext(ctx, host, rdp.telemetrySettings) ctx = internal.ContextWithClient(ctx, client) var err error rdp.resource, rdp.schemaURL, err = rdp.provider.Get(ctx, client) diff --git a/processor/resourceprocessor/go.mod b/processor/resourceprocessor/go.mod index 3c3d8a2e2faa..3386fb331681 100644 --- a/processor/resourceprocessor/go.mod +++ b/processor/resourceprocessor/go.mod @@ -6,11 +6,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -38,11 +38,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/resourceprocessor/go.sum b/processor/resourceprocessor/go.sum index 4087bddb2400..02b12ab51539 100644 --- a/processor/resourceprocessor/go.sum +++ b/processor/resourceprocessor/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,20 +64,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/routingprocessor/go.mod b/processor/routingprocessor/go.mod index cbb5625fe348..0be079bf8d17 100644 --- a/processor/routingprocessor/go.mod +++ b/processor/routingprocessor/go.mod @@ -5,15 +5,15 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 @@ -53,21 +53,22 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/routingprocessor/go.sum b/processor/routingprocessor/go.sum index e494e92d9313..0563eade5b0f 100644 --- a/processor/routingprocessor/go.sum +++ b/processor/routingprocessor/go.sum @@ -76,8 +76,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -90,48 +90,50 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:jv6wp8Muswbz/iS62KGDNUZx2GSBsnL9zL2RAQDQTxw= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:d0SAS68CUbHU+GKOrzMlGMWCsRfn8a9Rh8AUOHxC+xk= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:EZ1WfK0tKytC56o30ZhSj+1IROllj+XMGe0pqm5KGOM= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:s3L5toZ5PsceEgmDiZvFEQQwyos8VxdpZ1e7fokrwAE= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/processor/schemaprocessor/go.mod b/processor/schemaprocessor/go.mod index 15309f4e7aa5..23ed7b100bfd 100644 --- a/processor/schemaprocessor/go.mod +++ b/processor/schemaprocessor/go.mod @@ -4,12 +4,12 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/schema v0.0.7 go.opentelemetry.io/otel/trace v1.24.0 @@ -43,20 +43,21 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/processor/schemaprocessor/go.sum b/processor/schemaprocessor/go.sum index 40f2a2d84584..e3e1232ef7c3 100644 --- a/processor/schemaprocessor/go.sum +++ b/processor/schemaprocessor/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -76,38 +76,40 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/processor/spanprocessor/go.mod b/processor/spanprocessor/go.mod index ec590269fe20..261cec1ff183 100644 --- a/processor/spanprocessor/go.mod +++ b/processor/spanprocessor/go.mod @@ -8,12 +8,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -45,12 +45,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/spanprocessor/go.sum b/processor/spanprocessor/go.sum index 1a34415480f8..c6ff65a36040 100644 --- a/processor/spanprocessor/go.sum +++ b/processor/spanprocessor/go.sum @@ -66,8 +66,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -80,24 +80,26 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/sumologicprocessor/go.mod b/processor/sumologicprocessor/go.mod index eba62318bb68..be84c5977193 100644 --- a/processor/sumologicprocessor/go.mod +++ b/processor/sumologicprocessor/go.mod @@ -4,13 +4,13 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -45,7 +45,7 @@ require ( github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -56,20 +56,21 @@ require ( github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/propagators/b3 v1.24.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/processor/sumologicprocessor/go.sum b/processor/sumologicprocessor/go.sum index 364af26a8caf..1d5d730c82eb 100644 --- a/processor/sumologicprocessor/go.sum +++ b/processor/sumologicprocessor/go.sum @@ -100,8 +100,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -140,54 +140,56 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= go.opentelemetry.io/collector/config/confignet v0.97.0 h1:KJjv10/YVMslSSLVWW/IIjpLM3JiO3rWvw5dK/t1H7g= go.opentelemetry.io/collector/config/confignet v0.97.0/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= go.opentelemetry.io/collector/config/configretry v0.97.0 h1:k7VwQ5H0oBLm6Fgm0ltfDDbmQVsiqSIY9ojijF0hiR0= go.opentelemetry.io/collector/config/configretry v0.97.0/go.mod h1:s7A6ZGxK8bxqidFzwbr2pITzbsB2qf+aeHEDQDcanV8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/propagators/b3 v1.24.0 h1:n4xwCdTx3pZqZs2CjS/CUZAs03y3dZcGhC/FepKtEUY= diff --git a/processor/tailsamplingprocessor/go.mod b/processor/tailsamplingprocessor/go.mod index 297e7d7103f0..9843c1bd19ac 100644 --- a/processor/tailsamplingprocessor/go.mod +++ b/processor/tailsamplingprocessor/go.mod @@ -10,13 +10,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.97.0 github.com/stretchr/testify v1.9.0 go.opencensus.io v0.24.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -47,10 +47,11 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/tailsamplingprocessor/go.sum b/processor/tailsamplingprocessor/go.sum index d7e638d949c4..06e7fb8fe9d0 100644 --- a/processor/tailsamplingprocessor/go.sum +++ b/processor/tailsamplingprocessor/go.sum @@ -97,8 +97,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -118,22 +118,24 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/processor/transformprocessor/go.mod b/processor/transformprocessor/go.mod index 686d3a5bf4cf..24b2847734ba 100644 --- a/processor/transformprocessor/go.mod +++ b/processor/transformprocessor/go.mod @@ -7,12 +7,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -46,11 +46,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/processor/transformprocessor/go.sum b/processor/transformprocessor/go.sum index 3ddb9e9fe750..4cd918cd4250 100644 --- a/processor/transformprocessor/go.sum +++ b/processor/transformprocessor/go.sum @@ -64,8 +64,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -78,22 +78,24 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/activedirectorydsreceiver/go.mod b/receiver/activedirectorydsreceiver/go.mod index 1a076f3af357..66a892abb183 100644 --- a/receiver/activedirectorydsreceiver/go.mod +++ b/receiver/activedirectorydsreceiver/go.mod @@ -8,11 +8,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/winperfcounters v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -41,11 +41,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/activedirectorydsreceiver/go.sum b/receiver/activedirectorydsreceiver/go.sum index 8b6bd310e1fb..04b91ca105ba 100644 --- a/receiver/activedirectorydsreceiver/go.sum +++ b/receiver/activedirectorydsreceiver/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,20 +64,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/aerospikereceiver/go.mod b/receiver/aerospikereceiver/go.mod index bc209b0a8c49..2b929042a7e1 100644 --- a/receiver/aerospikereceiver/go.mod +++ b/receiver/aerospikereceiver/go.mod @@ -10,13 +10,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -72,7 +72,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -83,8 +83,8 @@ require ( github.com/tklauser/numcpus v0.6.1 // indirect github.com/yuin/gopher-lua v0.0.0-20220504180219-658193537a64 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/aerospikereceiver/go.sum b/receiver/aerospikereceiver/go.sum index 9ff14afaf5a1..c1471c3f76b0 100644 --- a/receiver/aerospikereceiver/go.sum +++ b/receiver/aerospikereceiver/go.sum @@ -122,8 +122,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -162,24 +162,26 @@ github.com/yuin/gopher-lua v0.0.0-20220504180219-658193537a64 h1:5mLPGnFdSsevFRF github.com/yuin/gopher-lua v0.0.0-20220504180219-658193537a64/go.mod h1:GBR0iDaNXjAgGg9zfCvksxSRnQx76gclCIb7kdAd1Pw= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/apachereceiver/go.mod b/receiver/apachereceiver/go.mod index 7676b470f0ad..35b26252ed19 100644 --- a/receiver/apachereceiver/go.mod +++ b/receiver/apachereceiver/go.mod @@ -9,13 +9,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -72,7 +72,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -82,15 +82,15 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/apachereceiver/go.sum b/receiver/apachereceiver/go.sum index c0f1a54ec2d0..c6a14858f9f3 100644 --- a/receiver/apachereceiver/go.sum +++ b/receiver/apachereceiver/go.sum @@ -116,8 +116,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -155,38 +155,40 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/apachereceiver/scraper.go b/receiver/apachereceiver/scraper.go index 409d701e756e..daf878a8829e 100644 --- a/receiver/apachereceiver/scraper.go +++ b/receiver/apachereceiver/scraper.go @@ -48,8 +48,8 @@ func newApacheScraper( return a } -func (r *apacheScraper) start(_ context.Context, host component.Host) error { - httpClient, err := r.cfg.ToClient(host, r.settings) +func (r *apacheScraper) start(ctx context.Context, host component.Host) error { + httpClient, err := r.cfg.ToClientContext(ctx, host, r.settings) if err != nil { return err } diff --git a/receiver/apachesparkreceiver/client.go b/receiver/apachesparkreceiver/client.go index dedcd95f6944..e3641f6cbabe 100644 --- a/receiver/apachesparkreceiver/client.go +++ b/receiver/apachesparkreceiver/client.go @@ -4,6 +4,7 @@ package apachesparkreceiver // import "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/apachesparkreceiver" import ( + "context" "encoding/json" "fmt" "io" @@ -39,8 +40,8 @@ type apacheSparkClient struct { } // newApacheSparkClient creates a new client to make requests for the Apache Spark receiver. -func newApacheSparkClient(cfg *Config, host component.Host, settings component.TelemetrySettings) (client, error) { - client, err := cfg.ToClient(host, settings) +func newApacheSparkClient(ctx context.Context, cfg *Config, host component.Host, settings component.TelemetrySettings) (client, error) { + client, err := cfg.ToClientContext(ctx, host, settings) if err != nil { return nil, fmt.Errorf("failed to create HTTP Client: %w", err) } diff --git a/receiver/apachesparkreceiver/client_test.go b/receiver/apachesparkreceiver/client_test.go index 655c17ecd3b5..7c81b31322e7 100644 --- a/receiver/apachesparkreceiver/client_test.go +++ b/receiver/apachesparkreceiver/client_test.go @@ -4,6 +4,7 @@ package apachesparkreceiver import ( + "context" "encoding/json" "net/http" "net/http/httptest" @@ -50,7 +51,7 @@ func TestNewApacheSparkClient(t *testing.T) { for _, tc := range testCases { t.Run(tc.desc, func(t *testing.T) { - ac, err := newApacheSparkClient(tc.cfg, tc.host, tc.settings) + ac, err := newApacheSparkClient(context.Background(), tc.cfg, tc.host, tc.settings) if tc.expectError != nil { require.Nil(t, ac) require.Contains(t, err.Error(), tc.expectError.Error()) @@ -487,7 +488,7 @@ func createTestClient(t *testing.T, baseEndpoint string) client { cfg := createDefaultConfig().(*Config) cfg.Endpoint = baseEndpoint - testClient, err := newApacheSparkClient(cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings()) + testClient, err := newApacheSparkClient(context.Background(), cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings()) require.NoError(t, err) return testClient } diff --git a/receiver/apachesparkreceiver/go.mod b/receiver/apachesparkreceiver/go.mod index 26b48e320569..75012af46aa5 100644 --- a/receiver/apachesparkreceiver/go.mod +++ b/receiver/apachesparkreceiver/go.mod @@ -9,12 +9,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -71,7 +71,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -82,16 +82,16 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/apachesparkreceiver/go.sum b/receiver/apachesparkreceiver/go.sum index 32bcc0a715bc..2fd15f25b1f6 100644 --- a/receiver/apachesparkreceiver/go.sum +++ b/receiver/apachesparkreceiver/go.sum @@ -116,8 +116,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -156,38 +156,40 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/apachesparkreceiver/scraper.go b/receiver/apachesparkreceiver/scraper.go index c57b9fd81b66..ae4326b38996 100644 --- a/receiver/apachesparkreceiver/scraper.go +++ b/receiver/apachesparkreceiver/scraper.go @@ -42,8 +42,8 @@ func newSparkScraper(logger *zap.Logger, cfg *Config, settings receiver.CreateSe } } -func (s *sparkScraper) start(_ context.Context, host component.Host) (err error) { - httpClient, err := newApacheSparkClient(s.config, host, s.settings) +func (s *sparkScraper) start(ctx context.Context, host component.Host) (err error) { + httpClient, err := newApacheSparkClient(ctx, s.config, host, s.settings) if err != nil { return fmt.Errorf("failed to start: %w", err) } diff --git a/receiver/awscloudwatchmetricsreceiver/go.mod b/receiver/awscloudwatchmetricsreceiver/go.mod index 2e0cc24a88dd..513a6dc36098 100644 --- a/receiver/awscloudwatchmetricsreceiver/go.mod +++ b/receiver/awscloudwatchmetricsreceiver/go.mod @@ -4,10 +4,10 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -34,11 +34,11 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/awscloudwatchmetricsreceiver/go.sum b/receiver/awscloudwatchmetricsreceiver/go.sum index 2dee1e0ee992..ea375b6e307d 100644 --- a/receiver/awscloudwatchmetricsreceiver/go.sum +++ b/receiver/awscloudwatchmetricsreceiver/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -65,19 +65,20 @@ github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8 github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opentelemetry.io/collector v0.97.0 h1:qyOju13byHIKEK/JehmTiGMj4pFLa4kDyrOCtTmjHU0= -go.opentelemetry.io/collector v0.97.0/go.mod h1:V6xquYAaO2VHVu4DBK28JYuikRdZajh7DH5Vl/Y8NiA= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/awscloudwatchreceiver/go.mod b/receiver/awscloudwatchreceiver/go.mod index 7460bf154357..ceccf6e76045 100644 --- a/receiver/awscloudwatchreceiver/go.mod +++ b/receiver/awscloudwatchreceiver/go.mod @@ -7,11 +7,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -40,11 +40,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/awscloudwatchreceiver/go.sum b/receiver/awscloudwatchreceiver/go.sum index 514cf4574546..82076ecdb7ca 100644 --- a/receiver/awscloudwatchreceiver/go.sum +++ b/receiver/awscloudwatchreceiver/go.sum @@ -56,8 +56,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -73,19 +73,20 @@ github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8 github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opentelemetry.io/collector v0.97.0 h1:qyOju13byHIKEK/JehmTiGMj4pFLa4kDyrOCtTmjHU0= -go.opentelemetry.io/collector v0.97.0/go.mod h1:V6xquYAaO2VHVu4DBK28JYuikRdZajh7DH5Vl/Y8NiA= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/awscontainerinsightreceiver/go.mod b/receiver/awscontainerinsightreceiver/go.mod index d00c87886cc6..33fc473d8a05 100644 --- a/receiver/awscontainerinsightreceiver/go.mod +++ b/receiver/awscontainerinsightreceiver/go.mod @@ -13,12 +13,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/kubelet v0.97.0 github.com/shirou/gopsutil/v3 v3.24.3 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -101,7 +101,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -116,16 +116,16 @@ require ( github.com/vishvananda/netlink v1.1.1-0.20201029203352-d40f9887b852 // indirect github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/awscontainerinsightreceiver/go.sum b/receiver/awscontainerinsightreceiver/go.sum index 337623cc586a..195ae2ba3432 100644 --- a/receiver/awscontainerinsightreceiver/go.sum +++ b/receiver/awscontainerinsightreceiver/go.sum @@ -326,8 +326,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= @@ -392,38 +392,40 @@ go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/awscontainerinsightreceiver/internal/ecsInfo/ecsinfo.go b/receiver/awscontainerinsightreceiver/internal/ecsInfo/ecsinfo.go index 56d63bc1990b..83b81ae1d2a9 100644 --- a/receiver/awscontainerinsightreceiver/internal/ecsInfo/ecsinfo.go +++ b/receiver/awscontainerinsightreceiver/internal/ecsInfo/ecsinfo.go @@ -83,16 +83,16 @@ func NewECSInfo(refreshInterval time.Duration, hostIPProvider hostIPProvider, ho setting := confighttp.ClientConfig{ Timeout: defaultTimeout, } + ctx, cancel := context.WithCancel(context.Background()) - client, err := setting.ToClient(host, settings) + client, err := setting.ToClientContext(ctx, host, settings) if err != nil { settings.Logger.Warn("Failed to create a http client for ECS info!") + cancel() return nil, err } - ctx, cancel := context.WithCancel(context.Background()) - ecsInfo := &EcsInfo{ logger: settings.Logger, hostIPProvider: hostIPProvider, diff --git a/receiver/awsecscontainermetricsreceiver/go.mod b/receiver/awsecscontainermetricsreceiver/go.mod index 4a59cef69a41..90118d014847 100644 --- a/receiver/awsecscontainermetricsreceiver/go.mod +++ b/receiver/awsecscontainermetricsreceiver/go.mod @@ -7,13 +7,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/ecsutil v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -45,20 +45,20 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/awsecscontainermetricsreceiver/go.sum b/receiver/awsecscontainermetricsreceiver/go.sum index 10c37ffe6ae9..9a078d707c9e 100644 --- a/receiver/awsecscontainermetricsreceiver/go.sum +++ b/receiver/awsecscontainermetricsreceiver/go.sum @@ -64,8 +64,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -80,40 +80,42 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/awsfirehosereceiver/go.mod b/receiver/awsfirehosereceiver/go.mod index b4bf7907fb7f..78c8c06bd822 100644 --- a/receiver/awsfirehosereceiver/go.mod +++ b/receiver/awsfirehosereceiver/go.mod @@ -5,15 +5,15 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -45,18 +45,18 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/awsfirehosereceiver/go.sum b/receiver/awsfirehosereceiver/go.sum index 59cbcdfee997..ba8d3d1c9749 100644 --- a/receiver/awsfirehosereceiver/go.sum +++ b/receiver/awsfirehosereceiver/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -76,40 +76,42 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/awsfirehosereceiver/receiver.go b/receiver/awsfirehosereceiver/receiver.go index 7d99659b0d3a..887e67969912 100644 --- a/receiver/awsfirehosereceiver/receiver.go +++ b/receiver/awsfirehosereceiver/receiver.go @@ -105,19 +105,19 @@ var _ http.Handler = (*firehoseReceiver)(nil) // Start spins up the receiver's HTTP server and makes the receiver start // its processing. -func (fmr *firehoseReceiver) Start(_ context.Context, host component.Host) error { +func (fmr *firehoseReceiver) Start(ctx context.Context, host component.Host) error { if host == nil { return errMissingHost } var err error - fmr.server, err = fmr.config.ServerConfig.ToServer(host, fmr.settings.TelemetrySettings, fmr) + fmr.server, err = fmr.config.ServerConfig.ToServerContext(ctx, host, fmr.settings.TelemetrySettings, fmr) if err != nil { return err } var listener net.Listener - listener, err = fmr.config.ServerConfig.ToListener() + listener, err = fmr.config.ServerConfig.ToListenerContext(ctx) if err != nil { return err } diff --git a/receiver/awss3receiver/go.mod b/receiver/awss3receiver/go.mod index 67f833de0ad0..7ea7c7909a23 100644 --- a/receiver/awss3receiver/go.mod +++ b/receiver/awss3receiver/go.mod @@ -4,10 +4,10 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -35,11 +35,11 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/awss3receiver/go.sum b/receiver/awss3receiver/go.sum index 2dee1e0ee992..ea375b6e307d 100644 --- a/receiver/awss3receiver/go.sum +++ b/receiver/awss3receiver/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -65,19 +65,20 @@ github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8 github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opentelemetry.io/collector v0.97.0 h1:qyOju13byHIKEK/JehmTiGMj4pFLa4kDyrOCtTmjHU0= -go.opentelemetry.io/collector v0.97.0/go.mod h1:V6xquYAaO2VHVu4DBK28JYuikRdZajh7DH5Vl/Y8NiA= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/awsxrayreceiver/go.mod b/receiver/awsxrayreceiver/go.mod index de1cb58e9719..29ca83517539 100644 --- a/receiver/awsxrayreceiver/go.mod +++ b/receiver/awsxrayreceiver/go.mod @@ -12,14 +12,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -50,13 +50,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/awsxrayreceiver/go.sum b/receiver/awsxrayreceiver/go.sum index 7301b446cdad..d80f64c9c2b1 100644 --- a/receiver/awsxrayreceiver/go.sum +++ b/receiver/awsxrayreceiver/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -76,30 +76,32 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/azureblobreceiver/go.mod b/receiver/azureblobreceiver/go.mod index 61a0346e732d..52b52481af3b 100644 --- a/receiver/azureblobreceiver/go.mod +++ b/receiver/azureblobreceiver/go.mod @@ -7,12 +7,12 @@ require ( github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2 github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -64,7 +64,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -77,21 +77,22 @@ require ( github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/propagators/b3 v1.24.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/receiver/azureblobreceiver/go.sum b/receiver/azureblobreceiver/go.sum index 7199572edf66..58fe2267ca97 100644 --- a/receiver/azureblobreceiver/go.sum +++ b/receiver/azureblobreceiver/go.sum @@ -170,8 +170,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -214,54 +214,56 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= go.opentelemetry.io/collector/config/confignet v0.97.0 h1:KJjv10/YVMslSSLVWW/IIjpLM3JiO3rWvw5dK/t1H7g= go.opentelemetry.io/collector/config/confignet v0.97.0/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= go.opentelemetry.io/collector/config/configretry v0.97.0 h1:k7VwQ5H0oBLm6Fgm0ltfDDbmQVsiqSIY9ojijF0hiR0= go.opentelemetry.io/collector/config/configretry v0.97.0/go.mod h1:s7A6ZGxK8bxqidFzwbr2pITzbsB2qf+aeHEDQDcanV8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/propagators/b3 v1.24.0 h1:n4xwCdTx3pZqZs2CjS/CUZAs03y3dZcGhC/FepKtEUY= diff --git a/receiver/azureeventhubreceiver/go.mod b/receiver/azureeventhubreceiver/go.mod index bd770c72bebf..f6f4ea357adb 100644 --- a/receiver/azureeventhubreceiver/go.mod +++ b/receiver/azureeventhubreceiver/go.mod @@ -11,14 +11,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/azure v0.97.0 github.com/relvacode/iso8601 v1.4.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -69,7 +69,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -81,19 +81,20 @@ require ( github.com/valyala/fastjson v1.6.4 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/propagators/b3 v1.24.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/receiver/azureeventhubreceiver/go.sum b/receiver/azureeventhubreceiver/go.sum index 6a232ca6d514..45aa127396e6 100644 --- a/receiver/azureeventhubreceiver/go.sum +++ b/receiver/azureeventhubreceiver/go.sum @@ -154,8 +154,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -203,54 +203,56 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= go.opentelemetry.io/collector/config/confignet v0.97.0 h1:KJjv10/YVMslSSLVWW/IIjpLM3JiO3rWvw5dK/t1H7g= go.opentelemetry.io/collector/config/confignet v0.97.0/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= go.opentelemetry.io/collector/config/configretry v0.97.0 h1:k7VwQ5H0oBLm6Fgm0ltfDDbmQVsiqSIY9ojijF0hiR0= go.opentelemetry.io/collector/config/configretry v0.97.0/go.mod h1:s7A6ZGxK8bxqidFzwbr2pITzbsB2qf+aeHEDQDcanV8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/propagators/b3 v1.24.0 h1:n4xwCdTx3pZqZs2CjS/CUZAs03y3dZcGhC/FepKtEUY= diff --git a/receiver/azuremonitorreceiver/go.mod b/receiver/azuremonitorreceiver/go.mod index 597b15aea7e5..38fe0c9dd4ea 100644 --- a/receiver/azuremonitorreceiver/go.mod +++ b/receiver/azuremonitorreceiver/go.mod @@ -11,11 +11,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -49,11 +49,11 @@ require ( github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/azuremonitorreceiver/go.sum b/receiver/azuremonitorreceiver/go.sum index 7817673d8769..d1cbe45854ba 100644 --- a/receiver/azuremonitorreceiver/go.sum +++ b/receiver/azuremonitorreceiver/go.sum @@ -74,8 +74,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -88,20 +88,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/bigipreceiver/client.go b/receiver/bigipreceiver/client.go index 6e54d8102b81..79db6404c9a4 100644 --- a/receiver/bigipreceiver/client.go +++ b/receiver/bigipreceiver/client.go @@ -75,8 +75,8 @@ type bigipCredentials struct { var _ client = (*bigipClient)(nil) // newClient creates an initialized client (but with no token) -func newClient(cfg *Config, host component.Host, settings component.TelemetrySettings, logger *zap.Logger) (client, error) { - httpClient, err := cfg.ToClient(host, settings) +func newClient(ctx context.Context, cfg *Config, host component.Host, settings component.TelemetrySettings, logger *zap.Logger) (client, error) { + httpClient, err := cfg.ToClientContext(ctx, host, settings) if err != nil { return nil, fmt.Errorf("failed to create HTTP Client: %w", err) } diff --git a/receiver/bigipreceiver/client_test.go b/receiver/bigipreceiver/client_test.go index 7dceb010524f..417a06aca706 100644 --- a/receiver/bigipreceiver/client_test.go +++ b/receiver/bigipreceiver/client_test.go @@ -79,7 +79,7 @@ func TestNewClient(t *testing.T) { for _, tc := range testCase { t.Run(tc.desc, func(t *testing.T) { - ac, err := newClient(tc.cfg, tc.host, tc.settings, tc.logger) + ac, err := newClient(context.Background(), tc.cfg, tc.host, tc.settings, tc.logger) if tc.expectError != nil { require.Nil(t, ac) require.Contains(t, err.Error(), tc.expectError.Error()) @@ -722,7 +722,7 @@ func createTestClient(t *testing.T, baseEndpoint string) client { cfg := createDefaultConfig().(*Config) cfg.Endpoint = baseEndpoint - testClient, err := newClient(cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings(), zap.NewNop()) + testClient, err := newClient(context.Background(), cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings(), zap.NewNop()) require.NoError(t, err) return testClient } diff --git a/receiver/bigipreceiver/go.mod b/receiver/bigipreceiver/go.mod index 809d044d62c0..462619b45e48 100644 --- a/receiver/bigipreceiver/go.mod +++ b/receiver/bigipreceiver/go.mod @@ -8,14 +8,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -73,7 +73,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -85,14 +85,14 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/bigipreceiver/go.sum b/receiver/bigipreceiver/go.sum index 32bcc0a715bc..2fd15f25b1f6 100644 --- a/receiver/bigipreceiver/go.sum +++ b/receiver/bigipreceiver/go.sum @@ -116,8 +116,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -156,38 +156,40 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/bigipreceiver/scraper.go b/receiver/bigipreceiver/scraper.go index 3cab537f2a9e..3922170bb841 100644 --- a/receiver/bigipreceiver/scraper.go +++ b/receiver/bigipreceiver/scraper.go @@ -47,8 +47,8 @@ func newScraper(logger *zap.Logger, cfg *Config, settings receiver.CreateSetting } // start initializes a new big-ip client for the scraper -func (s *bigipScraper) start(_ context.Context, host component.Host) (err error) { - s.client, err = newClient(s.cfg, host, s.settings, s.logger) +func (s *bigipScraper) start(ctx context.Context, host component.Host) (err error) { + s.client, err = newClient(ctx, s.cfg, host, s.settings, s.logger) return } diff --git a/receiver/carbonreceiver/go.mod b/receiver/carbonreceiver/go.mod index 4b38d638e73f..807d63e86d17 100644 --- a/receiver/carbonreceiver/go.mod +++ b/receiver/carbonreceiver/go.mod @@ -5,12 +5,12 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/sdk v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 @@ -39,12 +39,12 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect diff --git a/receiver/carbonreceiver/go.sum b/receiver/carbonreceiver/go.sum index 49239e747fbd..d1387edb8d80 100644 --- a/receiver/carbonreceiver/go.sum +++ b/receiver/carbonreceiver/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -66,24 +66,26 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/chronyreceiver/go.mod b/receiver/chronyreceiver/go.mod index d1472ab70c78..ec6ec9a8a766 100644 --- a/receiver/chronyreceiver/go.mod +++ b/receiver/chronyreceiver/go.mod @@ -7,11 +7,11 @@ require ( github.com/google/go-cmp v0.6.0 github.com/stretchr/testify v1.9.0 github.com/tilinna/clock v1.1.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -39,13 +39,13 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/sirupsen/logrus v1.8.1 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/chronyreceiver/go.sum b/receiver/chronyreceiver/go.sum index 75b2d67dc81c..66db5fbae7e2 100644 --- a/receiver/chronyreceiver/go.sum +++ b/receiver/chronyreceiver/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -73,20 +73,22 @@ github.com/tilinna/clock v1.1.0 h1:6IQQQCo6KoBxVudv6gwtY8o4eDfhHo8ojA5dP0MfhSs= github.com/tilinna/clock v1.1.0/go.mod h1:ZsP7BcY7sEEz7ktc0IVy8Us6boDrK8VradlKRUGfOao= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/cloudflarereceiver/go.mod b/receiver/cloudflarereceiver/go.mod index d8d06483a82d..cf94f4d0287f 100644 --- a/receiver/cloudflarereceiver/go.mod +++ b/receiver/cloudflarereceiver/go.mod @@ -7,12 +7,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -43,12 +43,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/cloudflarereceiver/go.sum b/receiver/cloudflarereceiver/go.sum index a391081d2fa2..afe5e14c3df8 100644 --- a/receiver/cloudflarereceiver/go.sum +++ b/receiver/cloudflarereceiver/go.sum @@ -54,8 +54,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -69,25 +69,26 @@ github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8 github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opentelemetry.io/collector v0.97.0 h1:qyOju13byHIKEK/JehmTiGMj4pFLa4kDyrOCtTmjHU0= -go.opentelemetry.io/collector v0.97.0/go.mod h1:V6xquYAaO2VHVu4DBK28JYuikRdZajh7DH5Vl/Y8NiA= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/cloudfoundryreceiver/go.mod b/receiver/cloudfoundryreceiver/go.mod index 4bdeaa0b4d96..03930dbde101 100644 --- a/receiver/cloudfoundryreceiver/go.mod +++ b/receiver/cloudfoundryreceiver/go.mod @@ -6,14 +6,14 @@ require ( code.cloudfoundry.org/go-loggregator v7.4.0+incompatible github.com/cloudfoundry-incubator/uaago v0.0.0-20190307164349-8136b7bbe76e github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -49,18 +49,18 @@ require ( github.com/onsi/gomega v1.17.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/cloudfoundryreceiver/go.sum b/receiver/cloudfoundryreceiver/go.sum index 1d0024b27497..fcb451476fd6 100644 --- a/receiver/cloudfoundryreceiver/go.sum +++ b/receiver/cloudfoundryreceiver/go.sum @@ -97,8 +97,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -114,38 +114,40 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/cloudfoundryreceiver/receiver.go b/receiver/cloudfoundryreceiver/receiver.go index 45d0a18ec159..c2030948edac 100644 --- a/receiver/cloudfoundryreceiver/receiver.go +++ b/receiver/cloudfoundryreceiver/receiver.go @@ -68,6 +68,7 @@ func (cfr *cloudFoundryReceiver) Start(ctx context.Context, host component.Host) } streamFactory, streamErr := newEnvelopeStreamFactory( + ctx, cfr.settings, tokenProvider, cfr.config.RLPGateway.ClientConfig, diff --git a/receiver/cloudfoundryreceiver/stream.go b/receiver/cloudfoundryreceiver/stream.go index a5e070272cdd..598556078f4c 100644 --- a/receiver/cloudfoundryreceiver/stream.go +++ b/receiver/cloudfoundryreceiver/stream.go @@ -22,12 +22,13 @@ type EnvelopeStreamFactory struct { } func newEnvelopeStreamFactory( + ctx context.Context, settings component.TelemetrySettings, authTokenProvider *UAATokenProvider, httpConfig confighttp.ClientConfig, host component.Host) (*EnvelopeStreamFactory, error) { - httpClient, err := httpConfig.ToClient(host, settings) + httpClient, err := httpConfig.ToClientContext(ctx, host, settings) if err != nil { return nil, fmt.Errorf("creating HTTP client for Cloud Foundry RLP Gateway: %w", err) } diff --git a/receiver/cloudfoundryreceiver/stream_test.go b/receiver/cloudfoundryreceiver/stream_test.go index c146121f26bd..95dac0f6c445 100644 --- a/receiver/cloudfoundryreceiver/stream_test.go +++ b/receiver/cloudfoundryreceiver/stream_test.go @@ -27,6 +27,7 @@ func TestValidStream(t *testing.T) { require.NotNil(t, uaa) streamFactory, streamErr := newEnvelopeStreamFactory( + context.Background(), componenttest.NewNopTelemetrySettings(), uaa, cfg.RLPGateway.ClientConfig, @@ -64,6 +65,7 @@ func TestInvalidStream(t *testing.T) { // Stream create should fail if given empty shard ID streamFactory, streamErr := newEnvelopeStreamFactory( + context.Background(), componenttest.NewNopTelemetrySettings(), uaa, cfg.RLPGateway.ClientConfig, diff --git a/receiver/collectdreceiver/go.mod b/receiver/collectdreceiver/go.mod index 2b96c7e00591..54ad26a44719 100644 --- a/receiver/collectdreceiver/go.mod +++ b/receiver/collectdreceiver/go.mod @@ -8,12 +8,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -46,20 +46,20 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/collectdreceiver/go.sum b/receiver/collectdreceiver/go.sum index b697150c1b09..49216b2ded0d 100644 --- a/receiver/collectdreceiver/go.sum +++ b/receiver/collectdreceiver/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -76,38 +76,40 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/collectdreceiver/receiver.go b/receiver/collectdreceiver/receiver.go index 0cb8a352c177..1593fd4fbfc0 100644 --- a/receiver/collectdreceiver/receiver.go +++ b/receiver/collectdreceiver/receiver.go @@ -53,9 +53,9 @@ func newCollectdReceiver( } // Start starts an HTTP server that can process CollectD JSON requests. -func (cdr *collectdReceiver) Start(_ context.Context, host component.Host) error { +func (cdr *collectdReceiver) Start(ctx context.Context, host component.Host) error { var err error - cdr.server, err = cdr.config.ServerConfig.ToServer(host, cdr.createSettings.TelemetrySettings, cdr) + cdr.server, err = cdr.config.ServerConfig.ToServerContext(ctx, host, cdr.createSettings.TelemetrySettings, cdr) if err != nil { return err } @@ -69,7 +69,7 @@ func (cdr *collectdReceiver) Start(_ context.Context, host component.Host) error if err != nil { return err } - l, err := cdr.config.ServerConfig.ToListener() + l, err := cdr.config.ServerConfig.ToListenerContext(ctx) if err != nil { return err } diff --git a/receiver/couchdbreceiver/client.go b/receiver/couchdbreceiver/client.go index a23a5d967a71..6394f07d675b 100644 --- a/receiver/couchdbreceiver/client.go +++ b/receiver/couchdbreceiver/client.go @@ -4,6 +4,7 @@ package couchdbreceiver // import "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/couchdbreceiver" import ( + "context" "encoding/json" "fmt" "io" @@ -29,8 +30,8 @@ type couchDBClient struct { } // newCouchDBClient creates a new client to make requests for the CouchDB receiver. -func newCouchDBClient(cfg *Config, host component.Host, settings component.TelemetrySettings) (client, error) { - client, err := cfg.ToClient(host, settings) +func newCouchDBClient(ctx context.Context, cfg *Config, host component.Host, settings component.TelemetrySettings) (client, error) { + client, err := cfg.ToClientContext(ctx, host, settings) if err != nil { return nil, fmt.Errorf("failed to create HTTP Client: %w", err) } diff --git a/receiver/couchdbreceiver/client_test.go b/receiver/couchdbreceiver/client_test.go index 6708f5f03c3e..2e7169e70d14 100644 --- a/receiver/couchdbreceiver/client_test.go +++ b/receiver/couchdbreceiver/client_test.go @@ -4,6 +4,7 @@ package couchdbreceiver // import "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/couchdbreceiver" import ( + "context" "net/http" "net/http/httptest" "strings" @@ -21,6 +22,7 @@ func defaultClient(t *testing.T, endpoint string) client { cfg.Endpoint = endpoint couchdbClient, err := newCouchDBClient( + context.Background(), cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings()) @@ -32,6 +34,7 @@ func defaultClient(t *testing.T, endpoint string) client { func TestNewCouchDBClient(t *testing.T) { t.Run("Invalid config", func(t *testing.T) { couchdbClient, err := newCouchDBClient( + context.Background(), &Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: defaultEndpoint, @@ -108,6 +111,7 @@ func TestGet(t *testing.T) { t.Run("401 Unauthorized", func(t *testing.T) { url := ts.URL + "/_node/_local/_stats/couchdb" couchdbClient, err := newCouchDBClient( + context.Background(), &Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: url, diff --git a/receiver/couchdbreceiver/go.mod b/receiver/couchdbreceiver/go.mod index 7765be8064f4..e495ddcb1518 100644 --- a/receiver/couchdbreceiver/go.mod +++ b/receiver/couchdbreceiver/go.mod @@ -7,14 +7,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -48,19 +48,19 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/couchdbreceiver/go.sum b/receiver/couchdbreceiver/go.sum index 9d0b8acf5ade..fd56f34b0307 100644 --- a/receiver/couchdbreceiver/go.sum +++ b/receiver/couchdbreceiver/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -78,38 +78,40 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/couchdbreceiver/scraper.go b/receiver/couchdbreceiver/scraper.go index 0572e9a700a9..b5bd34135200 100644 --- a/receiver/couchdbreceiver/scraper.go +++ b/receiver/couchdbreceiver/scraper.go @@ -34,8 +34,8 @@ func newCouchdbScraper(settings receiver.CreateSettings, config *Config) *couchd } } -func (c *couchdbScraper) start(_ context.Context, host component.Host) error { - httpClient, err := newCouchDBClient(c.config, host, c.settings) +func (c *couchdbScraper) start(ctx context.Context, host component.Host) error { + httpClient, err := newCouchDBClient(ctx, c.config, host, c.settings) if err != nil { return fmt.Errorf("failed to start: %w", err) } diff --git a/receiver/datadogreceiver/go.mod b/receiver/datadogreceiver/go.mod index a0d84f7cdde2..dfb66827e021 100644 --- a/receiver/datadogreceiver/go.mod +++ b/receiver/datadogreceiver/go.mod @@ -7,13 +7,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent v0.97.0 github.com/stretchr/testify v1.9.0 github.com/vmihailenco/msgpack/v4 v4.3.13 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -47,22 +47,22 @@ require ( github.com/philhofer/fwd v1.1.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/tinylib/msgp v1.1.9 // indirect github.com/vmihailenco/tagparser v0.1.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/datadogreceiver/go.sum b/receiver/datadogreceiver/go.sum index 588b68a69752..e17d274288d2 100644 --- a/receiver/datadogreceiver/go.sum +++ b/receiver/datadogreceiver/go.sum @@ -72,8 +72,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -96,40 +96,42 @@ github.com/vmihailenco/tagparser v0.1.2/go.mod h1:OeAg3pn3UbLjkWt+rN9oFYB6u/cQgq github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/datadogreceiver/receiver.go b/receiver/datadogreceiver/receiver.go index f0a40f46560f..977388a5cddd 100644 --- a/receiver/datadogreceiver/receiver.go +++ b/receiver/datadogreceiver/receiver.go @@ -43,7 +43,7 @@ func newDataDogReceiver(config *Config, nextConsumer consumer.Traces, params rec }, nil } -func (ddr *datadogReceiver) Start(_ context.Context, host component.Host) error { +func (ddr *datadogReceiver) Start(ctx context.Context, host component.Host) error { ddmux := http.NewServeMux() ddmux.HandleFunc("/v0.3/traces", ddr.handleTraces) ddmux.HandleFunc("/v0.4/traces", ddr.handleTraces) @@ -52,7 +52,8 @@ func (ddr *datadogReceiver) Start(_ context.Context, host component.Host) error ddmux.HandleFunc("/api/v0.2/traces", ddr.handleTraces) var err error - ddr.server, err = ddr.config.ServerConfig.ToServer( + ddr.server, err = ddr.config.ServerConfig.ToServerContext( + ctx, host, ddr.params.TelemetrySettings, ddmux, @@ -60,7 +61,7 @@ func (ddr *datadogReceiver) Start(_ context.Context, host component.Host) error if err != nil { return fmt.Errorf("failed to create server definition: %w", err) } - hln, err := ddr.config.ServerConfig.ToListener() + hln, err := ddr.config.ServerConfig.ToListenerContext(ctx) if err != nil { return fmt.Errorf("failed to create datadog listener: %w", err) } diff --git a/receiver/dockerstatsreceiver/go.mod b/receiver/dockerstatsreceiver/go.mod index 79d534a713a9..d3b71c445c2d 100644 --- a/receiver/dockerstatsreceiver/go.mod +++ b/receiver/dockerstatsreceiver/go.mod @@ -10,12 +10,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -70,7 +70,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -79,8 +79,8 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/dockerstatsreceiver/go.sum b/receiver/dockerstatsreceiver/go.sum index 85395cd61edc..a5f5e75976d4 100644 --- a/receiver/dockerstatsreceiver/go.sum +++ b/receiver/dockerstatsreceiver/go.sum @@ -112,8 +112,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -149,22 +149,24 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/elasticsearchreceiver/client.go b/receiver/elasticsearchreceiver/client.go index 954e71993d25..00dfa0661782 100644 --- a/receiver/elasticsearchreceiver/client.go +++ b/receiver/elasticsearchreceiver/client.go @@ -48,8 +48,8 @@ type defaultElasticsearchClient struct { var _ elasticsearchClient = (*defaultElasticsearchClient)(nil) -func newElasticsearchClient(settings component.TelemetrySettings, c Config, h component.Host) (*defaultElasticsearchClient, error) { - client, err := c.ClientConfig.ToClient(h, settings) +func newElasticsearchClient(ctx context.Context, settings component.TelemetrySettings, c Config, h component.Host) (*defaultElasticsearchClient, error) { + client, err := c.ClientConfig.ToClientContext(ctx, h, settings) if err != nil { return nil, err } diff --git a/receiver/elasticsearchreceiver/client_test.go b/receiver/elasticsearchreceiver/client_test.go index 452a7c0172cd..bf0af5f81645 100644 --- a/receiver/elasticsearchreceiver/client_test.go +++ b/receiver/elasticsearchreceiver/client_test.go @@ -22,7 +22,7 @@ import ( ) func TestCreateClientInvalidEndpoint(t *testing.T) { - _, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + _, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: "http://\x00", }, @@ -39,7 +39,7 @@ func TestNodeStatsNoPassword(t *testing.T) { elasticsearchMock := newMockServer(t) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -61,7 +61,7 @@ func TestNodeStatsNilNodes(t *testing.T) { elasticsearchMock := newMockServer(t) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -84,7 +84,7 @@ func TestNodeStatsNilIOStats(t *testing.T) { elasticsearchMock := newMockServer(t, withNodes(nodeJSON)) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -110,7 +110,7 @@ func TestNodeStatsAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth(username, password)) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -130,7 +130,7 @@ func TestNodeStatsNoAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth("user", "pass")) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -146,7 +146,7 @@ func TestNodeStatsBadAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth("user", "pass")) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -169,7 +169,7 @@ func TestClusterHealthNoPassword(t *testing.T) { elasticsearchMock := newMockServer(t) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -195,7 +195,7 @@ func TestClusterHealthAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth(username, password)) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -215,7 +215,7 @@ func TestClusterHealthNoAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth("user", "pass")) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -231,7 +231,7 @@ func TestClusterHealthNoAuthorization(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth("user", "pass")) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -254,7 +254,7 @@ func TestMetadataNoPassword(t *testing.T) { elasticsearchMock := newMockServer(t) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -280,7 +280,7 @@ func TestMetadataAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth(username, password)) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -300,7 +300,7 @@ func TestMetadataNoAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth("user", "pass")) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -316,7 +316,7 @@ func TestMetadataNoAuthorization(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth("user", "pass")) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -331,7 +331,7 @@ func TestMetadataNoAuthorization(t *testing.T) { } func TestDoRequestBadPath(t *testing.T) { - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: "http://example.localhost:9200", }, @@ -343,7 +343,7 @@ func TestDoRequestBadPath(t *testing.T) { } func TestDoRequestClientTimeout(t *testing.T) { - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: "http://example.localhost:9200", }, @@ -361,7 +361,7 @@ func TestDoRequest404(t *testing.T) { elasticsearchMock := newMockServer(t) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -382,7 +382,7 @@ func TestIndexStatsNoPassword(t *testing.T) { elasticsearchMock := newMockServer(t) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -404,7 +404,7 @@ func TestIndexStatsNilNodes(t *testing.T) { elasticsearchMock := newMockServer(t) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -430,7 +430,7 @@ func TestIndexStatsAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth(username, password)) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -450,7 +450,7 @@ func TestIndexStatsNoAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth("user", "pass")) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -466,7 +466,7 @@ func TestIndexStatsBadAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth("user", "pass")) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -489,7 +489,7 @@ func TestClusterStatsNoPassword(t *testing.T) { elasticsearchMock := newMockServer(t) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -511,7 +511,7 @@ func TestClusterStatsNilNodes(t *testing.T) { elasticsearchMock := newMockServer(t) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -537,7 +537,7 @@ func TestClusterStatsAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth(username, password)) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -557,7 +557,7 @@ func TestClusterStatsNoAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth("user", "pass")) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, @@ -573,7 +573,7 @@ func TestClusterStatsBadAuthentication(t *testing.T) { elasticsearchMock := newMockServer(t, withBasicAuth("user", "pass")) defer elasticsearchMock.Close() - client, err := newElasticsearchClient(componenttest.NewNopTelemetrySettings(), Config{ + client, err := newElasticsearchClient(context.Background(), componenttest.NewNopTelemetrySettings(), Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: elasticsearchMock.URL, }, diff --git a/receiver/elasticsearchreceiver/go.mod b/receiver/elasticsearchreceiver/go.mod index fb225c1d5e9a..1d949cfe14c4 100644 --- a/receiver/elasticsearchreceiver/go.mod +++ b/receiver/elasticsearchreceiver/go.mod @@ -10,14 +10,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -74,7 +74,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -85,14 +85,14 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/elasticsearchreceiver/go.sum b/receiver/elasticsearchreceiver/go.sum index 32bcc0a715bc..2fd15f25b1f6 100644 --- a/receiver/elasticsearchreceiver/go.sum +++ b/receiver/elasticsearchreceiver/go.sum @@ -116,8 +116,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -156,38 +156,40 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/elasticsearchreceiver/scraper.go b/receiver/elasticsearchreceiver/scraper.go index 9c5850ee699c..570127047036 100644 --- a/receiver/elasticsearchreceiver/scraper.go +++ b/receiver/elasticsearchreceiver/scraper.go @@ -53,8 +53,8 @@ func newElasticSearchScraper( } } -func (r *elasticsearchScraper) start(_ context.Context, host component.Host) (err error) { - r.client, err = newElasticsearchClient(r.settings, *r.cfg, host) +func (r *elasticsearchScraper) start(ctx context.Context, host component.Host) (err error) { + r.client, err = newElasticsearchClient(ctx, r.settings, *r.cfg, host) return } diff --git a/receiver/expvarreceiver/go.mod b/receiver/expvarreceiver/go.mod index ec1497e50ae9..f45a3fbb2a70 100644 --- a/receiver/expvarreceiver/go.mod +++ b/receiver/expvarreceiver/go.mod @@ -7,12 +7,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -45,20 +45,20 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/expvarreceiver/go.sum b/receiver/expvarreceiver/go.sum index b697150c1b09..49216b2ded0d 100644 --- a/receiver/expvarreceiver/go.sum +++ b/receiver/expvarreceiver/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -76,38 +76,40 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/expvarreceiver/scraper.go b/receiver/expvarreceiver/scraper.go index 7fea64fec9b8..f27a41ff1cad 100644 --- a/receiver/expvarreceiver/scraper.go +++ b/receiver/expvarreceiver/scraper.go @@ -40,8 +40,8 @@ func newExpVarScraper(cfg *Config, set receiver.CreateSettings) *expVarScraper { } } -func (e *expVarScraper) start(_ context.Context, host component.Host) error { - client, err := e.cfg.ClientConfig.ToClient(host, e.set.TelemetrySettings) +func (e *expVarScraper) start(ctx context.Context, host component.Host) error { + client, err := e.cfg.ClientConfig.ToClientContext(ctx, host, e.set.TelemetrySettings) if err != nil { return err } diff --git a/receiver/filelogreceiver/go.mod b/receiver/filelogreceiver/go.mod index 859ea6d25e91..b2fd51a46b31 100644 --- a/receiver/filelogreceiver/go.mod +++ b/receiver/filelogreceiver/go.mod @@ -7,11 +7,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -44,14 +44,14 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/valyala/fastjson v1.6.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/filelogreceiver/go.sum b/receiver/filelogreceiver/go.sum index b227592d4c92..0f6547ab0ed3 100644 --- a/receiver/filelogreceiver/go.sum +++ b/receiver/filelogreceiver/go.sum @@ -63,8 +63,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -83,24 +83,26 @@ github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLr github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/filestatsreceiver/go.mod b/receiver/filestatsreceiver/go.mod index 275c289f53db..6d1a7a55fa63 100644 --- a/receiver/filestatsreceiver/go.mod +++ b/receiver/filestatsreceiver/go.mod @@ -8,11 +8,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -68,7 +68,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -78,8 +78,8 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/filestatsreceiver/go.sum b/receiver/filestatsreceiver/go.sum index 9b7733b5a882..ad56225dc3c6 100644 --- a/receiver/filestatsreceiver/go.sum +++ b/receiver/filestatsreceiver/go.sum @@ -112,8 +112,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -149,20 +149,22 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/flinkmetricsreceiver/client.go b/receiver/flinkmetricsreceiver/client.go index 22a3a24e23dc..36b6d49be2ea 100644 --- a/receiver/flinkmetricsreceiver/client.go +++ b/receiver/flinkmetricsreceiver/client.go @@ -54,8 +54,8 @@ type flinkClient struct { logger *zap.Logger } -func newClient(cfg *Config, host component.Host, settings component.TelemetrySettings, logger *zap.Logger) (client, error) { - httpClient, err := cfg.ToClient(host, settings) +func newClient(ctx context.Context, cfg *Config, host component.Host, settings component.TelemetrySettings, logger *zap.Logger) (client, error) { + httpClient, err := cfg.ToClientContext(ctx, host, settings) if err != nil { return nil, fmt.Errorf("failed to create HTTP Client: %w", err) } diff --git a/receiver/flinkmetricsreceiver/client_test.go b/receiver/flinkmetricsreceiver/client_test.go index bf278c777f84..019b8d6c701f 100644 --- a/receiver/flinkmetricsreceiver/client_test.go +++ b/receiver/flinkmetricsreceiver/client_test.go @@ -89,7 +89,7 @@ func TestNewClient(t *testing.T) { for _, tc := range testCase { t.Run(tc.desc, func(t *testing.T) { - ac, err := newClient(tc.cfg, tc.host, tc.settings, tc.logger) + ac, err := newClient(context.Background(), tc.cfg, tc.host, tc.settings, tc.logger) if tc.expectError != nil { require.Nil(t, ac) require.Contains(t, err.Error(), tc.expectError.Error()) @@ -112,7 +112,7 @@ func createTestClient(t *testing.T, baseEndpoint string) client { cfg := createDefaultConfig().(*Config) cfg.Endpoint = baseEndpoint - testClient, err := newClient(cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings(), zap.NewNop()) + testClient, err := newClient(context.Background(), cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings(), zap.NewNop()) require.NoError(t, err) return testClient } diff --git a/receiver/flinkmetricsreceiver/go.mod b/receiver/flinkmetricsreceiver/go.mod index f58640bf1331..92339516a119 100644 --- a/receiver/flinkmetricsreceiver/go.mod +++ b/receiver/flinkmetricsreceiver/go.mod @@ -7,13 +7,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -46,20 +46,20 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/flinkmetricsreceiver/go.sum b/receiver/flinkmetricsreceiver/go.sum index 9d0b8acf5ade..fd56f34b0307 100644 --- a/receiver/flinkmetricsreceiver/go.sum +++ b/receiver/flinkmetricsreceiver/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -78,38 +78,40 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/flinkmetricsreceiver/scraper.go b/receiver/flinkmetricsreceiver/scraper.go index 9306cf1edace..ddc8dc4ead42 100644 --- a/receiver/flinkmetricsreceiver/scraper.go +++ b/receiver/flinkmetricsreceiver/scraper.go @@ -42,8 +42,8 @@ func newflinkScraper(config *Config, settings receiver.CreateSettings) *flinkmet } } -func (s *flinkmetricsScraper) start(_ context.Context, host component.Host) error { - httpClient, err := newClient(s.cfg, host, s.settings, s.settings.Logger) +func (s *flinkmetricsScraper) start(ctx context.Context, host component.Host) error { + httpClient, err := newClient(ctx, s.cfg, host, s.settings, s.settings.Logger) if err != nil { return fmt.Errorf("create client: %w", err) } diff --git a/receiver/fluentforwardreceiver/go.mod b/receiver/fluentforwardreceiver/go.mod index a8b431360033..d2a382c2e1a9 100644 --- a/receiver/fluentforwardreceiver/go.mod +++ b/receiver/fluentforwardreceiver/go.mod @@ -7,11 +7,11 @@ require ( github.com/stretchr/testify v1.9.0 github.com/tinylib/msgp v1.1.9 go.opencensus.io v0.24.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -41,11 +41,11 @@ require ( github.com/philhofer/fwd v1.1.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/fluentforwardreceiver/go.sum b/receiver/fluentforwardreceiver/go.sum index 7031cf69f360..0994c9d8adb8 100644 --- a/receiver/fluentforwardreceiver/go.sum +++ b/receiver/fluentforwardreceiver/go.sum @@ -83,8 +83,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -106,20 +106,22 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/gitproviderreceiver/go.mod b/receiver/gitproviderreceiver/go.mod index d7873fb60805..c35dfc0e1ad0 100644 --- a/receiver/gitproviderreceiver/go.mod +++ b/receiver/gitproviderreceiver/go.mod @@ -7,14 +7,14 @@ require ( github.com/google/go-cmp v0.6.0 github.com/google/go-github/v61 v61.0.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -54,7 +54,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -67,26 +67,27 @@ require ( github.com/vektah/gqlparser/v2 v2.5.11 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/contrib/propagators/b3 v1.24.0 // indirect diff --git a/receiver/gitproviderreceiver/go.sum b/receiver/gitproviderreceiver/go.sum index c21b930763c6..37bfc2c741f6 100644 --- a/receiver/gitproviderreceiver/go.sum +++ b/receiver/gitproviderreceiver/go.sum @@ -115,8 +115,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -161,68 +161,70 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= go.opentelemetry.io/collector/config/confignet v0.97.0 h1:KJjv10/YVMslSSLVWW/IIjpLM3JiO3rWvw5dK/t1H7g= go.opentelemetry.io/collector/config/confignet v0.97.0/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= go.opentelemetry.io/collector/config/configretry v0.97.0 h1:k7VwQ5H0oBLm6Fgm0ltfDDbmQVsiqSIY9ojijF0hiR0= go.opentelemetry.io/collector/config/configretry v0.97.0/go.mod h1:s7A6ZGxK8bxqidFzwbr2pITzbsB2qf+aeHEDQDcanV8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/receiver/gitproviderreceiver/internal/scraper/githubscraper/github_scraper.go b/receiver/gitproviderreceiver/internal/scraper/githubscraper/github_scraper.go index d63c8f30395a..c2c22d8081a7 100644 --- a/receiver/gitproviderreceiver/internal/scraper/githubscraper/github_scraper.go +++ b/receiver/gitproviderreceiver/internal/scraper/githubscraper/github_scraper.go @@ -32,9 +32,9 @@ type githubScraper struct { rb *metadata.ResourceBuilder } -func (ghs *githubScraper) start(_ context.Context, host component.Host) (err error) { +func (ghs *githubScraper) start(ctx context.Context, host component.Host) (err error) { ghs.logger.Sugar().Info("starting the GitHub scraper") - ghs.client, err = ghs.cfg.ToClient(host, ghs.settings) + ghs.client, err = ghs.cfg.ToClientContext(ctx, host, ghs.settings) return } diff --git a/receiver/googlecloudpubsubreceiver/go.mod b/receiver/googlecloudpubsubreceiver/go.mod index a7a5d8356490..779a86b5bb8a 100644 --- a/receiver/googlecloudpubsubreceiver/go.mod +++ b/receiver/googlecloudpubsubreceiver/go.mod @@ -9,12 +9,12 @@ require ( github.com/iancoleman/strcase v0.3.0 github.com/json-iterator/go v1.1.12 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/multierr v1.11.0 @@ -56,15 +56,15 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect go.einride.tech/aip v0.66.0 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/receiver/googlecloudpubsubreceiver/go.sum b/receiver/googlecloudpubsubreceiver/go.sum index d680feb53fe9..a471594763cd 100644 --- a/receiver/googlecloudpubsubreceiver/go.sum +++ b/receiver/googlecloudpubsubreceiver/go.sum @@ -108,8 +108,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -132,26 +132,28 @@ go.einride.tech/aip v0.66.0 h1:XfV+NQX6L7EOYK11yoHHFtndeaWh3KbD9/cN/6iWEt8= go.einride.tech/aip v0.66.0/go.mod h1:qAhMsfT7plxBX+Oy7Huol6YUvZ0ZzdUz26yZsQwfl1M= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/receiver/googlecloudspannerreceiver/go.mod b/receiver/googlecloudspannerreceiver/go.mod index ee6f919eadd4..f439bfd78567 100644 --- a/receiver/googlecloudspannerreceiver/go.mod +++ b/receiver/googlecloudspannerreceiver/go.mod @@ -7,11 +7,11 @@ require ( github.com/ReneKroon/ttlcache/v2 v2.11.0 github.com/mitchellh/hashstructure v1.1.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -57,13 +57,13 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/stretchr/objx v0.5.2 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/receiver/googlecloudspannerreceiver/go.sum b/receiver/googlecloudspannerreceiver/go.sum index 34481b19282e..399f712090f0 100644 --- a/receiver/googlecloudspannerreceiver/go.sum +++ b/receiver/googlecloudspannerreceiver/go.sum @@ -120,8 +120,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -146,20 +146,22 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/receiver/haproxyreceiver/go.mod b/receiver/haproxyreceiver/go.mod index cd717fff2a58..8c43f3dee6f0 100644 --- a/receiver/haproxyreceiver/go.mod +++ b/receiver/haproxyreceiver/go.mod @@ -9,12 +9,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -72,7 +72,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -82,16 +82,16 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/haproxyreceiver/go.sum b/receiver/haproxyreceiver/go.sum index c0f1a54ec2d0..c6a14858f9f3 100644 --- a/receiver/haproxyreceiver/go.sum +++ b/receiver/haproxyreceiver/go.sum @@ -116,8 +116,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -155,38 +155,40 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/haproxyreceiver/scraper.go b/receiver/haproxyreceiver/scraper.go index 1da146589eb0..79457c16248e 100644 --- a/receiver/haproxyreceiver/scraper.go +++ b/receiver/haproxyreceiver/scraper.go @@ -285,9 +285,9 @@ func (s *scraper) readStats(buf []byte) ([]map[string]string, error) { return results, err } -func (s *scraper) start(_ context.Context, host component.Host) error { +func (s *scraper) start(ctx context.Context, host component.Host) error { var err error - s.httpClient, err = s.cfg.ClientConfig.ToClient(host, s.telemetrySettings) + s.httpClient, err = s.cfg.ClientConfig.ToClientContext(ctx, host, s.telemetrySettings) return err } diff --git a/receiver/hostmetricsreceiver/go.mod b/receiver/hostmetricsreceiver/go.mod index c46334ceda97..1f2c892b2c1c 100644 --- a/receiver/hostmetricsreceiver/go.mod +++ b/receiver/hostmetricsreceiver/go.mod @@ -12,14 +12,14 @@ require ( github.com/shirou/gopsutil/v3 v3.24.3 github.com/stretchr/testify v1.9.0 github.com/yusufpapurcu/wmi v1.2.4 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -81,7 +81,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/shoenig/go-m1cpu v0.1.6 // indirect github.com/sirupsen/logrus v1.9.3 // indirect @@ -92,19 +92,20 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/contrib/propagators/b3 v1.24.0 // indirect diff --git a/receiver/hostmetricsreceiver/go.sum b/receiver/hostmetricsreceiver/go.sum index b3a7b8c0e39e..86a264238883 100644 --- a/receiver/hostmetricsreceiver/go.sum +++ b/receiver/hostmetricsreceiver/go.sum @@ -266,8 +266,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= @@ -334,54 +334,56 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= go.opentelemetry.io/collector/config/confignet v0.97.0 h1:KJjv10/YVMslSSLVWW/IIjpLM3JiO3rWvw5dK/t1H7g= go.opentelemetry.io/collector/config/confignet v0.97.0/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= go.opentelemetry.io/collector/config/configretry v0.97.0 h1:k7VwQ5H0oBLm6Fgm0ltfDDbmQVsiqSIY9ojijF0hiR0= go.opentelemetry.io/collector/config/configretry v0.97.0/go.mod h1:s7A6ZGxK8bxqidFzwbr2pITzbsB2qf+aeHEDQDcanV8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= diff --git a/receiver/httpcheckreceiver/go.mod b/receiver/httpcheckreceiver/go.mod index d35f773f25e1..cf25e49123fb 100644 --- a/receiver/httpcheckreceiver/go.mod +++ b/receiver/httpcheckreceiver/go.mod @@ -7,13 +7,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -47,19 +47,19 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/httpcheckreceiver/go.sum b/receiver/httpcheckreceiver/go.sum index b697150c1b09..49216b2ded0d 100644 --- a/receiver/httpcheckreceiver/go.sum +++ b/receiver/httpcheckreceiver/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -76,38 +76,40 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/httpcheckreceiver/scraper.go b/receiver/httpcheckreceiver/scraper.go index 59b467172ea8..de28e55b873c 100644 --- a/receiver/httpcheckreceiver/scraper.go +++ b/receiver/httpcheckreceiver/scraper.go @@ -33,9 +33,9 @@ type httpcheckScraper struct { } // start starts the scraper by creating a new HTTP Client on the scraper -func (h *httpcheckScraper) start(_ context.Context, host component.Host) (err error) { +func (h *httpcheckScraper) start(ctx context.Context, host component.Host) (err error) { for _, target := range h.cfg.Targets { - client, clentErr := target.ToClient(host, h.settings) + client, clentErr := target.ToClientContext(ctx, host, h.settings) if clentErr != nil { err = multierr.Append(err, clentErr) } diff --git a/receiver/iisreceiver/go.mod b/receiver/iisreceiver/go.mod index 378f2c4530b7..6b714c2bc657 100644 --- a/receiver/iisreceiver/go.mod +++ b/receiver/iisreceiver/go.mod @@ -9,11 +9,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/winperfcounters v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -68,7 +68,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -78,8 +78,8 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/iisreceiver/go.sum b/receiver/iisreceiver/go.sum index afbba6fa1a4a..f1d00b552dfc 100644 --- a/receiver/iisreceiver/go.sum +++ b/receiver/iisreceiver/go.sum @@ -110,8 +110,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -147,20 +147,22 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/influxdbreceiver/go.mod b/receiver/influxdbreceiver/go.mod index 68e7e920ce19..3cf174de846a 100644 --- a/receiver/influxdbreceiver/go.mod +++ b/receiver/influxdbreceiver/go.mod @@ -10,12 +10,12 @@ require ( github.com/influxdata/line-protocol/v2 v2.2.1 github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -52,21 +52,21 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/influxdbreceiver/go.sum b/receiver/influxdbreceiver/go.sum index 5f998faa9568..2016beda85eb 100644 --- a/receiver/influxdbreceiver/go.sum +++ b/receiver/influxdbreceiver/go.sum @@ -100,8 +100,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -118,40 +118,42 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/influxdbreceiver/receiver.go b/receiver/influxdbreceiver/receiver.go index 96e241653361..030734a84d47 100644 --- a/receiver/influxdbreceiver/receiver.go +++ b/receiver/influxdbreceiver/receiver.go @@ -64,8 +64,8 @@ func newMetricsReceiver(config *Config, settings receiver.CreateSettings, nextCo }, err } -func (r *metricsReceiver) Start(_ context.Context, host component.Host) error { - ln, err := r.httpServerSettings.ToListener() +func (r *metricsReceiver) Start(ctx context.Context, host component.Host) error { + ln, err := r.httpServerSettings.ToListenerContext(ctx) if err != nil { return fmt.Errorf("failed to bind to address %s: %w", r.httpServerSettings.Endpoint, err) } @@ -76,7 +76,7 @@ func (r *metricsReceiver) Start(_ context.Context, host component.Host) error { router.HandleFunc("/ping", r.handlePing) r.wg.Add(1) - r.server, err = r.httpServerSettings.ToServer(host, r.settings, router) + r.server, err = r.httpServerSettings.ToServerContext(ctx, host, r.settings, router) if err != nil { return err } diff --git a/receiver/jaegerreceiver/go.mod b/receiver/jaegerreceiver/go.mod index 8ef7862a84f0..e12542083ac4 100644 --- a/receiver/jaegerreceiver/go.mod +++ b/receiver/jaegerreceiver/go.mod @@ -9,17 +9,17 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -56,18 +56,18 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/receiver/jaegerreceiver/go.sum b/receiver/jaegerreceiver/go.sum index a56a53f3dfdd..376e6a99d60b 100644 --- a/receiver/jaegerreceiver/go.sum +++ b/receiver/jaegerreceiver/go.sum @@ -92,8 +92,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.49.0 h1:ToNTdK4zSnPVJmh698mGFkDor9wBI/iGaJy5dbH1EgI= github.com/prometheus/common v0.49.0/go.mod h1:Kxm+EULxRbUkjGU6WFsQqo3ORzB4tyKvlWFOE9mB2sE= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -126,44 +126,46 @@ github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8 github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/receiver/jaegerreceiver/trace_receiver.go b/receiver/jaegerreceiver/trace_receiver.go index 4ed85f91129d..bad812ec9a26 100644 --- a/receiver/jaegerreceiver/trace_receiver.go +++ b/receiver/jaegerreceiver/trace_receiver.go @@ -374,7 +374,7 @@ func (jr *jReceiver) startCollector(ctx context.Context, host component.Host) er } if jr.config.HTTPServerConfig.Endpoint != "" { - cln, err := jr.config.HTTPServerConfig.ToListener() + cln, err := jr.config.HTTPServerConfig.ToListenerContext(ctx) if err != nil { return fmt.Errorf("failed to bind to Collector address %q: %w", jr.config.HTTPServerConfig.Endpoint, err) @@ -382,7 +382,7 @@ func (jr *jReceiver) startCollector(ctx context.Context, host component.Host) er nr := mux.NewRouter() nr.HandleFunc("/api/traces", jr.HandleThriftHTTPBatch).Methods(http.MethodPost) - jr.collectorServer, err = jr.config.HTTPServerConfig.ToServer(host, jr.settings.TelemetrySettings, nr) + jr.collectorServer, err = jr.config.HTTPServerConfig.ToServerContext(ctx, host, jr.settings.TelemetrySettings, nr) if err != nil { return err } diff --git a/receiver/jmxreceiver/go.mod b/receiver/jmxreceiver/go.mod index c60ba9df1547..4e1b32cec68b 100644 --- a/receiver/jmxreceiver/go.mod +++ b/receiver/jmxreceiver/go.mod @@ -9,14 +9,14 @@ require ( github.com/shirou/gopsutil/v3 v3.24.3 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -74,7 +74,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -83,19 +83,19 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/receiver/jmxreceiver/go.sum b/receiver/jmxreceiver/go.sum index 7f2b5f619e0f..985a1d890bfe 100644 --- a/receiver/jmxreceiver/go.sum +++ b/receiver/jmxreceiver/go.sum @@ -118,8 +118,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -157,48 +157,50 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/receiver/journaldreceiver/go.mod b/receiver/journaldreceiver/go.mod index ba23a64b4d36..bcfc58e00352 100644 --- a/receiver/journaldreceiver/go.mod +++ b/receiver/journaldreceiver/go.mod @@ -6,10 +6,10 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -40,15 +40,15 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/valyala/fastjson v1.6.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/journaldreceiver/go.sum b/receiver/journaldreceiver/go.sum index a94054ce8011..c3adefe95121 100644 --- a/receiver/journaldreceiver/go.sum +++ b/receiver/journaldreceiver/go.sum @@ -61,8 +61,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -81,24 +81,26 @@ github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLr github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/k8sclusterreceiver/go.mod b/receiver/k8sclusterreceiver/go.mod index bbe172840be1..7e557b56af11 100644 --- a/receiver/k8sclusterreceiver/go.mod +++ b/receiver/k8sclusterreceiver/go.mod @@ -16,13 +16,13 @@ require ( github.com/openshift/api v3.9.0+incompatible github.com/openshift/client-go v0.0.0-20210521082421-73d9475a9142 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -78,24 +78,24 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/spf13/pflag v1.0.5 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/receiver/k8sclusterreceiver/go.sum b/receiver/k8sclusterreceiver/go.sum index d30b48c5eef2..800496d2d990 100644 --- a/receiver/k8sclusterreceiver/go.sum +++ b/receiver/k8sclusterreceiver/go.sum @@ -273,8 +273,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -309,46 +309,48 @@ go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/receiver/k8seventsreceiver/go.mod b/receiver/k8seventsreceiver/go.mod index 77d839b95739..c1c80a1e63d5 100644 --- a/receiver/k8seventsreceiver/go.mod +++ b/receiver/k8seventsreceiver/go.mod @@ -5,12 +5,12 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/k8sconfig v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -55,12 +55,12 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/spf13/pflag v1.0.5 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/k8seventsreceiver/go.sum b/receiver/k8seventsreceiver/go.sum index 90e165136f79..385974b50c2b 100644 --- a/receiver/k8seventsreceiver/go.sum +++ b/receiver/k8seventsreceiver/go.sum @@ -233,8 +233,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -265,22 +265,24 @@ go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/k8sobjectsreceiver/go.mod b/receiver/k8sobjectsreceiver/go.mod index 96880a49263e..ce12da3b7eb3 100644 --- a/receiver/k8sobjectsreceiver/go.mod +++ b/receiver/k8sobjectsreceiver/go.mod @@ -9,13 +9,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -72,24 +72,24 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/spf13/pflag v1.0.5 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/receiver/k8sobjectsreceiver/go.sum b/receiver/k8sobjectsreceiver/go.sum index 680b39ef0eb6..930eaa35bb04 100644 --- a/receiver/k8sobjectsreceiver/go.sum +++ b/receiver/k8sobjectsreceiver/go.sum @@ -271,8 +271,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -307,46 +307,48 @@ go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/receiver/kafkametricsreceiver/go.mod b/receiver/kafkametricsreceiver/go.mod index 01c4ae047f35..f55192e18737 100644 --- a/receiver/kafkametricsreceiver/go.mod +++ b/receiver/kafkametricsreceiver/go.mod @@ -7,12 +7,12 @@ require ( github.com/google/go-cmp v0.6.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/kafka v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -57,7 +57,7 @@ require ( github.com/pierrec/lz4/v4 v4.1.21 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect @@ -65,9 +65,9 @@ require ( github.com/xdg-go/pbkdf2 v1.0.0 // indirect github.com/xdg-go/scram v1.1.2 // indirect github.com/xdg-go/stringprep v1.0.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/kafkametricsreceiver/go.sum b/receiver/kafkametricsreceiver/go.sum index 448f2b146994..af58687e0d57 100644 --- a/receiver/kafkametricsreceiver/go.sum +++ b/receiver/kafkametricsreceiver/go.sum @@ -98,8 +98,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -129,24 +129,26 @@ github.com/xdg-go/stringprep v1.0.4/go.mod h1:mPGuuIYwz7CmR2bT9j4GbQqutWS1zV24gi github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/kafkareceiver/go.mod b/receiver/kafkareceiver/go.mod index 202fb39e805c..8015cdafa32c 100644 --- a/receiver/kafkareceiver/go.mod +++ b/receiver/kafkareceiver/go.mod @@ -17,13 +17,13 @@ require ( github.com/openzipkin/zipkin-go v0.4.2 github.com/stretchr/testify v1.9.0 go.opencensus.io v0.24.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -67,7 +67,7 @@ require ( github.com/pierrec/lz4/v4 v4.1.21 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect @@ -75,12 +75,12 @@ require ( github.com/xdg-go/pbkdf2 v1.0.0 // indirect github.com/xdg-go/scram v1.1.2 // indirect github.com/xdg-go/stringprep v1.0.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/kafkareceiver/go.sum b/receiver/kafkareceiver/go.sum index b512cb9e8f3e..4e9a9f32cd6d 100644 --- a/receiver/kafkareceiver/go.sum +++ b/receiver/kafkareceiver/go.sum @@ -137,8 +137,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.49.0 h1:ToNTdK4zSnPVJmh698mGFkDor9wBI/iGaJy5dbH1EgI= github.com/prometheus/common v0.49.0/go.mod h1:Kxm+EULxRbUkjGU6WFsQqo3ORzB4tyKvlWFOE9mB2sE= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -170,32 +170,34 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/kubeletstatsreceiver/go.mod b/receiver/kubeletstatsreceiver/go.mod index b857219c66f4..00e14c338907 100644 --- a/receiver/kubeletstatsreceiver/go.mod +++ b/receiver/kubeletstatsreceiver/go.mod @@ -11,15 +11,15 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -79,22 +79,22 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/spf13/pflag v1.0.5 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/receiver/kubeletstatsreceiver/go.sum b/receiver/kubeletstatsreceiver/go.sum index de3754638e19..c46f736b4b4d 100644 --- a/receiver/kubeletstatsreceiver/go.sum +++ b/receiver/kubeletstatsreceiver/go.sum @@ -271,8 +271,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -307,46 +307,48 @@ go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/receiver/lokireceiver/go.mod b/receiver/lokireceiver/go.mod index 203e464ad6e8..df50640feb01 100644 --- a/receiver/lokireceiver/go.mod +++ b/receiver/lokireceiver/go.mod @@ -15,20 +15,20 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/loki v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus v0.97.0 // indirect github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/zap v1.27.0 google.golang.org/grpc v1.62.1 ) require ( - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -61,21 +61,21 @@ require ( github.com/mostynb/go-grpc-compression v1.2.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/receiver/lokireceiver/go.sum b/receiver/lokireceiver/go.sum index f1c76dacd84e..7825a589b0c7 100644 --- a/receiver/lokireceiver/go.sum +++ b/receiver/lokireceiver/go.sum @@ -102,8 +102,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.52.2 h1:LW8Vk7BccEdONfrJBDffQGRtpSzi5CQaRZGtboOO2ck= github.com/prometheus/common v0.52.2/go.mod h1:lrWtQx+iDfn2mbH5GUzlH9TSHyfZpHkSiG1W7y3sF2Q= github.com/prometheus/common/sigv4 v0.1.0 h1:qoVebwtwwEhS85Czm2dSROY5fTo2PAPEVdDeppTwGX4= @@ -122,44 +122,46 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/receiver/lokireceiver/loki.go b/receiver/lokireceiver/loki.go index f8146a6a46fd..088a0e706ba1 100644 --- a/receiver/lokireceiver/loki.go +++ b/receiver/lokireceiver/loki.go @@ -91,11 +91,11 @@ func newLokiReceiver(conf *Config, nextConsumer consumer.Logs, settings receiver func (r *lokiReceiver) startProtocolsServers(ctx context.Context, host component.Host) error { var err error if r.conf.HTTP != nil { - r.serverHTTP, err = r.conf.HTTP.ToServer(host, r.settings.TelemetrySettings, r.httpMux, confighttp.WithDecoder("snappy", func(body io.ReadCloser) (io.ReadCloser, error) { return body, nil })) + r.serverHTTP, err = r.conf.HTTP.ToServerContext(ctx, host, r.settings.TelemetrySettings, r.httpMux, confighttp.WithDecoder("snappy", func(body io.ReadCloser) (io.ReadCloser, error) { return body, nil })) if err != nil { return fmt.Errorf("failed create http server error: %w", err) } - err = r.startHTTPServer() + err = r.startHTTPServer(ctx) if err != nil { return fmt.Errorf("failed to start http server error: %w", err) } @@ -118,9 +118,9 @@ func (r *lokiReceiver) startProtocolsServers(ctx context.Context, host component return err } -func (r *lokiReceiver) startHTTPServer() error { +func (r *lokiReceiver) startHTTPServer(ctx context.Context) error { r.settings.Logger.Info("Starting HTTP server", zap.String("endpoint", r.conf.HTTP.Endpoint)) - listener, err := r.conf.HTTP.ToListener() + listener, err := r.conf.HTTP.ToListenerContext(ctx) if err != nil { return err } diff --git a/receiver/memcachedreceiver/go.mod b/receiver/memcachedreceiver/go.mod index 6aa6ad27c753..15ee37faa6f6 100644 --- a/receiver/memcachedreceiver/go.mod +++ b/receiver/memcachedreceiver/go.mod @@ -10,12 +10,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -69,7 +69,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -78,8 +78,8 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/memcachedreceiver/go.sum b/receiver/memcachedreceiver/go.sum index 959d9c95c8c7..490f5dd8008a 100644 --- a/receiver/memcachedreceiver/go.sum +++ b/receiver/memcachedreceiver/go.sum @@ -112,8 +112,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -149,22 +149,24 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/mongodbatlasreceiver/go.mod b/receiver/mongodbatlasreceiver/go.mod index 7625b4cb7f49..95b0706a2576 100644 --- a/receiver/mongodbatlasreceiver/go.mod +++ b/receiver/mongodbatlasreceiver/go.mod @@ -12,15 +12,15 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.97.0 github.com/stretchr/testify v1.9.0 go.mongodb.org/atlas v0.36.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -56,14 +56,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/stretchr/objx v0.5.2 // indirect github.com/valyala/fastjson v1.6.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/mongodbatlasreceiver/go.sum b/receiver/mongodbatlasreceiver/go.sum index 8febc1a78d55..eaa7fef1a6f0 100644 --- a/receiver/mongodbatlasreceiver/go.sum +++ b/receiver/mongodbatlasreceiver/go.sum @@ -70,8 +70,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -92,30 +92,32 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= go.mongodb.org/atlas v0.36.0 h1:m05S3AO7zkl+bcG1qaNsEKBnAqnKx2FDwLooHpIG3j4= go.mongodb.org/atlas v0.36.0/go.mod h1:nfPldE9dSama6G2IbIzmEza02Ly7yFZjMMVscaM0uEc= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/mongodbreceiver/go.mod b/receiver/mongodbreceiver/go.mod index 5fcc433c1ec6..991b3d83447b 100644 --- a/receiver/mongodbreceiver/go.mod +++ b/receiver/mongodbreceiver/go.mod @@ -11,15 +11,15 @@ require ( github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 go.mongodb.org/mongo-driver v1.14.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -77,7 +77,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -91,8 +91,8 @@ require ( github.com/xdg-go/stringprep v1.0.4 // indirect github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/mongodbreceiver/go.sum b/receiver/mongodbreceiver/go.sum index fd97caf2ff6c..4a9acd35fb63 100644 --- a/receiver/mongodbreceiver/go.sum +++ b/receiver/mongodbreceiver/go.sum @@ -118,8 +118,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -167,28 +167,30 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.mongodb.org/mongo-driver v1.14.0 h1:P98w8egYRjYe3XDjxhYJagTokP/H6HzlsnojRgZRd80= go.mongodb.org/mongo-driver v1.14.0/go.mod h1:Vzb0Mk/pa7e6cWw85R4F/endUC3u0U9jGcNU603k65c= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/mysqlreceiver/go.mod b/receiver/mysqlreceiver/go.mod index 418e3a0f5b61..6f9254553f1b 100644 --- a/receiver/mysqlreceiver/go.mod +++ b/receiver/mysqlreceiver/go.mod @@ -10,14 +10,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -73,7 +73,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -82,8 +82,8 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/mysqlreceiver/go.sum b/receiver/mysqlreceiver/go.sum index 02a0cde0dd4c..edbfdf7b15a7 100644 --- a/receiver/mysqlreceiver/go.sum +++ b/receiver/mysqlreceiver/go.sum @@ -116,8 +116,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -153,26 +153,28 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/namedpipereceiver/go.mod b/receiver/namedpipereceiver/go.mod index c347e68c6f7b..988820c04200 100644 --- a/receiver/namedpipereceiver/go.mod +++ b/receiver/namedpipereceiver/go.mod @@ -6,10 +6,10 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -41,15 +41,15 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/valyala/fastjson v1.6.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/namedpipereceiver/go.sum b/receiver/namedpipereceiver/go.sum index 584d0247e434..55b02baf5e2b 100644 --- a/receiver/namedpipereceiver/go.sum +++ b/receiver/namedpipereceiver/go.sum @@ -63,8 +63,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -83,24 +83,26 @@ github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLr github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/nginxreceiver/go.mod b/receiver/nginxreceiver/go.mod index 71e540fa4807..b6e3185b9f15 100644 --- a/receiver/nginxreceiver/go.mod +++ b/receiver/nginxreceiver/go.mod @@ -10,13 +10,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -73,7 +73,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -83,15 +83,15 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/nginxreceiver/go.sum b/receiver/nginxreceiver/go.sum index 1e5ca02213c4..d58e2386b0a1 100644 --- a/receiver/nginxreceiver/go.sum +++ b/receiver/nginxreceiver/go.sum @@ -118,8 +118,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -157,38 +157,40 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/nginxreceiver/scraper.go b/receiver/nginxreceiver/scraper.go index 731d738420ff..cd610a61471a 100644 --- a/receiver/nginxreceiver/scraper.go +++ b/receiver/nginxreceiver/scraper.go @@ -39,8 +39,8 @@ func newNginxScraper( } } -func (r *nginxScraper) start(_ context.Context, host component.Host) error { - httpClient, err := r.cfg.ToClient(host, r.settings) +func (r *nginxScraper) start(ctx context.Context, host component.Host) error { + httpClient, err := r.cfg.ToClientContext(ctx, host, r.settings) if err != nil { return err } diff --git a/receiver/nsxtreceiver/client.go b/receiver/nsxtreceiver/client.go index da00d474efc3..e65f0ceaeb71 100644 --- a/receiver/nsxtreceiver/client.go +++ b/receiver/nsxtreceiver/client.go @@ -40,8 +40,8 @@ var ( errUnauthorized = errors.New("STATUS 403, unauthorized") ) -func newClient(c *Config, settings component.TelemetrySettings, host component.Host, logger *zap.Logger) (*nsxClient, error) { - client, err := c.ClientConfig.ToClient(host, settings) +func newClient(ctx context.Context, c *Config, settings component.TelemetrySettings, host component.Host, logger *zap.Logger) (*nsxClient, error) { + client, err := c.ClientConfig.ToClientContext(ctx, host, settings) if err != nil { return nil, err } diff --git a/receiver/nsxtreceiver/client_test.go b/receiver/nsxtreceiver/client_test.go index ba084f9dcf4c..be7fa5291b47 100644 --- a/receiver/nsxtreceiver/client_test.go +++ b/receiver/nsxtreceiver/client_test.go @@ -26,7 +26,7 @@ const ( ) func TestNewClientFailureToParse(t *testing.T) { - _, err := newClient(&Config{ + _, err := newClient(context.Background(), &Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: "http://\x00", }, @@ -38,7 +38,7 @@ func TestTransportNodes(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, }, @@ -53,7 +53,7 @@ func TestClusterNodes(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, }, @@ -68,7 +68,7 @@ func TestClusterNodeInterface(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, }, @@ -83,7 +83,7 @@ func TestTransportNodeInterface(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, }, @@ -98,7 +98,7 @@ func TestTransportNodeStatus(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, }, @@ -113,7 +113,7 @@ func TestClusterNodeStatus(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, }, @@ -128,7 +128,7 @@ func TestTransportNodeInterfaceStatus(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, }, @@ -143,7 +143,7 @@ func TestManagerNodeInterfaceStatus(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, }, @@ -158,7 +158,7 @@ func TestDoRequestBadUrl(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, }, @@ -173,7 +173,7 @@ func TestPermissionDenied_ClusterNodes(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ Password: badPassword, ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, @@ -189,7 +189,7 @@ func TestPermissionDenied_Interfaces(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ Password: badPassword, ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, @@ -205,7 +205,7 @@ func TestPermissionDenied_InterfaceStatus(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ Password: badPassword, ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, @@ -221,7 +221,7 @@ func TestPermissionDenied_NodeStatus(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ Password: badPassword, ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, @@ -237,7 +237,7 @@ func TestPermissionDenied_TransportNodes(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ Password: badPassword, ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, @@ -253,7 +253,7 @@ func TestInternalServerError(t *testing.T) { nsxMock := mockServer(t) defer nsxMock.Close() - client, err := newClient(&Config{ + client, err := newClient(context.Background(), &Config{ Username: user500, ClientConfig: confighttp.ClientConfig{ Endpoint: nsxMock.URL, diff --git a/receiver/nsxtreceiver/go.mod b/receiver/nsxtreceiver/go.mod index 0d8fcbd919f6..9bc66293fd32 100644 --- a/receiver/nsxtreceiver/go.mod +++ b/receiver/nsxtreceiver/go.mod @@ -8,13 +8,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/vmware/go-vmware-nsxt v0.0.0-20230223012718-d31b8a1ca05e - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -48,20 +48,20 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/nsxtreceiver/go.sum b/receiver/nsxtreceiver/go.sum index 6c44e4ad0c5d..8bcc3f663230 100644 --- a/receiver/nsxtreceiver/go.sum +++ b/receiver/nsxtreceiver/go.sum @@ -63,8 +63,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -84,38 +84,40 @@ github.com/vmware/go-vmware-nsxt v0.0.0-20230223012718-d31b8a1ca05e/go.mod h1:aR github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/nsxtreceiver/scraper.go b/receiver/nsxtreceiver/scraper.go index 64f904a62177..cb755553f2b3 100644 --- a/receiver/nsxtreceiver/scraper.go +++ b/receiver/nsxtreceiver/scraper.go @@ -36,9 +36,9 @@ func newScraper(cfg *Config, settings receiver.CreateSettings) *scraper { } } -func (s *scraper) start(_ context.Context, host component.Host) error { +func (s *scraper) start(ctx context.Context, host component.Host) error { s.host = host - client, err := newClient(s.config, s.settings, s.host, s.settings.Logger) + client, err := newClient(ctx, s.config, s.settings, s.host, s.settings.Logger) if err != nil { return fmt.Errorf("unable to construct http client: %w", err) } diff --git a/receiver/opencensusreceiver/go.mod b/receiver/opencensusreceiver/go.mod index c54ff209510b..487418c6b7d8 100644 --- a/receiver/opencensusreceiver/go.mod +++ b/receiver/opencensusreceiver/go.mod @@ -12,14 +12,14 @@ require ( github.com/rs/cors v1.10.1 github.com/soheilhy/cmux v0.1.5 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/metric v1.24.0 @@ -56,20 +56,20 @@ require ( github.com/mostynb/go-grpc-compression v1.2.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect diff --git a/receiver/opencensusreceiver/go.sum b/receiver/opencensusreceiver/go.sum index 05eb9721b03b..a79e89dfedbc 100644 --- a/receiver/opencensusreceiver/go.sum +++ b/receiver/opencensusreceiver/go.sum @@ -93,8 +93,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -118,42 +118,44 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/oracledbreceiver/go.mod b/receiver/oracledbreceiver/go.mod index 6b8d17a33fcc..fb90aff3908f 100644 --- a/receiver/oracledbreceiver/go.mod +++ b/receiver/oracledbreceiver/go.mod @@ -6,11 +6,11 @@ require ( github.com/google/go-cmp v0.6.0 github.com/sijms/go-ora/v2 v2.8.11 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -38,11 +38,11 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/oracledbreceiver/go.sum b/receiver/oracledbreceiver/go.sum index 0bec5d62443d..2df4c05efc78 100644 --- a/receiver/oracledbreceiver/go.sum +++ b/receiver/oracledbreceiver/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -66,20 +66,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/osqueryreceiver/go.mod b/receiver/osqueryreceiver/go.mod index bae03aa86a68..754353e9d885 100644 --- a/receiver/osqueryreceiver/go.mod +++ b/receiver/osqueryreceiver/go.mod @@ -4,8 +4,8 @@ go 1.21 require ( github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -25,11 +25,11 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect go.uber.org/zap v1.27.0 // indirect diff --git a/receiver/osqueryreceiver/go.sum b/receiver/osqueryreceiver/go.sum index 5b9f3b3e26c7..1d4be4be5150 100644 --- a/receiver/osqueryreceiver/go.sum +++ b/receiver/osqueryreceiver/go.sum @@ -49,8 +49,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -63,20 +63,20 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/otelarrowreceiver/go.mod b/receiver/otelarrowreceiver/go.mod index ac52fd34a844..588a3e541517 100644 --- a/receiver/otelarrowreceiver/go.mod +++ b/receiver/otelarrowreceiver/go.mod @@ -7,15 +7,15 @@ require ( github.com/open-telemetry/otel-arrow v0.18.0 github.com/open-telemetry/otel-arrow/collector v0.20.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -56,20 +56,20 @@ require ( github.com/pierrec/lz4/v4 v4.1.18 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/x448/float16 v0.8.4 // indirect github.com/zeebo/xxh3 v1.0.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/otelarrowreceiver/go.sum b/receiver/otelarrowreceiver/go.sum index 419ba00c6260..408601c19b0f 100644 --- a/receiver/otelarrowreceiver/go.sum +++ b/receiver/otelarrowreceiver/go.sum @@ -96,8 +96,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -117,42 +117,44 @@ github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/otlpjsonfilereceiver/go.mod b/receiver/otlpjsonfilereceiver/go.mod index 3f56ae15d18b..61c892680a68 100644 --- a/receiver/otlpjsonfilereceiver/go.mod +++ b/receiver/otlpjsonfilereceiver/go.mod @@ -6,11 +6,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -42,14 +42,14 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/valyala/fastjson v1.6.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/otlpjsonfilereceiver/go.sum b/receiver/otlpjsonfilereceiver/go.sum index b227592d4c92..0f6547ab0ed3 100644 --- a/receiver/otlpjsonfilereceiver/go.sum +++ b/receiver/otlpjsonfilereceiver/go.sum @@ -63,8 +63,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -83,24 +83,26 @@ github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLr github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/podmanreceiver/go.mod b/receiver/podmanreceiver/go.mod index df50cc350bcb..604434ed4b5e 100644 --- a/receiver/podmanreceiver/go.mod +++ b/receiver/podmanreceiver/go.mod @@ -5,12 +5,12 @@ go 1.21 require ( github.com/google/go-cmp v0.6.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -39,11 +39,11 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/podmanreceiver/go.sum b/receiver/podmanreceiver/go.sum index dd9d40ea25b7..d484bd0bf02f 100644 --- a/receiver/podmanreceiver/go.sum +++ b/receiver/podmanreceiver/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,22 +64,24 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/postgresqlreceiver/go.mod b/receiver/postgresqlreceiver/go.mod index 61feaf3f4d3d..f65e20d7bfe0 100644 --- a/receiver/postgresqlreceiver/go.mod +++ b/receiver/postgresqlreceiver/go.mod @@ -11,15 +11,15 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -76,7 +76,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -86,8 +86,8 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/postgresqlreceiver/go.sum b/receiver/postgresqlreceiver/go.sum index 333b8afb5b33..8799e8e76941 100644 --- a/receiver/postgresqlreceiver/go.sum +++ b/receiver/postgresqlreceiver/go.sum @@ -116,8 +116,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -154,28 +154,30 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/prometheusreceiver/go.mod b/receiver/prometheusreceiver/go.mod index c23384657b00..54e5842a7ff5 100644 --- a/receiver/prometheusreceiver/go.mod +++ b/receiver/prometheusreceiver/go.mod @@ -14,19 +14,19 @@ require ( github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -142,7 +142,7 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -161,23 +161,23 @@ require ( github.com/vultr/govultr/v2 v2.17.2 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/contrib/propagators/b3 v1.24.0 // indirect diff --git a/receiver/prometheusreceiver/go.sum b/receiver/prometheusreceiver/go.sum index 45f20e2f9293..429345f42fd1 100644 --- a/receiver/prometheusreceiver/go.sum +++ b/receiver/prometheusreceiver/go.sum @@ -472,8 +472,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= @@ -567,70 +567,72 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= go.opentelemetry.io/collector/config/confignet v0.97.0 h1:KJjv10/YVMslSSLVWW/IIjpLM3JiO3rWvw5dK/t1H7g= go.opentelemetry.io/collector/config/confignet v0.97.0/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/receiver/prometheusreceiver/metrics_receiver.go b/receiver/prometheusreceiver/metrics_receiver.go index 771e0dfaca9d..46b9f7a3cee3 100644 --- a/receiver/prometheusreceiver/metrics_receiver.go +++ b/receiver/prometheusreceiver/metrics_receiver.go @@ -73,7 +73,7 @@ func newPrometheusReceiver(set receiver.CreateSettings, cfg *Config, next consum // Start is the method that starts Prometheus scraping. It // is controlled by having previously defined a Configuration using perhaps New. -func (r *pReceiver) Start(_ context.Context, host component.Host) error { +func (r *pReceiver) Start(ctx context.Context, host component.Host) error { discoveryCtx, cancel := context.WithCancel(context.Background()) r.cancelFunc = cancel @@ -96,7 +96,7 @@ func (r *pReceiver) Start(_ context.Context, host component.Host) error { allocConf := r.cfg.TargetAllocator if allocConf != nil { - r.httpClient, err = r.cfg.TargetAllocator.ToClient(host, r.settings.TelemetrySettings) + r.httpClient, err = r.cfg.TargetAllocator.ToClientContext(ctx, host, r.settings.TelemetrySettings) if err != nil { r.settings.Logger.Error("Failed to create http client", zap.Error(err)) return err diff --git a/receiver/pulsarreceiver/go.mod b/receiver/pulsarreceiver/go.mod index 6eaccccbb15b..0a0a688ab6be 100644 --- a/receiver/pulsarreceiver/go.mod +++ b/receiver/pulsarreceiver/go.mod @@ -11,13 +11,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.97.0 github.com/openzipkin/zipkin-go v0.4.2 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -63,12 +63,12 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/sirupsen/logrus v1.9.3 // indirect github.com/spaolacci/murmur3 v1.1.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/pulsarreceiver/go.sum b/receiver/pulsarreceiver/go.sum index 20de8715d3eb..ab7a4b9fcb09 100644 --- a/receiver/pulsarreceiver/go.sum +++ b/receiver/pulsarreceiver/go.sum @@ -353,8 +353,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= @@ -420,24 +420,25 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/purefareceiver/go.mod b/receiver/purefareceiver/go.mod index ab400bb2ecca..ab8b3a60f27e 100644 --- a/receiver/purefareceiver/go.mod +++ b/receiver/purefareceiver/go.mod @@ -8,13 +8,13 @@ require ( github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -126,7 +126,7 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -134,16 +134,16 @@ require ( github.com/spf13/pflag v1.0.5 // indirect github.com/vultr/govultr/v2 v2.17.2 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/purefareceiver/go.sum b/receiver/purefareceiver/go.sum index a3a062b96039..9d22c02077fb 100644 --- a/receiver/purefareceiver/go.sum +++ b/receiver/purefareceiver/go.sum @@ -471,8 +471,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= @@ -563,66 +563,68 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/receiver/purefbreceiver/go.mod b/receiver/purefbreceiver/go.mod index 462bdc5d760a..7a5b7fe1e1ae 100644 --- a/receiver/purefbreceiver/go.mod +++ b/receiver/purefbreceiver/go.mod @@ -8,13 +8,13 @@ require ( github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -126,7 +126,7 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -134,16 +134,16 @@ require ( github.com/spf13/pflag v1.0.5 // indirect github.com/vultr/govultr/v2 v2.17.2 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/purefbreceiver/go.sum b/receiver/purefbreceiver/go.sum index a3a062b96039..9d22c02077fb 100644 --- a/receiver/purefbreceiver/go.sum +++ b/receiver/purefbreceiver/go.sum @@ -471,8 +471,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= @@ -563,66 +563,68 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/receiver/rabbitmqreceiver/client.go b/receiver/rabbitmqreceiver/client.go index f1ed478d8ecf..6cef772cb986 100644 --- a/receiver/rabbitmqreceiver/client.go +++ b/receiver/rabbitmqreceiver/client.go @@ -38,8 +38,8 @@ type rabbitmqCredentials struct { password string } -func newClient(cfg *Config, host component.Host, settings component.TelemetrySettings, logger *zap.Logger) (client, error) { - httpClient, err := cfg.ToClient(host, settings) +func newClient(ctx context.Context, cfg *Config, host component.Host, settings component.TelemetrySettings, logger *zap.Logger) (client, error) { + httpClient, err := cfg.ToClientContext(ctx, host, settings) if err != nil { return nil, fmt.Errorf("failed to create HTTP Client: %w", err) } diff --git a/receiver/rabbitmqreceiver/client_test.go b/receiver/rabbitmqreceiver/client_test.go index dba6be4438fc..1f0d94c4bf4f 100644 --- a/receiver/rabbitmqreceiver/client_test.go +++ b/receiver/rabbitmqreceiver/client_test.go @@ -70,7 +70,7 @@ func TestNewClient(t *testing.T) { for _, tc := range testCase { t.Run(tc.desc, func(t *testing.T) { - ac, err := newClient(tc.cfg, tc.host, tc.settings, tc.logger) + ac, err := newClient(context.Background(), tc.cfg, tc.host, tc.settings, tc.logger) if tc.expectError != nil { require.Nil(t, ac) require.Contains(t, err.Error(), tc.expectError.Error()) @@ -164,7 +164,7 @@ func createTestClient(t *testing.T, baseEndpoint string) client { cfg := createDefaultConfig().(*Config) cfg.Endpoint = baseEndpoint - testClient, err := newClient(cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings(), zap.NewNop()) + testClient, err := newClient(context.Background(), cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings(), zap.NewNop()) require.NoError(t, err) return testClient } diff --git a/receiver/rabbitmqreceiver/go.mod b/receiver/rabbitmqreceiver/go.mod index d7fb3d20b196..8979207fb230 100644 --- a/receiver/rabbitmqreceiver/go.mod +++ b/receiver/rabbitmqreceiver/go.mod @@ -7,14 +7,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -47,19 +47,19 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/rabbitmqreceiver/go.sum b/receiver/rabbitmqreceiver/go.sum index 9d0b8acf5ade..fd56f34b0307 100644 --- a/receiver/rabbitmqreceiver/go.sum +++ b/receiver/rabbitmqreceiver/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -78,38 +78,40 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/rabbitmqreceiver/scraper.go b/receiver/rabbitmqreceiver/scraper.go index 68a0f8649d7a..1bcd2a6034ec 100644 --- a/receiver/rabbitmqreceiver/scraper.go +++ b/receiver/rabbitmqreceiver/scraper.go @@ -56,8 +56,8 @@ func newScraper(logger *zap.Logger, cfg *Config, settings receiver.CreateSetting } // start starts the scraper by creating a new HTTP Client on the scraper -func (r *rabbitmqScraper) start(_ context.Context, host component.Host) (err error) { - r.client, err = newClient(r.cfg, host, r.settings, r.logger) +func (r *rabbitmqScraper) start(ctx context.Context, host component.Host) (err error) { + r.client, err = newClient(ctx, r.cfg, host, r.settings, r.logger) return } diff --git a/receiver/receivercreator/go.mod b/receiver/receivercreator/go.mod index 3a3d2578de79..c43bfcc415cd 100644 --- a/receiver/receivercreator/go.mod +++ b/receiver/receivercreator/go.mod @@ -9,14 +9,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/spf13/cast v1.6.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -53,7 +53,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -64,19 +64,20 @@ require ( github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/propagators/b3 v1.24.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/receiver/receivercreator/go.sum b/receiver/receivercreator/go.sum index 2244de82f509..03f948844a9b 100644 --- a/receiver/receivercreator/go.sum +++ b/receiver/receivercreator/go.sum @@ -102,8 +102,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -145,54 +145,56 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= go.opentelemetry.io/collector/config/confignet v0.97.0 h1:KJjv10/YVMslSSLVWW/IIjpLM3JiO3rWvw5dK/t1H7g= go.opentelemetry.io/collector/config/confignet v0.97.0/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= go.opentelemetry.io/collector/config/configretry v0.97.0 h1:k7VwQ5H0oBLm6Fgm0ltfDDbmQVsiqSIY9ojijF0hiR0= go.opentelemetry.io/collector/config/configretry v0.97.0/go.mod h1:s7A6ZGxK8bxqidFzwbr2pITzbsB2qf+aeHEDQDcanV8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/propagators/b3 v1.24.0 h1:n4xwCdTx3pZqZs2CjS/CUZAs03y3dZcGhC/FepKtEUY= diff --git a/receiver/redisreceiver/go.mod b/receiver/redisreceiver/go.mod index 38033481dd39..1bbb8b802f70 100644 --- a/receiver/redisreceiver/go.mod +++ b/receiver/redisreceiver/go.mod @@ -9,14 +9,14 @@ require ( github.com/redis/go-redis/v9 v9.5.1 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -73,7 +73,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -82,8 +82,8 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/redisreceiver/go.sum b/receiver/redisreceiver/go.sum index 3dc023246b8a..2a6dbb21b6bc 100644 --- a/receiver/redisreceiver/go.sum +++ b/receiver/redisreceiver/go.sum @@ -118,8 +118,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -157,26 +157,28 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/riakreceiver/client.go b/receiver/riakreceiver/client.go index 0fc53f158e65..4e30da638ae7 100644 --- a/receiver/riakreceiver/client.go +++ b/receiver/riakreceiver/client.go @@ -38,8 +38,8 @@ type riakCredentials struct { password string } -func newClient(cfg *Config, host component.Host, settings component.TelemetrySettings, logger *zap.Logger) (client, error) { - httpClient, err := cfg.ToClient(host, settings) +func newClient(ctx context.Context, cfg *Config, host component.Host, settings component.TelemetrySettings, logger *zap.Logger) (client, error) { + httpClient, err := cfg.ToClientContext(ctx, host, settings) if err != nil { return nil, fmt.Errorf("failed to create HTTP Client: %w", err) } diff --git a/receiver/riakreceiver/client_test.go b/receiver/riakreceiver/client_test.go index 5847fab1a2c7..37de4aaba1ab 100644 --- a/receiver/riakreceiver/client_test.go +++ b/receiver/riakreceiver/client_test.go @@ -60,7 +60,7 @@ func TestNewClient(t *testing.T) { for _, tc := range testCase { t.Run(tc.desc, func(t *testing.T) { - ac, err := newClient(tc.cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings(), zap.NewNop()) + ac, err := newClient(context.Background(), tc.cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings(), zap.NewNop()) if tc.expectError != nil { require.Nil(t, ac) require.Contains(t, err.Error(), tc.expectError.Error()) @@ -123,7 +123,7 @@ func createTestClient(t *testing.T, baseEndpoint string) client { cfg := createDefaultConfig().(*Config) cfg.Endpoint = baseEndpoint - testClient, err := newClient(cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings(), zap.NewNop()) + testClient, err := newClient(context.Background(), cfg, componenttest.NewNopHost(), componenttest.NewNopTelemetrySettings(), zap.NewNop()) require.NoError(t, err) return testClient } diff --git a/receiver/riakreceiver/go.mod b/receiver/riakreceiver/go.mod index 5c1744a7b0e9..1ab253cb8cbd 100644 --- a/receiver/riakreceiver/go.mod +++ b/receiver/riakreceiver/go.mod @@ -7,14 +7,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -48,19 +48,19 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/riakreceiver/go.sum b/receiver/riakreceiver/go.sum index 9d0b8acf5ade..fd56f34b0307 100644 --- a/receiver/riakreceiver/go.sum +++ b/receiver/riakreceiver/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -78,38 +78,40 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/riakreceiver/scraper.go b/receiver/riakreceiver/scraper.go index 63adc6f7d1d0..24642dc7875e 100644 --- a/receiver/riakreceiver/scraper.go +++ b/receiver/riakreceiver/scraper.go @@ -41,8 +41,8 @@ func newScraper(logger *zap.Logger, cfg *Config, settings receiver.CreateSetting } // start starts the scraper by creating a new HTTP Client on the scraper -func (r *riakScraper) start(_ context.Context, host component.Host) (err error) { - r.client, err = newClient(r.cfg, host, r.settings, r.logger) +func (r *riakScraper) start(ctx context.Context, host component.Host) (err error) { + r.client, err = newClient(ctx, r.cfg, host, r.settings, r.logger) return } diff --git a/receiver/saphanareceiver/go.mod b/receiver/saphanareceiver/go.mod index 80750dba3640..e701aa0d24c6 100644 --- a/receiver/saphanareceiver/go.mod +++ b/receiver/saphanareceiver/go.mod @@ -8,14 +8,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -49,8 +49,8 @@ require ( github.com/prometheus/common v0.52.2 // indirect github.com/prometheus/procfs v0.13.0 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/saphanareceiver/go.sum b/receiver/saphanareceiver/go.sum index 57e2f6735cf7..9e97b36f7112 100644 --- a/receiver/saphanareceiver/go.sum +++ b/receiver/saphanareceiver/go.sum @@ -70,26 +70,28 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/sapmreceiver/go.mod b/receiver/sapmreceiver/go.mod index 3117332356d7..733a81cd378a 100644 --- a/receiver/sapmreceiver/go.mod +++ b/receiver/sapmreceiver/go.mod @@ -11,14 +11,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.97.0 github.com/signalfx/sapm-proto v0.14.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -51,21 +51,21 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/sapmreceiver/go.sum b/receiver/sapmreceiver/go.sum index 4045672e30cb..ebc2185a16a9 100644 --- a/receiver/sapmreceiver/go.sum +++ b/receiver/sapmreceiver/go.sum @@ -70,8 +70,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.49.0 h1:ToNTdK4zSnPVJmh698mGFkDor9wBI/iGaJy5dbH1EgI= github.com/prometheus/common v0.49.0/go.mod h1:Kxm+EULxRbUkjGU6WFsQqo3ORzB4tyKvlWFOE9mB2sE= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -88,44 +88,46 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/sapmreceiver/trace_receiver.go b/receiver/sapmreceiver/trace_receiver.go index 0d7b5be9d00c..e1b37a9d532c 100644 --- a/receiver/sapmreceiver/trace_receiver.go +++ b/receiver/sapmreceiver/trace_receiver.go @@ -150,13 +150,13 @@ func (sr *sapmReceiver) HTTPHandlerFunc(rw http.ResponseWriter, req *http.Reques } // Start starts the sapmReceiver's server. -func (sr *sapmReceiver) Start(_ context.Context, host component.Host) error { +func (sr *sapmReceiver) Start(ctx context.Context, host component.Host) error { // server.Handler will be nil on initial call, otherwise noop. if sr.server != nil && sr.server.Handler != nil { return nil } // set up the listener - ln, err := sr.config.ServerConfig.ToListener() + ln, err := sr.config.ServerConfig.ToListenerContext(ctx) if err != nil { return fmt.Errorf("failed to bind to address %s: %w", sr.config.Endpoint, err) } @@ -166,7 +166,7 @@ func (sr *sapmReceiver) Start(_ context.Context, host component.Host) error { nr.HandleFunc(sapmprotocol.TraceEndpointV2, sr.HTTPHandlerFunc) // create a server with the handler - sr.server, err = sr.config.ServerConfig.ToServer(host, sr.settings, nr) + sr.server, err = sr.config.ServerConfig.ToServerContext(ctx, host, sr.settings, nr) if err != nil { return err } diff --git a/receiver/signalfxreceiver/go.mod b/receiver/signalfxreceiver/go.mod index 264afca9c617..9686fd5455a5 100644 --- a/receiver/signalfxreceiver/go.mod +++ b/receiver/signalfxreceiver/go.mod @@ -11,14 +11,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/signalfx v0.97.0 github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 @@ -58,7 +58,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -67,17 +67,17 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/signalfxreceiver/go.sum b/receiver/signalfxreceiver/go.sum index 62a5415d4b19..8703def1193a 100644 --- a/receiver/signalfxreceiver/go.sum +++ b/receiver/signalfxreceiver/go.sum @@ -83,8 +83,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -120,44 +120,46 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/signalfxreceiver/receiver.go b/receiver/signalfxreceiver/receiver.go index a5053ccc71fd..cfa9998a0022 100644 --- a/receiver/signalfxreceiver/receiver.go +++ b/receiver/signalfxreceiver/receiver.go @@ -121,14 +121,14 @@ func (r *sfxReceiver) RegisterLogsConsumer(lc consumer.Logs) { // Start tells the receiver to start its processing. // By convention the consumer of the received data is set when the receiver // instance is created. -func (r *sfxReceiver) Start(_ context.Context, host component.Host) error { +func (r *sfxReceiver) Start(ctx context.Context, host component.Host) error { if r.server != nil { return nil } // set up the listener - ln, err := r.config.ServerConfig.ToListener() + ln, err := r.config.ServerConfig.ToListenerContext(ctx) if err != nil { return fmt.Errorf("failed to bind to address %s: %w", r.config.Endpoint, err) } @@ -137,7 +137,7 @@ func (r *sfxReceiver) Start(_ context.Context, host component.Host) error { mx.HandleFunc("/v2/datapoint", r.handleDatapointReq) mx.HandleFunc("/v2/event", r.handleEventReq) - r.server, err = r.config.ServerConfig.ToServer(host, r.settings.TelemetrySettings, mx) + r.server, err = r.config.ServerConfig.ToServerContext(ctx, host, r.settings.TelemetrySettings, mx) if err != nil { return err } diff --git a/receiver/simpleprometheusreceiver/go.mod b/receiver/simpleprometheusreceiver/go.mod index 128995ec4e9f..29382ed45ebb 100644 --- a/receiver/simpleprometheusreceiver/go.mod +++ b/receiver/simpleprometheusreceiver/go.mod @@ -7,12 +7,12 @@ require ( github.com/prometheus/common v0.52.2 github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -124,7 +124,7 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common/sigv4 v0.1.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect @@ -132,17 +132,17 @@ require ( github.com/spf13/pflag v1.0.5 // indirect github.com/vultr/govultr/v2 v2.17.2 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/simpleprometheusreceiver/go.sum b/receiver/simpleprometheusreceiver/go.sum index a3a062b96039..9d22c02077fb 100644 --- a/receiver/simpleprometheusreceiver/go.sum +++ b/receiver/simpleprometheusreceiver/go.sum @@ -471,8 +471,8 @@ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1: github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= @@ -563,66 +563,68 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/receiver/skywalkingreceiver/go.mod b/receiver/skywalkingreceiver/go.mod index 587ac1fb1ea0..aba8466fd5fb 100644 --- a/receiver/skywalkingreceiver/go.mod +++ b/receiver/skywalkingreceiver/go.mod @@ -8,16 +8,16 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/skywalking v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -53,19 +53,19 @@ require ( github.com/mostynb/go-grpc-compression v1.2.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect diff --git a/receiver/skywalkingreceiver/go.sum b/receiver/skywalkingreceiver/go.sum index e4f00f54b07a..6b21c2ad8da7 100644 --- a/receiver/skywalkingreceiver/go.sum +++ b/receiver/skywalkingreceiver/go.sum @@ -106,8 +106,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -127,44 +127,46 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/receiver/skywalkingreceiver/skywalking_receiver.go b/receiver/skywalkingreceiver/skywalking_receiver.go index a1fb1fcb0105..deae2c9ff704 100644 --- a/receiver/skywalkingreceiver/skywalking_receiver.go +++ b/receiver/skywalkingreceiver/skywalking_receiver.go @@ -129,8 +129,10 @@ func (sr *swReceiver) startCollector(host component.Host) error { return nil } + ctx := context.Background() + if sr.collectorHTTPEnabled() { - cln, cerr := sr.config.CollectorHTTPSettings.ToListener() + cln, cerr := sr.config.CollectorHTTPSettings.ToListenerContext(ctx) if cerr != nil { return fmt.Errorf("failed to bind to Collector address %q: %w", sr.config.CollectorHTTPSettings.Endpoint, cerr) @@ -138,7 +140,7 @@ func (sr *swReceiver) startCollector(host component.Host) error { nr := mux.NewRouter() nr.HandleFunc("/v3/segments", sr.traceReceiver.HTTPHandler).Methods(http.MethodPost) - sr.collectorServer, cerr = sr.config.CollectorHTTPSettings.ToServer(host, sr.settings.TelemetrySettings, nr) + sr.collectorServer, cerr = sr.config.CollectorHTTPSettings.ToServerContext(ctx, host, sr.settings.TelemetrySettings, nr) if cerr != nil { return cerr } @@ -154,7 +156,7 @@ func (sr *swReceiver) startCollector(host component.Host) error { if sr.collectorGRPCEnabled() { var err error - sr.grpc, err = sr.config.CollectorGRPCServerSettings.ToServer(context.Background(), host, sr.settings.TelemetrySettings) + sr.grpc, err = sr.config.CollectorGRPCServerSettings.ToServer(ctx, host, sr.settings.TelemetrySettings) if err != nil { return fmt.Errorf("failed to build the options for the Skywalking gRPC Collector: %w", err) } diff --git a/receiver/snmpreceiver/go.mod b/receiver/snmpreceiver/go.mod index 6ad2e3512217..ae0d0cd2983d 100644 --- a/receiver/snmpreceiver/go.mod +++ b/receiver/snmpreceiver/go.mod @@ -8,13 +8,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -72,7 +72,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -85,21 +85,22 @@ require ( github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a // indirect + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/contrib/propagators/b3 v1.24.0 // indirect diff --git a/receiver/snmpreceiver/go.sum b/receiver/snmpreceiver/go.sum index cbe1ba701dc8..862679bdab39 100644 --- a/receiver/snmpreceiver/go.sum +++ b/receiver/snmpreceiver/go.sum @@ -148,8 +148,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -194,56 +194,58 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= go.opentelemetry.io/collector/config/confignet v0.97.0 h1:KJjv10/YVMslSSLVWW/IIjpLM3JiO3rWvw5dK/t1H7g= go.opentelemetry.io/collector/config/confignet v0.97.0/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= go.opentelemetry.io/collector/config/configretry v0.97.0 h1:k7VwQ5H0oBLm6Fgm0ltfDDbmQVsiqSIY9ojijF0hiR0= go.opentelemetry.io/collector/config/configretry v0.97.0/go.mod h1:s7A6ZGxK8bxqidFzwbr2pITzbsB2qf+aeHEDQDcanV8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0 h1:IaZm011+6WKE03TFmDQ7ztp65eu8ngGc026m9KhuhB4= go.opentelemetry.io/collector/extension/zpagesextension v0.97.0/go.mod h1:PxR6gK4FEYHc6iGPH7svM9jjFIZo4o/MGGO0l+see0o= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= diff --git a/receiver/snowflakereceiver/go.mod b/receiver/snowflakereceiver/go.mod index 2ed696a36c4a..bbe6498c7b46 100644 --- a/receiver/snowflakereceiver/go.mod +++ b/receiver/snowflakereceiver/go.mod @@ -9,12 +9,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/snowflakedb/gosnowflake v1.9.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -77,13 +77,13 @@ require ( github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/sirupsen/logrus v1.9.0 // indirect github.com/zeebo/xxh3 v1.0.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/snowflakereceiver/go.sum b/receiver/snowflakereceiver/go.sum index e37394a94855..323c0fe9edb8 100644 --- a/receiver/snowflakereceiver/go.sum +++ b/receiver/snowflakereceiver/go.sum @@ -161,8 +161,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -186,22 +186,24 @@ github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/solacereceiver/go.mod b/receiver/solacereceiver/go.mod index a76219b5f459..2bbb75d626af 100644 --- a/receiver/solacereceiver/go.mod +++ b/receiver/solacereceiver/go.mod @@ -9,13 +9,13 @@ require ( github.com/Azure/go-amqp v1.0.5 github.com/stretchr/testify v1.9.0 go.opencensus.io v0.24.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 @@ -46,10 +46,10 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect diff --git a/receiver/solacereceiver/go.sum b/receiver/solacereceiver/go.sum index d307ebfc6905..b6889984a7c5 100644 --- a/receiver/solacereceiver/go.sum +++ b/receiver/solacereceiver/go.sum @@ -87,8 +87,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -109,23 +109,24 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/collector v0.97.0 h1:qyOju13byHIKEK/JehmTiGMj4pFLa4kDyrOCtTmjHU0= -go.opentelemetry.io/collector v0.97.0/go.mod h1:V6xquYAaO2VHVu4DBK28JYuikRdZajh7DH5Vl/Y8NiA= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/splunkenterprisereceiver/client.go b/receiver/splunkenterprisereceiver/client.go index 6c0bb419f766..678defcb5585 100644 --- a/receiver/splunkenterprisereceiver/client.go +++ b/receiver/splunkenterprisereceiver/client.go @@ -46,7 +46,7 @@ type splunkClient struct { endpoint *url.URL } -func newSplunkEntClient(cfg *Config, h component.Host, s component.TelemetrySettings) (*splunkEntClient, error) { +func newSplunkEntClient(ctx context.Context, cfg *Config, h component.Host, s component.TelemetrySettings) (*splunkEntClient, error) { var err error var e *url.URL var c *http.Client @@ -56,7 +56,7 @@ func newSplunkEntClient(cfg *Config, h component.Host, s component.TelemetrySett // we already checked that url.Parse does not fail in cfg.Validate() if cfg.IdxEndpoint.Endpoint != "" { e, _ = url.Parse(cfg.IdxEndpoint.Endpoint) - c, err = cfg.IdxEndpoint.ToClient(h, s) + c, err = cfg.IdxEndpoint.ToClientContext(ctx, h, s) if err != nil { return nil, err } @@ -67,7 +67,7 @@ func newSplunkEntClient(cfg *Config, h component.Host, s component.TelemetrySett } if cfg.SHEndpoint.Endpoint != "" { e, _ = url.Parse(cfg.SHEndpoint.Endpoint) - c, err = cfg.SHEndpoint.ToClient(h, s) + c, err = cfg.SHEndpoint.ToClientContext(ctx, h, s) if err != nil { return nil, err } @@ -78,7 +78,7 @@ func newSplunkEntClient(cfg *Config, h component.Host, s component.TelemetrySett } if cfg.CMEndpoint.Endpoint != "" { e, _ = url.Parse(cfg.CMEndpoint.Endpoint) - c, err = cfg.CMEndpoint.ToClient(h, s) + c, err = cfg.CMEndpoint.ToClientContext(ctx, h, s) if err != nil { return nil, err } diff --git a/receiver/splunkenterprisereceiver/client_test.go b/receiver/splunkenterprisereceiver/client_test.go index f11bc0a84ad3..28a72356d197 100644 --- a/receiver/splunkenterprisereceiver/client_test.go +++ b/receiver/splunkenterprisereceiver/client_test.go @@ -51,7 +51,7 @@ func TestClientCreation(t *testing.T) { }, } // create a client from an example config - client, err := newSplunkEntClient(cfg, host, componenttest.NewNopTelemetrySettings()) + client, err := newSplunkEntClient(context.Background(), cfg, host, componenttest.NewNopTelemetrySettings()) require.NoError(t, err) testEndpoint, _ := url.Parse("https://localhost:8089") @@ -80,7 +80,7 @@ func TestClientCreateRequest(t *testing.T) { }, } // create a client from an example config - client, err := newSplunkEntClient(cfg, host, componenttest.NewNopTelemetrySettings()) + client, err := newSplunkEntClient(context.Background(), cfg, host, componenttest.NewNopTelemetrySettings()) require.NoError(t, err) @@ -161,7 +161,7 @@ func TestAPIRequestCreate(t *testing.T) { }, } // create a client from an example config - client, err := newSplunkEntClient(cfg, host, componenttest.NewNopTelemetrySettings()) + client, err := newSplunkEntClient(context.Background(), cfg, host, componenttest.NewNopTelemetrySettings()) require.NoError(t, err) diff --git a/receiver/splunkenterprisereceiver/go.mod b/receiver/splunkenterprisereceiver/go.mod index 5c41395f5ec7..ce6d2b435f39 100644 --- a/receiver/splunkenterprisereceiver/go.mod +++ b/receiver/splunkenterprisereceiver/go.mod @@ -7,15 +7,15 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -49,17 +49,17 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/splunkenterprisereceiver/go.sum b/receiver/splunkenterprisereceiver/go.sum index b697150c1b09..49216b2ded0d 100644 --- a/receiver/splunkenterprisereceiver/go.sum +++ b/receiver/splunkenterprisereceiver/go.sum @@ -60,8 +60,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -76,38 +76,40 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/splunkenterprisereceiver/scraper.go b/receiver/splunkenterprisereceiver/scraper.go index 482c4a33fb61..e0d3abf76283 100644 --- a/receiver/splunkenterprisereceiver/scraper.go +++ b/receiver/splunkenterprisereceiver/scraper.go @@ -44,8 +44,8 @@ func newSplunkMetricsScraper(params receiver.CreateSettings, cfg *Config) splunk } // Create a client instance and add to the splunkScraper -func (s *splunkScraper) start(_ context.Context, h component.Host) (err error) { - client, err := newSplunkEntClient(s.conf, h, s.settings) +func (s *splunkScraper) start(ctx context.Context, h component.Host) (err error) { + client, err := newSplunkEntClient(ctx, s.conf, h, s.settings) if err != nil { return err } diff --git a/receiver/splunkenterprisereceiver/scraper_test.go b/receiver/splunkenterprisereceiver/scraper_test.go index e79f908089a8..cf6101c2725a 100644 --- a/receiver/splunkenterprisereceiver/scraper_test.go +++ b/receiver/splunkenterprisereceiver/scraper_test.go @@ -110,7 +110,7 @@ func TestScraper(t *testing.T) { } scraper := newSplunkMetricsScraper(receivertest.NewNopCreateSettings(), cfg) - client, err := newSplunkEntClient(cfg, host, componenttest.NewNopTelemetrySettings()) + client, err := newSplunkEntClient(context.Background(), cfg, host, componenttest.NewNopTelemetrySettings()) require.NoError(t, err) scraper.splunkClient = client diff --git a/receiver/splunkhecreceiver/go.mod b/receiver/splunkhecreceiver/go.mod index 4336c82955aa..b9bff5500579 100644 --- a/receiver/splunkhecreceiver/go.mod +++ b/receiver/splunkhecreceiver/go.mod @@ -11,15 +11,15 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/splunk v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -54,21 +54,21 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/splunkhecreceiver/go.sum b/receiver/splunkhecreceiver/go.sum index 4a74bd6322e6..460455fb8c1d 100644 --- a/receiver/splunkhecreceiver/go.sum +++ b/receiver/splunkhecreceiver/go.sum @@ -140,8 +140,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:Om github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -177,44 +177,46 @@ github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/splunkhecreceiver/receiver.go b/receiver/splunkhecreceiver/receiver.go index ef26c3b415f4..f6b347f61f41 100644 --- a/receiver/splunkhecreceiver/receiver.go +++ b/receiver/splunkhecreceiver/receiver.go @@ -181,7 +181,7 @@ func newLogsReceiver( // Start tells the receiver to start its processing. // By convention the consumer of the received data is set when the receiver // instance is created. -func (r *splunkReceiver) Start(_ context.Context, host component.Host) error { +func (r *splunkReceiver) Start(ctx context.Context, host component.Host) error { // server.Handler will be nil on initial call, otherwise noop. if r.server != nil && r.server.Handler != nil { return nil @@ -189,7 +189,7 @@ func (r *splunkReceiver) Start(_ context.Context, host component.Host) error { var ln net.Listener // set up the listener - ln, err := r.config.ServerConfig.ToListener() + ln, err := r.config.ServerConfig.ToListenerContext(ctx) if err != nil { return fmt.Errorf("failed to bind to address %s: %w", r.config.Endpoint, err) } @@ -202,7 +202,7 @@ func (r *splunkReceiver) Start(_ context.Context, host component.Host) error { } mx.NewRoute().HandlerFunc(r.handleReq) - r.server, err = r.config.ServerConfig.ToServer(host, r.settings.TelemetrySettings, mx) + r.server, err = r.config.ServerConfig.ToServerContext(ctx, host, r.settings.TelemetrySettings, mx) if err != nil { return err } diff --git a/receiver/sqlqueryreceiver/go.mod b/receiver/sqlqueryreceiver/go.mod index 6d78ed45e5fb..bcd671efaaf6 100644 --- a/receiver/sqlqueryreceiver/go.mod +++ b/receiver/sqlqueryreceiver/go.mod @@ -11,12 +11,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -134,9 +134,9 @@ require ( github.com/valyala/fastjson v1.6.4 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect github.com/zeebo/xxh3 v1.0.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/sqlqueryreceiver/go.sum b/receiver/sqlqueryreceiver/go.sum index 2643707967c7..54abc9abf1f6 100644 --- a/receiver/sqlqueryreceiver/go.sum +++ b/receiver/sqlqueryreceiver/go.sum @@ -314,24 +314,26 @@ github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/sqlserverreceiver/go.mod b/receiver/sqlserverreceiver/go.mod index c59acd3bd154..59ce098f30af 100644 --- a/receiver/sqlserverreceiver/go.mod +++ b/receiver/sqlserverreceiver/go.mod @@ -8,11 +8,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/winperfcounters v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -41,12 +41,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/stretchr/objx v0.5.2 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/sqlserverreceiver/go.sum b/receiver/sqlserverreceiver/go.sum index 07e47ed88f99..e0bd7dce064c 100644 --- a/receiver/sqlserverreceiver/go.sum +++ b/receiver/sqlserverreceiver/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -66,20 +66,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/sshcheckreceiver/go.mod b/receiver/sshcheckreceiver/go.mod index 9bf949b73e4c..ad7664c48a06 100644 --- a/receiver/sshcheckreceiver/go.mod +++ b/receiver/sshcheckreceiver/go.mod @@ -8,13 +8,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/pkg/sftp v1.13.6 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/multierr v1.11.0 golang.org/x/crypto v0.21.0 @@ -25,8 +25,8 @@ require ( github.com/knadh/koanf/providers/confmap v0.1.0 // indirect github.com/knadh/koanf/v2 v2.1.0 // indirect github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect ) @@ -38,7 +38,7 @@ require ( github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect github.com/google/uuid v1.6.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/sshcheckreceiver/go.sum b/receiver/sshcheckreceiver/go.sum index d691784a510a..e9c995126478 100644 --- a/receiver/sshcheckreceiver/go.sum +++ b/receiver/sshcheckreceiver/go.sum @@ -54,8 +54,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -72,24 +72,26 @@ github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8 github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/statsdreceiver/go.mod b/receiver/statsdreceiver/go.mod index e6c7c85f93d3..28ae3542cb84 100644 --- a/receiver/statsdreceiver/go.mod +++ b/receiver/statsdreceiver/go.mod @@ -7,14 +7,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 @@ -45,11 +45,11 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect diff --git a/receiver/statsdreceiver/go.sum b/receiver/statsdreceiver/go.sum index 744266c2a1c6..124f92b07380 100644 --- a/receiver/statsdreceiver/go.sum +++ b/receiver/statsdreceiver/go.sum @@ -54,8 +54,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -68,26 +68,28 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/syslogreceiver/go.mod b/receiver/syslogreceiver/go.mod index 4d02a198389a..52c78bdd014f 100644 --- a/receiver/syslogreceiver/go.mod +++ b/receiver/syslogreceiver/go.mod @@ -6,11 +6,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -43,16 +43,16 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/valyala/fastjson v1.6.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/syslogreceiver/go.sum b/receiver/syslogreceiver/go.sum index 3f89384004c3..1631a36009b6 100644 --- a/receiver/syslogreceiver/go.sum +++ b/receiver/syslogreceiver/go.sum @@ -65,8 +65,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -85,28 +85,30 @@ github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLr github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/tcplogreceiver/go.mod b/receiver/tcplogreceiver/go.mod index a7d23d141f73..0ccaf086bf87 100644 --- a/receiver/tcplogreceiver/go.mod +++ b/receiver/tcplogreceiver/go.mod @@ -5,10 +5,10 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -42,17 +42,17 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/valyala/fastjson v1.6.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/tcplogreceiver/go.sum b/receiver/tcplogreceiver/go.sum index 3f89384004c3..1631a36009b6 100644 --- a/receiver/tcplogreceiver/go.sum +++ b/receiver/tcplogreceiver/go.sum @@ -65,8 +65,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -85,28 +85,30 @@ github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLr github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/udplogreceiver/go.mod b/receiver/udplogreceiver/go.mod index 33c42526a82f..391c4a2f5c86 100644 --- a/receiver/udplogreceiver/go.mod +++ b/receiver/udplogreceiver/go.mod @@ -5,10 +5,10 @@ go 1.21 require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -40,15 +40,15 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/valyala/fastjson v1.6.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/udplogreceiver/go.sum b/receiver/udplogreceiver/go.sum index a94054ce8011..c3adefe95121 100644 --- a/receiver/udplogreceiver/go.sum +++ b/receiver/udplogreceiver/go.sum @@ -61,8 +61,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -81,24 +81,26 @@ github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLr github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/vcenterreceiver/go.mod b/receiver/vcenterreceiver/go.mod index 43d9bbf25378..9f64927f491a 100644 --- a/receiver/vcenterreceiver/go.mod +++ b/receiver/vcenterreceiver/go.mod @@ -10,14 +10,14 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/vmware/govmomi v0.36.3 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -75,7 +75,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -85,8 +85,8 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/vcenterreceiver/go.sum b/receiver/vcenterreceiver/go.sum index 3d23671b52f9..fc72b827c74e 100644 --- a/receiver/vcenterreceiver/go.sum +++ b/receiver/vcenterreceiver/go.sum @@ -118,8 +118,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -157,26 +157,28 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/wavefrontreceiver/go.mod b/receiver/wavefrontreceiver/go.mod index b2fe74836532..08350f0062e9 100644 --- a/receiver/wavefrontreceiver/go.mod +++ b/receiver/wavefrontreceiver/go.mod @@ -7,12 +7,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/carbonreceiver v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -39,12 +39,12 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/wavefrontreceiver/go.sum b/receiver/wavefrontreceiver/go.sum index 49239e747fbd..d1387edb8d80 100644 --- a/receiver/wavefrontreceiver/go.sum +++ b/receiver/wavefrontreceiver/go.sum @@ -52,8 +52,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -66,24 +66,26 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/webhookeventreceiver/go.mod b/receiver/webhookeventreceiver/go.mod index 88050912e56d..07daa428a157 100644 --- a/receiver/webhookeventreceiver/go.mod +++ b/receiver/webhookeventreceiver/go.mod @@ -6,12 +6,12 @@ require ( github.com/json-iterator/go v1.1.12 github.com/julienschmidt/httprouter v1.3.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -43,20 +43,20 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/webhookeventreceiver/go.sum b/receiver/webhookeventreceiver/go.sum index 30d6a5b5e773..bd0856a955d5 100644 --- a/receiver/webhookeventreceiver/go.sum +++ b/receiver/webhookeventreceiver/go.sum @@ -62,8 +62,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -78,38 +78,40 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/webhookeventreceiver/receiver.go b/receiver/webhookeventreceiver/receiver.go index a7feda87eed8..a6789da94d76 100644 --- a/receiver/webhookeventreceiver/receiver.go +++ b/receiver/webhookeventreceiver/receiver.go @@ -82,14 +82,14 @@ func newLogsReceiver(params receiver.CreateSettings, cfg Config, consumer consum } // Start function manages receiver startup tasks. part of the receiver.Logs interface. -func (er *eventReceiver) Start(_ context.Context, host component.Host) error { +func (er *eventReceiver) Start(ctx context.Context, host component.Host) error { // noop if not nil. if start has not been called before these values should be nil. if er.server != nil && er.server.Handler != nil { return nil } // create listener from config - ln, err := er.cfg.ServerConfig.ToListener() + ln, err := er.cfg.ServerConfig.ToListenerContext(ctx) if err != nil { return err } @@ -101,7 +101,7 @@ func (er *eventReceiver) Start(_ context.Context, host component.Host) error { router.GET(er.cfg.HealthPath, er.handleHealthCheck) // webhook server standup and configuration - er.server, err = er.cfg.ServerConfig.ToServer(host, er.settings.TelemetrySettings, router) + er.server, err = er.cfg.ServerConfig.ToServerContext(ctx, host, er.settings.TelemetrySettings, router) if err != nil { return err } diff --git a/receiver/windowseventlogreceiver/go.mod b/receiver/windowseventlogreceiver/go.mod index 9b60b977e700..df3e381e0a70 100644 --- a/receiver/windowseventlogreceiver/go.mod +++ b/receiver/windowseventlogreceiver/go.mod @@ -6,10 +6,10 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -41,15 +41,15 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/valyala/fastjson v1.6.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/windowseventlogreceiver/go.sum b/receiver/windowseventlogreceiver/go.sum index a94054ce8011..c3adefe95121 100644 --- a/receiver/windowseventlogreceiver/go.sum +++ b/receiver/windowseventlogreceiver/go.sum @@ -61,8 +61,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -81,24 +81,26 @@ github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLr github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/windowsperfcountersreceiver/go.mod b/receiver/windowsperfcountersreceiver/go.mod index 0935c23ed568..2ea2b7583f97 100644 --- a/receiver/windowsperfcountersreceiver/go.mod +++ b/receiver/windowsperfcountersreceiver/go.mod @@ -7,11 +7,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/winperfcounters v0.97.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -40,11 +40,11 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect diff --git a/receiver/windowsperfcountersreceiver/go.sum b/receiver/windowsperfcountersreceiver/go.sum index 8b6bd310e1fb..04b91ca105ba 100644 --- a/receiver/windowsperfcountersreceiver/go.sum +++ b/receiver/windowsperfcountersreceiver/go.sum @@ -50,8 +50,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -64,20 +64,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/exporters/prometheus v0.46.0 h1:I8WIFXR351FoLJYuloU4EgXbtNX2URfU/85pUPheIEQ= diff --git a/receiver/zipkinreceiver/go.mod b/receiver/zipkinreceiver/go.mod index ba72a3579c21..d0f0d4003d3e 100644 --- a/receiver/zipkinreceiver/go.mod +++ b/receiver/zipkinreceiver/go.mod @@ -9,13 +9,13 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.97.0 github.com/openzipkin/zipkin-go v0.4.2 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -48,20 +48,20 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.49.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/zipkinreceiver/go.sum b/receiver/zipkinreceiver/go.sum index f7c808680c30..7c12c87ceb8d 100644 --- a/receiver/zipkinreceiver/go.sum +++ b/receiver/zipkinreceiver/go.sum @@ -68,8 +68,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.49.0 h1:ToNTdK4zSnPVJmh698mGFkDor9wBI/iGaJy5dbH1EgI= github.com/prometheus/common v0.49.0/go.mod h1:Kxm+EULxRbUkjGU6WFsQqo3ORzB4tyKvlWFOE9mB2sE= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -84,40 +84,42 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/receiver/zipkinreceiver/trace_receiver.go b/receiver/zipkinreceiver/trace_receiver.go index c525f7305e10..74cba08793b2 100644 --- a/receiver/zipkinreceiver/trace_receiver.go +++ b/receiver/zipkinreceiver/trace_receiver.go @@ -86,19 +86,19 @@ func newReceiver(config *Config, nextConsumer consumer.Traces, settings receiver } // Start spins up the receiver's HTTP server and makes the receiver start its processing. -func (zr *zipkinReceiver) Start(_ context.Context, host component.Host) error { +func (zr *zipkinReceiver) Start(ctx context.Context, host component.Host) error { if host == nil { return errors.New("nil host") } var err error - zr.server, err = zr.config.ServerConfig.ToServer(host, zr.settings.TelemetrySettings, zr) + zr.server, err = zr.config.ServerConfig.ToServerContext(ctx, host, zr.settings.TelemetrySettings, zr) if err != nil { return err } var listener net.Listener - listener, err = zr.config.ServerConfig.ToListener() + listener, err = zr.config.ServerConfig.ToListenerContext(ctx) if err != nil { return err } diff --git a/receiver/zookeeperreceiver/go.mod b/receiver/zookeeperreceiver/go.mod index c76272a90257..1b5d91aebc0e 100644 --- a/receiver/zookeeperreceiver/go.mod +++ b/receiver/zookeeperreceiver/go.mod @@ -10,12 +10,12 @@ require ( github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.97.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.29.1 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 @@ -70,7 +70,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/shirou/gopsutil/v3 v3.24.3 // indirect @@ -79,9 +79,9 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/receiver/zookeeperreceiver/go.sum b/receiver/zookeeperreceiver/go.sum index b52ce1e95c78..faa20da5fd11 100644 --- a/receiver/zookeeperreceiver/go.sum +++ b/receiver/zookeeperreceiver/go.sum @@ -112,8 +112,8 @@ github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -149,24 +149,26 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 h1:x8Z78aZx8cOF0+Kkazoc7lwUNMGy0LrzEMxTm4BbTxg= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0/go.mod h1:62CPTSry9QZtOaSsE3tOzhx6LzDhHnXJ6xHeMNNiM6Q= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/testbed/go.mod b/testbed/go.mod index a10a11dd6003..45a64ad5506e 100644 --- a/testbed/go.mod +++ b/testbed/go.mod @@ -33,31 +33,31 @@ require ( github.com/prometheus/prometheus v0.51.2-0.20240405174432-b4a973753c6e github.com/shirou/gopsutil/v3 v3.24.3 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 go.uber.org/multierr v1.11.0 go.uber.org/zap v1.27.0 @@ -215,20 +215,20 @@ require ( github.com/vultr/govultr/v2 v2.17.2 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/config v0.4.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect diff --git a/testbed/go.sum b/testbed/go.sum index 9eab2f9288f1..b468e5c8da64 100644 --- a/testbed/go.sum +++ b/testbed/go.sum @@ -666,84 +666,86 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b h1:xxN2YN67whOcvltdEdd2dyNdVcE6YSC0+bFfq066sD0= -go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ElbNeeSY0TE2uYQtWT8BnO1cTBPhmZMGM+wwxnpHi7M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b h1:BGVgqC5lzc+cDDIE7XaTp9l+4BSpaZMjri8PV1wByJk= -go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b h1:3TuOjZ1gP4erbZSJlggA9LC5X4kCJo7pmQcSyyA9ZV8= -go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:wxLE5rlYiJ3IVqA+PP3PlJdhJJRS2w0IZ3TlYcbFjss= -go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:DhN1adbivhGcWT50oV34yuovMn+kxewBkDAKOhcRMsQ= -go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:CR/iO/pyt6HviXfR+ZG5lox01jqMUWnua/wIwr25uZg= -go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:fxYRCKbt7PhjHUvg0QAy9KJsaS66e56p7I3/cdxjGqY= -go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b h1:WPy1EUzdCLVruoozoNEtQUyFxjjZNvGvAHWxYoKeajM= -go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b h1:+6sYZW//g/sIkU/HR3/37cQSD1MYRR5bszea2Um1K2I= -go.opentelemetry.io/collector/connector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:th4Bw2oOhaWgdH2bmbFhyRILkMzbVFaImvzW6fu5qQY= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:peaYUYJQuzSDBH0bbjDaFxep/qut+VY8eSa28OPOjsE= -go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:bD14O9UdbCLRMllSqObkA1klraPHe0GWmw4QUBxNH2g= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:jv6wp8Muswbz/iS62KGDNUZx2GSBsnL9zL2RAQDQTxw= -go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:d0SAS68CUbHU+GKOrzMlGMWCsRfn8a9Rh8AUOHxC+xk= -go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b h1:rkbtSTjRgfd9eR/UdSMJJr4QtMoRLGqD3AvLffcqIZg= -go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:radMtwB70wa+R+EeMpzqa3T7UoEw/4NbnjjTB4BJn/8= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b h1:J47Jgx/R5B8BcwaWcrO2lmo/4h8QG29YTPvLBSeZ2dU= -go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lSa1oK8+RQHN+Jjz852mL0Ivd/EWLh5IRy/OD91YnDo= -go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b h1:6tiaV2CzIB2mw5koYn24FKENKnUDhVwry+gtQUvw47I= -go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:N3BDFI4ghKltAUTWZ+Xovk6dw64MAmRWXlWx/77XlSo= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b h1:iuM07pInni5+vgpYyDcls7bjq/7qrMrCC9OMry+kYLU= -go.opentelemetry.io/collector/otelcol v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:rvShi25g8ahSX9Jzv3EXpa8ODTss5qYP4ACka9bS2H4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b h1:7gY5Ua5hfo+yfiPvNenGgGs8edjm56cCTDOioTjlCO0= -go.opentelemetry.io/collector/processor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PTAyeSS2kaaBc/AdQkF5lf10o9NTAOjBjcGcEiGy1t8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:N6fTJntqy3oF1XqyzYlUEHQoufHkFZFRgZpyqrIrVD8= -go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:PQT0pfQmMyl6wbrgMCMIhetBNXLfXbU3wxYM0aUI2t8= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b h1:Ka/rte5zyQ0Sm7esxDRmhmO4JSHYIVfj8VbEVWJKRJ0= -go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:JVGUkc1eFmFDBGqr94dl+dqF2FFPe7LeBeWGvJiFWmM= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b h1:d9xejxpSk5O46aM1X5nUb1qGQl1ToGQJy39csqnYl7c= -go.opentelemetry.io/collector/receiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:oj/eoc8Wf9u82gaPeRVdHmFbJ5e3m5F1v5CFTpjiVFU= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b h1:2BGhGCTz/u8belzwCsUyvrCUd6LOq86Imhjs9KFLSIQ= -go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:7iMRy+V3iGQS7Jg9YyN1SzIcE3QwNOF4hD32M6SgZ9s= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b h1:2ApIgbCJPzABy6TDKlc9b55J/zo6ixAIMPvIUC2nB9U= -go.opentelemetry.io/collector/semconv v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b h1:CWjK3Hn7YbjRIC9iKOMlM+2e3QXxrIfhxngVRAuaZq4= -go.opentelemetry.io/collector/service v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:vEPL7zYSiWtXe0OY4Uwl884rMRlFE8BWQFLzA4657/g= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4 h1:MOyv9t5mATkznmTKzkGjhXwHeqXmgbawUqAI+iO6/r4= +go.opentelemetry.io/collector/config/configgrpc v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:u4dIEsf6s6QH3eiQW9Qxsmavv4JwlBT/6bs2dL9s5Y4= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4 h1:WzFB0oH+h8iJlHKGvAK6wlz3SWa5xBAPg9Ufpn2t19E= +go.opentelemetry.io/collector/config/confignet v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:3naWoPss70RhDHhYjGACi7xh4NcVRvs9itzIRVWyu1k= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4 h1:VzE7QHEqpkvIpnte+Pff0oCgqbvnOjp48X2Tzo6kgp8= +go.opentelemetry.io/collector/confmap/converter/expandconverter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:x7Ignt1dSgYiNxAcBl03tVNCzbFUfF46H3Z5G3U2RmI= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:AACPTviWyRWdnssMFcPJhh5CsdFmdvPtd8RSpUWPxx8= +go.opentelemetry.io/collector/confmap/provider/envprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:JADkYRoAa0K6CiDyq5e7aY2U3xGwBiVbRIsmVsAEHDw= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:94sJQP37T2Q2B/k+ZoWtVFTtZsKD1Uf7WIm/8H6mLHM= +go.opentelemetry.io/collector/confmap/provider/fileprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9b9v3kRkNPIV5wknD3nRRUv8IaGk9H6d5KPmKe3W0uk= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:kFhmJvEO7FgsDidTrfbSOa2AxAiLTmS4tibPvs/9xNg= +go.opentelemetry.io/collector/confmap/provider/httpprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:0k+JYIhK2cPWa64JouGgATtSKTLxA/oYRWaimzZHzRg= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:ep7CBic3byWHEytfadVXcXxgcOGCYVIo38wMk7trv4w= +go.opentelemetry.io/collector/confmap/provider/httpsprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:EpI4iIygH8YVMLA0liFbSB0/e8Kxf6y8OOXtXsPhx04= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4 h1:bT0P0zKh1etpv9fD6BjGBgY5tcbRPLBx3YufO3IrYFI= +go.opentelemetry.io/collector/confmap/provider/yamlprovider v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9XhQozmgKTbMcbXDCNVO09CgkBMSo5p+cqEFRJhplS8= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4 h1:N/lD95ooajip6gsV7bnSa05VPY7NmzuocQepbYKEK9Y= +go.opentelemetry.io/collector/connector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4lVShkZkeE54S6pyG7sBdWbJ33LBRJjNQzm46n3c4OA= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:xpgItQmezCZaGj/7+YlfcPuxxd5FM1Kho5b5VIUxXAY= +go.opentelemetry.io/collector/exporter/debugexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:49WJwX7BbMsPUQwIwax6dAo4k4wqGSrUDmR2FSIn6jI= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:EZ1WfK0tKytC56o30ZhSj+1IROllj+XMGe0pqm5KGOM= +go.opentelemetry.io/collector/exporter/otlpexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:s3L5toZ5PsceEgmDiZvFEQQwyos8VxdpZ1e7fokrwAE= +go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4 h1:TnTlVrAXmjQfV8JRqMZyXdIWuiW6Kj+5HjlQz8rlIW8= +go.opentelemetry.io/collector/exporter/otlphttpexporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:4VUw2sqVrGPa8moPsnYsIx0TRlRrrFVJJMXWMlxT4qM= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4 h1:AviXbdVcPOg7s03b+ghJNoNehjkXB2dGIR8bp6hdZoA= +go.opentelemetry.io/collector/extension/ballastextension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:LVCgfLNNJ3pYTbuWtQ0t+ojGz78eRM6m9iIKlJOGIOU= +go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4 h1:hMqlVhoK86vxIbtJZhOJ4pDDFcsz11wudLAx9jwwsg0= +go.opentelemetry.io/collector/extension/zpagesextension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:/hIvDIGbSmk4BDjkSNi/8S7Ggk3xoy0SiZURLTYiZQU= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 h1:c2bNu8xTbfHXOBTgw9LgnG+u01vFKOBQRILCbAKg74o= +go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WCxY34NvZO/tehxTfrhJNOfyUrsZQ1sG6zmOk76mVvo= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4 h1:9hr9dcazXrm+CgpCyYbNE2NiuosEeIrZOwfqfKC6lqE= +go.opentelemetry.io/collector/processor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:zy//gZN0N8O9fd4Xl7U0uG4gMIpUpoJAsun/3fO7Q+U= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:9R1/JvMGEWQ6RFFwM+gapcLQ7ifoHIc9Gf069s68NHg= +go.opentelemetry.io/collector/processor/batchprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:hVjG473YW3b0+fePjuoAnQIVx1YsDPtJutLtdf1BzAQ= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4 h1:5gJF1aDG3CPKgnUUV8244ebRWn7zwNhacGAXoArXETI= +go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:WbMSjJjS13vslBYjSck1/Zt7TcD2sLt0BldNm7khVuQ= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 h1:WqD/vSrzTbikE9Xwud5Hq0uazjpj4OFoE/ffMTlccqU= +go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:9IkjjBuzZc/OhF0xqlqNJhDGKeO6w4A3E8Ei03JAcRg= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 h1:1fK2opVPB6UR/hHdEqdfmYVl/giRN2OH5I+xQxTpjsw= +go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ZGfb4W79P7bBsXYIl9p2r+mTn6PtxZFDWK3yGwc43fw= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 h1:FeunlAbm0KAdqqsARoMWfrF8GNB1EqFVl3rzTXgYa/c= +go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:8ElcRZ8Cdw5JnvhTOQOdYizkJaQ10Z2fS+R6djOnj6A= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4 h1:9hCKROYyCJMO392COSnf8hKHlY/VL+0N93r6qC9Malc= +go.opentelemetry.io/collector/service v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:cI8cEKV/TJKzR3SV1Vu6mZbrBbQ+FTBt/Mn9TnTXr70= go.opentelemetry.io/contrib/config v0.4.0 h1:Xb+ncYOqseLroMuBesGNRgVQolXcXOhMj7EhGwJCdHs= go.opentelemetry.io/contrib/config v0.4.0/go.mod h1:drNk2xRqLWW4/amk6Uh1S+sDAJTc7bcEEN1GfJzj418= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= diff --git a/testbed/mockdatasenders/mockdatadogagentexporter/go.mod b/testbed/mockdatasenders/mockdatadogagentexporter/go.mod index 1adb797e7fa7..61c16e553475 100644 --- a/testbed/mockdatasenders/mockdatadogagentexporter/go.mod +++ b/testbed/mockdatasenders/mockdatadogagentexporter/go.mod @@ -5,11 +5,11 @@ go 1.21 require ( github.com/DataDog/datadog-agent/pkg/trace/exportable v0.0.0-20201016145401-4646cf596b02 github.com/tinylib/msgp v1.1.9 - go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b - go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b + go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 ) require ( @@ -36,22 +36,22 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/philhofer/fwd v1.1.2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.0 // indirect + github.com/prometheus/client_model v0.6.1 // indirect github.com/prometheus/common v0.48.0 // indirect github.com/prometheus/procfs v0.12.0 // indirect github.com/rs/cors v1.10.1 // indirect - go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b // indirect - go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b // indirect + go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 // indirect + go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect diff --git a/testbed/mockdatasenders/mockdatadogagentexporter/go.sum b/testbed/mockdatasenders/mockdatadogagentexporter/go.sum index a9fa002885ff..de112537b872 100644 --- a/testbed/mockdatasenders/mockdatadogagentexporter/go.sum +++ b/testbed/mockdatasenders/mockdatadogagentexporter/go.sum @@ -81,8 +81,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU= github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k= -github.com/prometheus/client_model v0.6.0 h1:k1v3CzpSRUTrKMppY35TLwPvxHqBu0bYgxZzqGIgaos= -github.com/prometheus/client_model v0.6.0/go.mod h1:NTQHnmxFpouOD0DpvP4XujX3CdOAGQPoaGhyTchlyt8= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= @@ -106,40 +106,42 @@ github.com/vmihailenco/tagparser v0.1.1 h1:quXMXlA39OCbd2wAdTsGDlK9RkOk6Wuw+x37w github.com/vmihailenco/tagparser v0.1.1/go.mod h1:OeAg3pn3UbLjkWt+rN9oFYB6u/cQgqMEUPoW2WPyhdI= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b h1:AtFiwRf8juWFUzVnFUMpDMKJ4YkW6wcVxixHmHUiX4I= -go.opentelemetry.io/collector v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:w3KXCBoPBDBLr3Tm2w8OwHRSekhV7b21v2c7IFdvtME= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b h1:29/V47ImlACNHKVkWHFMCkxKzX32D8d0bW5umaQv5yQ= -go.opentelemetry.io/collector/component v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:p2vEqVfnfj3tRc06lx8agAvn7r0zSGJuPVwAe+6APu8= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b h1:dwVlB/kvnu1P4QDzYCFJjWbet1Lz7Nuk5TJUXzIk8so= -go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b h1:O81owQH9XElFfYIFzCP7GehtzuWol3Q4VLBlXxOdvzs= -go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b h1:n4PEd3vtQXEispsRR4eNHzZsXzDKxWOW/YdiWhZfqtw= -go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:hZPLIWJ2BstehgMZtplK4F7fOkwWn6iIdkR2l8cc7sU= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b h1:A0EQPGnPygwT49wzuJYEK0cFH18xTjAxf4TWTa5VdVc= -go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b h1:fdvwem9pqSfzQx0mWfzmAfvdwNpGtDc66ShfAKzL3Yo= -go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b h1:PCfDvO6jGOvb3NbsDH0W5ZWfxamP9CGsun3OyhtjEAI= -go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b h1:eq6nR6D8p011PG9ThYfcM15iW+X8GOLeeHPJK4pqOew= -go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b h1:jyfaiQja9t9K+U/Vo8KsnBqf6gjyhSy4niSkNH/WcDE= -go.opentelemetry.io/collector/config/internal v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:RVGDn9OH/KHT878cclG497/n2qxe54+zW+u/SVsRLNw= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b h1:cWFozg6qg4RZVHMOI1uBlwgF2Axbn7/wjQJzA1bO+yA= -go.opentelemetry.io/collector/confmap v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b h1:cAIKP1naEzyeDZ/CqgX5bJVPHoQDN/+tiDeOUA3pHes= -go.opentelemetry.io/collector/consumer v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:IRMtNtp7800SMh9tAbDlHmePtUrKYNln/0dLPRpzMo8= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b h1:JupEe4wH6+wzzfiiDqHKI+euva3nu7MDmT8NhLGdEE4= -go.opentelemetry.io/collector/exporter v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:Oq6SCLx9tQch5zeleIkhUw/e2g16+yQkyztCHsAHKNU= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b h1:iCSPv90KuGxrZrHlxHoK4NbieCYI1LefbIA2ibSPK4Q= -go.opentelemetry.io/collector/extension v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:lH0aoM1EPinhsCpCt8T/Cq3cLcajj/v2FmKz7fhaKqU= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b h1:nGSkuB8HLLJA3thXN1SY3IaCBXnzebVNnEmD9TPWi7c= -go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240404121116-4f1a8936d26b/go.mod h1:HFwFVE+3UGuP8H1kihry7syB9ziPBBe/uaRhotTGmbE= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b h1:9qC+hi8udgAtQdp8dKJQWUneCuZBeZpUDMJNv3IYg70= -go.opentelemetry.io/collector/featuregate v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b h1:HQqz9wEcXL43u43xCE/8aKj35Kn8+1uKJxfhjD9qXu4= -go.opentelemetry.io/collector/pdata v1.4.1-0.20240404121116-4f1a8936d26b/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4 h1:2t5axZqKOQWX4n4tHzVOsFvv6JddzYcYPtnpm90yQ88= +go.opentelemetry.io/collector v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:tqJMDpvR9AgWwvfUiQnvYBfOc2jCQdmA700G92iU1to= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 h1:47QO6HD8Ts3w9fAV0Qf3lIH8RFP1vXK1xEPAcL7FYkE= +go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:um+Bn0rshAr3diL1p+GCpw3cRxENFYMNIPBL6Hl8Pok= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4 h1:K3f0I78lNSRzVhnJXImvaamrtruaJogM+HfeOa9AG00= +go.opentelemetry.io/collector/config/configauth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:A4BsRG1t+Q2BAHEKAvPZFLw2UJ3sI13zJw/uEeoS3CM= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4 h1:P1FcVtYngHDr+ZscLmMnG2wa03C0uVPKOFDBtLnwvrg= +go.opentelemetry.io/collector/config/configcompression v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:O0fOPCADyGwGLLIf5lf7N3960NsnIfxsm6dr/mIpL+M= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4 h1:TL1L8CAvJ9g/JOeHUbyQSVRTvVtBnpUCvBshfhnaIoc= +go.opentelemetry.io/collector/config/confighttp v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:261fK5cPVhNStWNvEjifx3Ev1seAuTZ+QE+obRhFSdI= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4 h1:YYWytbJOhBQKt2NyCxc10Wk57kYs5i5jiZNftOu9Qw0= +go.opentelemetry.io/collector/config/configopaque v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:U1IpLFisA6ChU2xBKSJfy7ivI/DaDSurgvoEFKfPVwo= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4 h1:ig9pOmasum4InkD+9bCWwvH+Y81fHW1SfYnigJJKjpc= +go.opentelemetry.io/collector/config/configretry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:uRdmPeCkrW9Zsadh2WEbQ1AGXGYJ02vCfmmT+0g69nY= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4 h1:pgNIGcQNf2rAI7qtUV7UGk+4D8RD/m8CeoU/Sv5qvIM= +go.opentelemetry.io/collector/config/configtelemetry v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:YV5PaOdtnU1xRomPcYqoHmyCr48tnaAREeGO96EZw8o= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4 h1:1rmikYza0o9sCLl1b0//YhSweWVxBNnON9fIV5c0Ca0= +go.opentelemetry.io/collector/config/configtls v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:ev/fMI6hm1WTSHHEAEoVjF3RZj0qf38E/XO5itFku7k= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4 h1:eZRMTWfLvb8gr0CV0FpBaGplPILfdpxlzYf0GkACpXQ= +go.opentelemetry.io/collector/config/internal v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:d8YT8hls4hTd4lJcHsH87+vhQr3etcOKcHynjvHVH1Q= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 h1:66aIqz1za7iONOam/MFy34022jW2RugCLu1ULadOtl0= +go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:U5bMvFybP/N7lvWWaLYRh7jKHEVQufdQTzHUXxvN+4o= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 h1:+LSirb0OpU/eanlXFC3P8DoP9S4GLmpvkDJNq7Vl7Eg= +go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:Lujbo4+QG6MqsDg7RrHgxabunHmJotOcxsltp9LXK+o= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 h1:rYpir84QNj/I6HK93qvem/2eAvrqjDCe4LuvYh2Z/Ew= +go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:OHn9WUrvuwpVZ7irRMN38//igefWPERx2Cc6qz/YVAs= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4 h1:M06Di3xw6+3kjF+nxMxgJfYlbJaInDk9cbfcDUtrhyc= +go.opentelemetry.io/collector/extension v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:l3tQCs5v5nB6KWYWcqxfTN8vmqY+PYPWFRHoLt/JVrc= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4 h1:RjcraF7AXWHw0Y3+VURjwpkKzlHVc8pppoDThyLqLuk= +go.opentelemetry.io/collector/extension/auth v0.97.1-0.20240409140257-792fac1b62d4/go.mod h1:bWZO9LFly+/MSebmb6TFKaIOq/6iaGLhI2xYS/bDrrY= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4 h1:Dlj1C65sI27LUVXUJdp8AigxEYlOdmbqr38Xos3Bu6E= +go.opentelemetry.io/collector/featuregate v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:w7nUODKxEi3FLf1HslCiE6YWtMtOOrMnSwsDam8Mg9w= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 h1:0uZ71auKC4N2HywHOVmzdVdhKMhG1z58kwnAGyHnRMM= +go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4/go.mod h1:TYj8aKRWZyT/KuKQXKyqSEvK/GV+slFaDMEI+Ke64Yw= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a h1:CNqGTeCcU2jgQsFQNc0M5rW4INQuU+6DogXCjA9DJL0= +go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a/go.mod h1:uiXF/65D9jlsBwPIIzGDi+Mi4N0rvfCQowbGP/UkGrM= go.opentelemetry.io/collector/receiver v0.97.0 h1:ozzE5MhIPtfnYA/UKB/NCcgxSmeLqdwErboi6B/IpLQ= go.opentelemetry.io/collector/receiver v0.97.0/go.mod h1:1TCN9DRuB45+xKqlwv4BMQR6qXgaJeSSNezFTJhmDUo= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= diff --git a/testbed/mockdatasenders/mockdatadogagentexporter/traces_exporter.go b/testbed/mockdatasenders/mockdatadogagentexporter/traces_exporter.go index e0eebac45236..d68cae0df373 100644 --- a/testbed/mockdatasenders/mockdatadogagentexporter/traces_exporter.go +++ b/testbed/mockdatasenders/mockdatadogagentexporter/traces_exporter.go @@ -37,8 +37,8 @@ func createExporter(c *Config) *ddExporter { } // start creates the http client -func (dd *ddExporter) start(_ context.Context, host component.Host) (err error) { - dd.client, err = dd.clientSettings.ToClient(host, componenttest.NewNopTelemetrySettings()) +func (dd *ddExporter) start(ctx context.Context, host component.Host) (err error) { + dd.client, err = dd.clientSettings.ToClientContext(ctx, host, componenttest.NewNopTelemetrySettings()) return } From 81d411408ea19a990eedfc7e332906f05dd47c8f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 11:15:50 -0700 Subject: [PATCH 18/21] Update module golang.org/x/net to v0.24.0 (#32262) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | golang.org/x/net | `v0.23.0` -> `v0.24.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fnet/v0.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fnet/v0.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fnet/v0.23.0/v0.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fnet/v0.23.0/v0.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- cmd/configschema/go.mod | 2 +- cmd/configschema/go.sum | 4 ++-- cmd/otelcontribcol/go.mod | 2 +- cmd/otelcontribcol/go.sum | 4 ++-- exporter/awscloudwatchlogsexporter/go.mod | 4 ++-- exporter/awscloudwatchlogsexporter/go.sum | 8 ++++---- exporter/awsemfexporter/go.mod | 4 ++-- exporter/awsemfexporter/go.sum | 8 ++++---- exporter/awsxrayexporter/go.mod | 4 ++-- exporter/awsxrayexporter/go.sum | 8 ++++---- exporter/azuremonitorexporter/go.mod | 4 ++-- exporter/azuremonitorexporter/go.sum | 8 ++++---- go.mod | 2 +- go.sum | 4 ++-- internal/aws/awsutil/go.mod | 2 +- internal/aws/awsutil/go.sum | 4 ++-- internal/aws/xray/go.mod | 4 ++-- internal/aws/xray/go.sum | 8 ++++---- processor/remotetapprocessor/go.mod | 4 ++-- processor/remotetapprocessor/go.sum | 8 ++++---- receiver/awscontainerinsightreceiver/go.mod | 6 +++--- receiver/awscontainerinsightreceiver/go.sum | 11 ++++++----- receiver/awsxrayreceiver/go.mod | 4 ++-- receiver/awsxrayreceiver/go.sum | 8 ++++---- 24 files changed, 63 insertions(+), 62 deletions(-) diff --git a/cmd/configschema/go.mod b/cmd/configschema/go.mod index 103b0a034902..92f6f8e9e9f6 100644 --- a/cmd/configschema/go.mod +++ b/cmd/configschema/go.mod @@ -684,7 +684,7 @@ require ( go.uber.org/zap v1.27.0 // indirect golang.org/x/crypto v0.22.0 // indirect golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 // indirect - golang.org/x/net v0.23.0 // indirect + golang.org/x/net v0.24.0 // indirect golang.org/x/oauth2 v0.18.0 // indirect golang.org/x/sync v0.6.0 // indirect golang.org/x/sys v0.19.0 // indirect diff --git a/cmd/configschema/go.sum b/cmd/configschema/go.sum index f0d7c4d6aea7..e5d9fd1950ee 100644 --- a/cmd/configschema/go.sum +++ b/cmd/configschema/go.sum @@ -1929,8 +1929,8 @@ golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= diff --git a/cmd/otelcontribcol/go.mod b/cmd/otelcontribcol/go.mod index b17cd23b73cd..7a11599059e0 100644 --- a/cmd/otelcontribcol/go.mod +++ b/cmd/otelcontribcol/go.mod @@ -703,7 +703,7 @@ require ( golang.org/x/crypto v0.22.0 // indirect golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 // indirect golang.org/x/mod v0.16.0 // indirect - golang.org/x/net v0.23.0 // indirect + golang.org/x/net v0.24.0 // indirect golang.org/x/oauth2 v0.18.0 // indirect golang.org/x/sync v0.6.0 // indirect golang.org/x/term v0.19.0 // indirect diff --git a/cmd/otelcontribcol/go.sum b/cmd/otelcontribcol/go.sum index fb849f3ab5b0..7fef2b8d5450 100644 --- a/cmd/otelcontribcol/go.sum +++ b/cmd/otelcontribcol/go.sum @@ -1932,8 +1932,8 @@ golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= diff --git a/exporter/awscloudwatchlogsexporter/go.mod b/exporter/awscloudwatchlogsexporter/go.mod index c0aae0f02f22..3ab37ad74c31 100644 --- a/exporter/awscloudwatchlogsexporter/go.mod +++ b/exporter/awscloudwatchlogsexporter/go.mod @@ -54,8 +54,8 @@ require ( go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect - golang.org/x/net v0.23.0 // indirect - golang.org/x/sys v0.18.0 // indirect + golang.org/x/net v0.24.0 // indirect + golang.org/x/sys v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect google.golang.org/grpc v1.62.1 // indirect diff --git a/exporter/awscloudwatchlogsexporter/go.sum b/exporter/awscloudwatchlogsexporter/go.sum index 0b0e936218a6..9e74e27cebc6 100644 --- a/exporter/awscloudwatchlogsexporter/go.sum +++ b/exporter/awscloudwatchlogsexporter/go.sum @@ -123,16 +123,16 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= -golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= diff --git a/exporter/awsemfexporter/go.mod b/exporter/awsemfexporter/go.mod index dab8c51261e7..559ce110faf2 100644 --- a/exporter/awsemfexporter/go.mod +++ b/exporter/awsemfexporter/go.mod @@ -60,8 +60,8 @@ require ( go.opentelemetry.io/otel/exporters/prometheus v0.46.0 // indirect go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect - golang.org/x/net v0.23.0 // indirect - golang.org/x/sys v0.18.0 // indirect + golang.org/x/net v0.24.0 // indirect + golang.org/x/sys v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect google.golang.org/grpc v1.62.1 // indirect diff --git a/exporter/awsemfexporter/go.sum b/exporter/awsemfexporter/go.sum index 8f678e03e7bb..2d249d577ff0 100644 --- a/exporter/awsemfexporter/go.sum +++ b/exporter/awsemfexporter/go.sum @@ -131,16 +131,16 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= -golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= diff --git a/exporter/awsxrayexporter/go.mod b/exporter/awsxrayexporter/go.mod index 389d8461334c..ceb7bf87f7cf 100644 --- a/exporter/awsxrayexporter/go.mod +++ b/exporter/awsxrayexporter/go.mod @@ -57,8 +57,8 @@ require ( go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/net v0.23.0 // indirect - golang.org/x/sys v0.18.0 // indirect + golang.org/x/net v0.24.0 // indirect + golang.org/x/sys v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect google.golang.org/grpc v1.62.1 // indirect diff --git a/exporter/awsxrayexporter/go.sum b/exporter/awsxrayexporter/go.sum index a54c2e469316..cb4cf08a7469 100644 --- a/exporter/awsxrayexporter/go.sum +++ b/exporter/awsxrayexporter/go.sum @@ -129,16 +129,16 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= -golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= diff --git a/exporter/azuremonitorexporter/go.mod b/exporter/azuremonitorexporter/go.mod index 3d98c40cadaf..664b1251c56e 100644 --- a/exporter/azuremonitorexporter/go.mod +++ b/exporter/azuremonitorexporter/go.mod @@ -16,7 +16,7 @@ require ( go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 - golang.org/x/net v0.23.0 + golang.org/x/net v0.24.0 ) require ( @@ -56,7 +56,7 @@ require ( go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/sys v0.18.0 // indirect + golang.org/x/sys v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect google.golang.org/grpc v1.62.1 // indirect diff --git a/exporter/azuremonitorexporter/go.sum b/exporter/azuremonitorexporter/go.sum index b30e8fef3a53..19f1e1be624c 100644 --- a/exporter/azuremonitorexporter/go.sum +++ b/exporter/azuremonitorexporter/go.sum @@ -139,8 +139,8 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -149,8 +149,8 @@ golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= -golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= diff --git a/go.mod b/go.mod index 15f284533129..a2b55624b5c1 100644 --- a/go.mod +++ b/go.mod @@ -677,7 +677,7 @@ require ( golang.org/x/crypto v0.22.0 // indirect golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 // indirect golang.org/x/mod v0.16.0 // indirect - golang.org/x/net v0.23.0 // indirect + golang.org/x/net v0.24.0 // indirect golang.org/x/oauth2 v0.18.0 // indirect golang.org/x/sync v0.6.0 // indirect golang.org/x/sys v0.19.0 // indirect diff --git a/go.sum b/go.sum index f75039cc8af5..b46ada039c65 100644 --- a/go.sum +++ b/go.sum @@ -1930,8 +1930,8 @@ golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= diff --git a/internal/aws/awsutil/go.mod b/internal/aws/awsutil/go.mod index 88ab8e63057c..4a9a3901164f 100644 --- a/internal/aws/awsutil/go.mod +++ b/internal/aws/awsutil/go.mod @@ -7,7 +7,7 @@ require ( github.com/stretchr/testify v1.9.0 go.uber.org/goleak v1.3.0 go.uber.org/zap v1.27.0 - golang.org/x/net v0.23.0 + golang.org/x/net v0.24.0 ) require ( diff --git a/internal/aws/awsutil/go.sum b/internal/aws/awsutil/go.sum index 24f0457fabc4..b7392df27586 100644 --- a/internal/aws/awsutil/go.sum +++ b/internal/aws/awsutil/go.sum @@ -26,8 +26,8 @@ go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8= go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= diff --git a/internal/aws/xray/go.mod b/internal/aws/xray/go.mod index 15ba538b5f2d..18a1a409618a 100644 --- a/internal/aws/xray/go.mod +++ b/internal/aws/xray/go.mod @@ -31,8 +31,8 @@ require ( go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/net v0.23.0 // indirect - golang.org/x/sys v0.18.0 // indirect + golang.org/x/net v0.24.0 // indirect + golang.org/x/sys v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect google.golang.org/grpc v1.62.1 // indirect diff --git a/internal/aws/xray/go.sum b/internal/aws/xray/go.sum index 4a849570d853..5c3e5dd19760 100644 --- a/internal/aws/xray/go.sum +++ b/internal/aws/xray/go.sum @@ -77,16 +77,16 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= -golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= diff --git a/processor/remotetapprocessor/go.mod b/processor/remotetapprocessor/go.mod index dbc207320913..fca6c309dd16 100644 --- a/processor/remotetapprocessor/go.mod +++ b/processor/remotetapprocessor/go.mod @@ -15,7 +15,7 @@ require ( go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/zap v1.27.0 - golang.org/x/net v0.23.0 + golang.org/x/net v0.24.0 golang.org/x/time v0.5.0 ) @@ -65,7 +65,7 @@ require ( go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/sys v0.18.0 // indirect + golang.org/x/sys v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect google.golang.org/grpc v1.62.1 // indirect diff --git a/processor/remotetapprocessor/go.sum b/processor/remotetapprocessor/go.sum index bd8f1fe87c3a..c7e88f4b3654 100644 --- a/processor/remotetapprocessor/go.sum +++ b/processor/remotetapprocessor/go.sum @@ -139,16 +139,16 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= -golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= diff --git a/receiver/awscontainerinsightreceiver/go.mod b/receiver/awscontainerinsightreceiver/go.mod index 33fc473d8a05..0c00738ce144 100644 --- a/receiver/awscontainerinsightreceiver/go.mod +++ b/receiver/awscontainerinsightreceiver/go.mod @@ -132,10 +132,10 @@ require ( go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/net v0.23.0 // indirect + golang.org/x/net v0.24.0 // indirect golang.org/x/oauth2 v0.16.0 // indirect - golang.org/x/sys v0.18.0 // indirect - golang.org/x/term v0.18.0 // indirect + golang.org/x/sys v0.19.0 // indirect + golang.org/x/term v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.4.0 // indirect google.golang.org/appengine v1.6.8 // indirect diff --git a/receiver/awscontainerinsightreceiver/go.sum b/receiver/awscontainerinsightreceiver/go.sum index 195ae2ba3432..b272197a604a 100644 --- a/receiver/awscontainerinsightreceiver/go.sum +++ b/receiver/awscontainerinsightreceiver/go.sum @@ -518,8 +518,8 @@ golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwY golang.org/x/net v0.0.0-20210224082022-3d97a244fca7/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -577,14 +577,15 @@ golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8= -golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= +golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q= +golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= diff --git a/receiver/awsxrayreceiver/go.mod b/receiver/awsxrayreceiver/go.mod index 29ca83517539..a8825381259c 100644 --- a/receiver/awsxrayreceiver/go.mod +++ b/receiver/awsxrayreceiver/go.mod @@ -62,8 +62,8 @@ require ( go.opentelemetry.io/otel/sdk v1.24.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/net v0.23.0 // indirect - golang.org/x/sys v0.18.0 // indirect + golang.org/x/net v0.24.0 // indirect + golang.org/x/sys v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect google.golang.org/grpc v1.62.1 // indirect diff --git a/receiver/awsxrayreceiver/go.sum b/receiver/awsxrayreceiver/go.sum index d80f64c9c2b1..5d7098f7361c 100644 --- a/receiver/awsxrayreceiver/go.sum +++ b/receiver/awsxrayreceiver/go.sum @@ -129,16 +129,16 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= -golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= From 4f31763c90ac807afd5e95500718bf97cbb17c14 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 11:16:25 -0700 Subject: [PATCH 19/21] Update module golang.org/x/mod to v0.17.0 (#32257) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | golang.org/x/mod | `v0.16.0` -> `v0.17.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fmod/v0.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fmod/v0.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fmod/v0.16.0/v0.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fmod/v0.16.0/v0.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- cmd/configschema/go.mod | 2 +- cmd/configschema/go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/configschema/go.mod b/cmd/configschema/go.mod index 92f6f8e9e9f6..91e71672fe42 100644 --- a/cmd/configschema/go.mod +++ b/cmd/configschema/go.mod @@ -15,7 +15,7 @@ require ( go.opentelemetry.io/collector/otelcol v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/receiver/otlpreceiver v0.97.1-0.20240409140257-792fac1b62d4 go.uber.org/goleak v1.3.0 - golang.org/x/mod v0.16.0 + golang.org/x/mod v0.17.0 golang.org/x/text v0.14.0 gopkg.in/yaml.v2 v2.4.0 ) diff --git a/cmd/configschema/go.sum b/cmd/configschema/go.sum index e5d9fd1950ee..e934aaef2218 100644 --- a/cmd/configschema/go.sum +++ b/cmd/configschema/go.sum @@ -1868,8 +1868,8 @@ golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.16.0 h1:QX4fJ0Rr5cPQCF7O9lh9Se4pmwfwskqZfq5moyldzic= -golang.org/x/mod v0.16.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA= +golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= From 6229c6ad1c49e9cc4b41a8aab8cb5a94a7b82ea5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 11:17:01 -0700 Subject: [PATCH 20/21] Update Wandalen/wretry.action action to v3.2.0 (#32244) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [Wandalen/wretry.action](https://togithub.com/Wandalen/wretry.action) | action | minor | `v3.0.1` -> `v3.2.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes
Wandalen/wretry.action (Wandalen/wretry.action) ### [`v3.2.0`](https://togithub.com/Wandalen/wretry.action/compare/v3.1.0...v3.2.0) [Compare Source](https://togithub.com/Wandalen/wretry.action/compare/v3.1.0...v3.2.0) ### [`v3.1.0`](https://togithub.com/Wandalen/wretry.action/compare/v3.0.1...v3.1.0) [Compare Source](https://togithub.com/Wandalen/wretry.action/compare/v3.0.1...v3.1.0)
--- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 5b4ef5349296..d3ac90e0f32f 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -331,7 +331,7 @@ jobs: merge-multiple: true pattern: coverage-artifacts-* - name: Upload coverage report - uses: Wandalen/wretry.action@v3.0.1 + uses: Wandalen/wretry.action@v3.2.0 with: action: codecov/codecov-action@v3 with: | From 9124bc85cabfbc5bd20d3046b5d2248c69dffb2e Mon Sep 17 00:00:00 2001 From: Alex Boten <223565+codeboten@users.noreply.github.com> Date: Tue, 9 Apr 2024 13:49:19 -0700 Subject: [PATCH 21/21] [chore] use pdata/testdata instead of coreinternal (#32265) This will allow us to remove duplicated code in the near future. --------- Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com> --- .../alibabacloudlogserviceexporter/go.mod | 1 + .../metrics_exporter_test.go | 5 ++--- exporter/kafkaexporter/go.mod | 1 + exporter/kafkaexporter/kafka_exporter_test.go | 20 +++++++++---------- exporter/logicmonitorexporter/go.mod | 2 +- .../internal/traces/sender_test.go | 9 ++++----- exporter/logzioexporter/exporter_test.go | 9 ++++----- exporter/logzioexporter/go.mod | 3 ++- exporter/opencensusexporter/go.mod | 3 ++- .../opencensusexporter/opencensus_test.go | 14 ++++++------- receiver/kafkareceiver/go.mod | 1 + .../kafkareceiver/header_extraction_test.go | 5 ++--- receiver/kafkareceiver/kafka_receiver_test.go | 6 +++--- receiver/opencensusreceiver/go.mod | 3 ++- .../internal/ocmetrics/opencensus_test.go | 4 ++-- .../internal/octrace/opencensus_test.go | 4 ++-- receiver/otlpjsonfilereceiver/file_test.go | 14 ++++++------- receiver/otlpjsonfilereceiver/go.mod | 3 ++- 18 files changed, 55 insertions(+), 52 deletions(-) diff --git a/exporter/alibabacloudlogserviceexporter/go.mod b/exporter/alibabacloudlogserviceexporter/go.mod index 0f75744d48cb..5f951049d694 100644 --- a/exporter/alibabacloudlogserviceexporter/go.mod +++ b/exporter/alibabacloudlogserviceexporter/go.mod @@ -12,6 +12,7 @@ require ( go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 diff --git a/exporter/alibabacloudlogserviceexporter/metrics_exporter_test.go b/exporter/alibabacloudlogserviceexporter/metrics_exporter_test.go index 5356bd578083..a3fc451a0fba 100644 --- a/exporter/alibabacloudlogserviceexporter/metrics_exporter_test.go +++ b/exporter/alibabacloudlogserviceexporter/metrics_exporter_test.go @@ -10,8 +10,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "go.opentelemetry.io/collector/exporter/exportertest" - - "github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/testdata" + "go.opentelemetry.io/collector/pdata/testdata" ) func TestNewMetricsExporter(t *testing.T) { @@ -24,7 +23,7 @@ func TestNewMetricsExporter(t *testing.T) { require.NotNil(t, got) // This will put trace data to send buffer and return success. - err = got.ConsumeMetrics(context.Background(), testdata.GenerateMetricsOneMetric()) + err = got.ConsumeMetrics(context.Background(), testdata.GenerateMetrics(1)) assert.NoError(t, err) } diff --git a/exporter/kafkaexporter/go.mod b/exporter/kafkaexporter/go.mod index 4efe91efccfb..cee091ea4f44 100644 --- a/exporter/kafkaexporter/go.mod +++ b/exporter/kafkaexporter/go.mod @@ -21,6 +21,7 @@ require ( go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 diff --git a/exporter/kafkaexporter/kafka_exporter_test.go b/exporter/kafkaexporter/kafka_exporter_test.go index ef9701f53b45..fe6eedf47163 100644 --- a/exporter/kafkaexporter/kafka_exporter_test.go +++ b/exporter/kafkaexporter/kafka_exporter_test.go @@ -18,9 +18,9 @@ import ( "go.opentelemetry.io/collector/pdata/plog" "go.opentelemetry.io/collector/pdata/pmetric" "go.opentelemetry.io/collector/pdata/ptrace" + "go.opentelemetry.io/collector/pdata/testdata" "go.uber.org/zap" - "github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/testdata" "github.com/open-telemetry/opentelemetry-collector-contrib/internal/kafka" ) @@ -145,7 +145,7 @@ func TestTracesPusher(t *testing.T) { t.Cleanup(func() { require.NoError(t, p.Close(context.Background())) }) - err := p.tracesPusher(context.Background(), testdata.GenerateTracesTwoSpansSameResource()) + err := p.tracesPusher(context.Background(), testdata.GenerateTraces(2)) require.NoError(t, err) } @@ -163,7 +163,7 @@ func TestTracesPusher_err(t *testing.T) { t.Cleanup(func() { require.NoError(t, p.Close(context.Background())) }) - td := testdata.GenerateTracesTwoSpansSameResource() + td := testdata.GenerateTraces(2) err := p.tracesPusher(context.Background(), td) assert.EqualError(t, err, expErr.Error()) } @@ -174,7 +174,7 @@ func TestTracesPusher_marshal_error(t *testing.T) { marshaler: &tracesErrorMarshaler{err: expErr}, logger: zap.NewNop(), } - td := testdata.GenerateTracesTwoSpansSameResource() + td := testdata.GenerateTraces(2) err := p.tracesPusher(context.Background(), td) require.Error(t, err) assert.Contains(t, err.Error(), expErr.Error()) @@ -192,7 +192,7 @@ func TestMetricsDataPusher(t *testing.T) { t.Cleanup(func() { require.NoError(t, p.Close(context.Background())) }) - err := p.metricsDataPusher(context.Background(), testdata.GenerateMetricsTwoMetrics()) + err := p.metricsDataPusher(context.Background(), testdata.GenerateMetrics(2)) require.NoError(t, err) } @@ -210,7 +210,7 @@ func TestMetricsDataPusher_err(t *testing.T) { t.Cleanup(func() { require.NoError(t, p.Close(context.Background())) }) - md := testdata.GenerateMetricsTwoMetrics() + md := testdata.GenerateMetrics(2) err := p.metricsDataPusher(context.Background(), md) assert.EqualError(t, err, expErr.Error()) } @@ -221,7 +221,7 @@ func TestMetricsDataPusher_marshal_error(t *testing.T) { marshaler: &metricsErrorMarshaler{err: expErr}, logger: zap.NewNop(), } - md := testdata.GenerateMetricsTwoMetrics() + md := testdata.GenerateMetrics(2) err := p.metricsDataPusher(context.Background(), md) require.Error(t, err) assert.Contains(t, err.Error(), expErr.Error()) @@ -239,7 +239,7 @@ func TestLogsDataPusher(t *testing.T) { t.Cleanup(func() { require.NoError(t, p.Close(context.Background())) }) - err := p.logsDataPusher(context.Background(), testdata.GenerateLogsOneLogRecord()) + err := p.logsDataPusher(context.Background(), testdata.GenerateLogs(1)) require.NoError(t, err) } @@ -257,7 +257,7 @@ func TestLogsDataPusher_err(t *testing.T) { t.Cleanup(func() { require.NoError(t, p.Close(context.Background())) }) - ld := testdata.GenerateLogsOneLogRecord() + ld := testdata.GenerateLogs(1) err := p.logsDataPusher(context.Background(), ld) assert.EqualError(t, err, expErr.Error()) } @@ -268,7 +268,7 @@ func TestLogsDataPusher_marshal_error(t *testing.T) { marshaler: &logsErrorMarshaler{err: expErr}, logger: zap.NewNop(), } - ld := testdata.GenerateLogsOneLogRecord() + ld := testdata.GenerateLogs(1) err := p.logsDataPusher(context.Background(), ld) require.Error(t, err) assert.Contains(t, err.Error(), expErr.Error()) diff --git a/exporter/logicmonitorexporter/go.mod b/exporter/logicmonitorexporter/go.mod index 2f78d830bd2f..bfb7feeebdc5 100644 --- a/exporter/logicmonitorexporter/go.mod +++ b/exporter/logicmonitorexporter/go.mod @@ -4,7 +4,6 @@ go 1.21 require ( github.com/logicmonitor/lm-data-sdk-go v1.3.0 - github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/resourcetotelemetry v0.97.0 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 @@ -15,6 +14,7 @@ require ( go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 go.uber.org/goleak v1.3.0 diff --git a/exporter/logicmonitorexporter/internal/traces/sender_test.go b/exporter/logicmonitorexporter/internal/traces/sender_test.go index 8b0a426c9ada..c9b07aafdf5f 100644 --- a/exporter/logicmonitorexporter/internal/traces/sender_test.go +++ b/exporter/logicmonitorexporter/internal/traces/sender_test.go @@ -14,9 +14,8 @@ import ( "github.com/logicmonitor/lm-data-sdk-go/utils" "github.com/stretchr/testify/assert" "go.opentelemetry.io/collector/consumer/consumererror" + "go.opentelemetry.io/collector/pdata/testdata" "go.uber.org/zap" - - "github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/testdata" ) func TestSendTraces(t *testing.T) { @@ -41,7 +40,7 @@ func TestSendTraces(t *testing.T) { sender, err := NewSender(ctx, ts.URL, ts.Client(), authParams, zap.NewNop()) assert.NoError(t, err) - err = sender.SendTraces(ctx, testdata.GenerateTracesOneSpan()) + err = sender.SendTraces(ctx, testdata.GenerateTraces(1)) cancel() assert.NoError(t, err) }) @@ -62,7 +61,7 @@ func TestSendTraces(t *testing.T) { sender, err := NewSender(ctx, ts.URL, ts.Client(), authParams, zap.NewNop()) assert.NoError(t, err) - err = sender.SendTraces(ctx, testdata.GenerateTracesOneSpan()) + err = sender.SendTraces(ctx, testdata.GenerateTraces(1)) cancel() assert.Error(t, err) assert.Equal(t, true, consumererror.IsPermanent(err)) @@ -84,7 +83,7 @@ func TestSendTraces(t *testing.T) { sender, err := NewSender(ctx, ts.URL, ts.Client(), authParams, zap.NewNop()) assert.NoError(t, err) - err = sender.SendTraces(ctx, testdata.GenerateTracesOneSpan()) + err = sender.SendTraces(ctx, testdata.GenerateTraces(1)) cancel() assert.Error(t, err) assert.Equal(t, false, consumererror.IsPermanent(err)) diff --git a/exporter/logzioexporter/exporter_test.go b/exporter/logzioexporter/exporter_test.go index 8c7dfb04f930..190afaa825c6 100644 --- a/exporter/logzioexporter/exporter_test.go +++ b/exporter/logzioexporter/exporter_test.go @@ -25,9 +25,8 @@ import ( "go.opentelemetry.io/collector/pdata/pcommon" "go.opentelemetry.io/collector/pdata/plog" "go.opentelemetry.io/collector/pdata/ptrace" + "go.opentelemetry.io/collector/pdata/testdata" conventions "go.opentelemetry.io/collector/semconv/v1.6.1" - - "github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/testdata" ) const ( @@ -90,7 +89,7 @@ func fillLogNoTimestamp(log plog.LogRecord) { } func generateLogsOneEmptyTimestamp() plog.Logs { - ld := testdata.GenerateLogsOneEmptyLogRecord() + ld := testdata.GenerateLogs(1) logs := ld.ResourceLogs().At(0).ScopeLogs().At(0).LogRecords() ld.ResourceLogs().At(0).ScopeLogs().At(0).Scope().SetName("logScopeName") fillLogOne(logs.At(0)) @@ -195,7 +194,7 @@ func TestExportErrors(tester *testing.T) { }, } td := newTestTracesWithAttributes() - ld := testdata.GenerateLogsManyLogRecordsSameResource(10) + ld := testdata.GenerateLogs(10) err := testTracesExporter(td, tester, cfg) fmt.Println(err.Error()) require.Error(tester, err) @@ -283,7 +282,7 @@ func TestPushLogsData(tester *testing.T) { }, } defer server.Close() - ld := testdata.GenerateLogsManyLogRecordsSameResource(2) + ld := testdata.GenerateLogs(2) res := ld.ResourceLogs().At(0).Resource() res.Attributes().PutStr(conventions.AttributeServiceName, testService) res.Attributes().PutStr(conventions.AttributeHostName, testHost) diff --git a/exporter/logzioexporter/go.mod b/exporter/logzioexporter/go.mod index b6ff8a170602..e809b15ae95d 100644 --- a/exporter/logzioexporter/go.mod +++ b/exporter/logzioexporter/go.mod @@ -5,7 +5,6 @@ go 1.21 require ( github.com/hashicorp/go-hclog v1.6.3 github.com/jaegertracing/jaeger v1.55.0 - github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.97.0 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 @@ -17,6 +16,7 @@ require ( go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 @@ -54,6 +54,7 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.19.0 // indirect github.com/prometheus/client_model v0.6.1 // indirect diff --git a/exporter/opencensusexporter/go.mod b/exporter/opencensusexporter/go.mod index c4c19215e592..04f251265073 100644 --- a/exporter/opencensusexporter/go.mod +++ b/exporter/opencensusexporter/go.mod @@ -5,7 +5,6 @@ go 1.21 require ( github.com/census-instrumentation/opencensus-proto v0.4.1 github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 - github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/opencensus v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver v0.97.0 github.com/stretchr/testify v1.9.0 @@ -18,6 +17,7 @@ require ( go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/exporter v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 @@ -51,6 +51,7 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/mostynb/go-grpc-compression v1.2.2 // indirect + github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect diff --git a/exporter/opencensusexporter/opencensus_test.go b/exporter/opencensusexporter/opencensus_test.go index 5bc8001ef255..607ed49ca75c 100644 --- a/exporter/opencensusexporter/opencensus_test.go +++ b/exporter/opencensusexporter/opencensus_test.go @@ -16,10 +16,10 @@ import ( "go.opentelemetry.io/collector/consumer/consumertest" "go.opentelemetry.io/collector/exporter/exportertest" "go.opentelemetry.io/collector/pdata/ptrace" + "go.opentelemetry.io/collector/pdata/testdata" "go.opentelemetry.io/collector/receiver/receivertest" "github.com/open-telemetry/opentelemetry-collector-contrib/internal/common/testutil" - "github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/testdata" "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver" ) @@ -55,7 +55,7 @@ func TestSendTraces(t *testing.T) { assert.NoError(t, exp.Shutdown(context.Background())) }) - td := testdata.GenerateTracesOneSpan() + td := testdata.GenerateTraces(1) assert.NoError(t, exp.ConsumeTraces(context.Background(), td)) assert.Eventually(t, func() bool { return len(sink.AllTraces()) == 1 @@ -96,7 +96,7 @@ func TestSendTraces_NoBackend(t *testing.T) { assert.NoError(t, exp.Shutdown(context.Background())) }) - td := testdata.GenerateTracesOneSpan() + td := testdata.GenerateTraces(1) for i := 0; i < 10000; i++ { assert.Error(t, exp.ConsumeTraces(context.Background(), td)) } @@ -118,7 +118,7 @@ func TestSendTraces_AfterStop(t *testing.T) { require.NoError(t, exp.Start(context.Background(), host)) assert.NoError(t, exp.Shutdown(context.Background())) - td := testdata.GenerateTracesOneSpan() + td := testdata.GenerateTraces(1) assert.Error(t, exp.ConsumeTraces(context.Background(), td)) } @@ -154,7 +154,7 @@ func TestSendMetrics(t *testing.T) { assert.NoError(t, exp.Shutdown(context.Background())) }) - md := testdata.GenerateMetricsOneMetric() + md := testdata.GenerateMetrics(1) assert.NoError(t, exp.ConsumeMetrics(context.Background(), md)) assert.Eventually(t, func() bool { return len(sink.AllMetrics()) == 1 @@ -193,7 +193,7 @@ func TestSendMetrics_NoBackend(t *testing.T) { assert.NoError(t, exp.Shutdown(context.Background())) }) - md := testdata.GenerateMetricsOneMetric() + md := testdata.GenerateMetrics(1) for i := 0; i < 10000; i++ { assert.Error(t, exp.ConsumeMetrics(context.Background(), md)) } @@ -215,6 +215,6 @@ func TestSendMetrics_AfterStop(t *testing.T) { require.NoError(t, exp.Start(context.Background(), host)) assert.NoError(t, exp.Shutdown(context.Background())) - md := testdata.GenerateMetricsOneMetric() + md := testdata.GenerateMetrics(1) assert.Error(t, exp.ConsumeMetrics(context.Background(), md)) } diff --git a/receiver/kafkareceiver/go.mod b/receiver/kafkareceiver/go.mod index 8015cdafa32c..6ad31dfb951c 100644 --- a/receiver/kafkareceiver/go.mod +++ b/receiver/kafkareceiver/go.mod @@ -22,6 +22,7 @@ require ( go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/semconv v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 diff --git a/receiver/kafkareceiver/header_extraction_test.go b/receiver/kafkareceiver/header_extraction_test.go index c5219c219b55..709f56ee53ec 100644 --- a/receiver/kafkareceiver/header_extraction_test.go +++ b/receiver/kafkareceiver/header_extraction_test.go @@ -15,11 +15,10 @@ import ( "go.opentelemetry.io/collector/pdata/pcommon" "go.opentelemetry.io/collector/pdata/pmetric" "go.opentelemetry.io/collector/pdata/ptrace" + "go.opentelemetry.io/collector/pdata/testdata" "go.opentelemetry.io/collector/receiver/receiverhelper" "go.opentelemetry.io/collector/receiver/receivertest" "go.uber.org/zap/zaptest" - - "github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/testdata" ) func TestHeaderExtractionTraces(t *testing.T) { @@ -182,7 +181,7 @@ func TestHeaderExtractionMetrics(t *testing.T) { assert.NoError(t, err) wg.Done() }() - ld := testdata.GenerateMetricsOneMetric() + ld := testdata.GenerateMetrics(1) unmarshaler := &pmetric.ProtoMarshaler{} bts, err := unmarshaler.MarshalMetrics(ld) groupClaim.messageChan <- &sarama.ConsumerMessage{ diff --git a/receiver/kafkareceiver/kafka_receiver_test.go b/receiver/kafkareceiver/kafka_receiver_test.go index 89c151ccfabe..fbc49ecdf0cf 100644 --- a/receiver/kafkareceiver/kafka_receiver_test.go +++ b/receiver/kafkareceiver/kafka_receiver_test.go @@ -20,6 +20,7 @@ import ( "go.opentelemetry.io/collector/pdata/plog" "go.opentelemetry.io/collector/pdata/pmetric" "go.opentelemetry.io/collector/pdata/ptrace" + "go.opentelemetry.io/collector/pdata/testdata" "go.opentelemetry.io/collector/receiver/receiverhelper" "go.opentelemetry.io/collector/receiver/receivertest" "go.uber.org/zap" @@ -27,7 +28,6 @@ import ( "go.uber.org/zap/zaptest/observer" "github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter" - "github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/testdata" "github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/textutils" "github.com/open-telemetry/opentelemetry-collector-contrib/internal/kafka" ) @@ -544,7 +544,7 @@ func TestMetricsConsumerGroupHandler_error_nextConsumer(t *testing.T) { wg.Done() }() - ld := testdata.GenerateMetricsOneMetric() + ld := testdata.GenerateMetrics(1) unmarshaler := &pmetric.ProtoMarshaler{} bts, err := unmarshaler.MarshalMetrics(ld) require.NoError(t, err) @@ -811,7 +811,7 @@ func TestLogsConsumerGroupHandler_error_nextConsumer(t *testing.T) { wg.Done() }() - ld := testdata.GenerateLogsOneLogRecord() + ld := testdata.GenerateLogs(1) unmarshaler := &plog.ProtoMarshaler{} bts, err := unmarshaler.MarshalLogs(ld) require.NoError(t, err) diff --git a/receiver/opencensusreceiver/go.mod b/receiver/opencensusreceiver/go.mod index 487418c6b7d8..2a37960830c4 100644 --- a/receiver/opencensusreceiver/go.mod +++ b/receiver/opencensusreceiver/go.mod @@ -6,7 +6,6 @@ require ( github.com/census-instrumentation/opencensus-proto v0.4.1 github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.97.0 - github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/opencensus v0.97.0 github.com/rs/cors v1.10.1 @@ -19,6 +18,7 @@ require ( go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 go.opentelemetry.io/otel v1.24.0 @@ -54,6 +54,7 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/mostynb/go-grpc-compression v1.2.2 // indirect + github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect github.com/prometheus/client_model v0.6.1 // indirect diff --git a/receiver/opencensusreceiver/internal/ocmetrics/opencensus_test.go b/receiver/opencensusreceiver/internal/ocmetrics/opencensus_test.go index e9f14d1f002a..b44d5f5f4a2a 100644 --- a/receiver/opencensusreceiver/internal/ocmetrics/opencensus_test.go +++ b/receiver/opencensusreceiver/internal/ocmetrics/opencensus_test.go @@ -25,13 +25,13 @@ import ( "go.opentelemetry.io/collector/component/componenttest" "go.opentelemetry.io/collector/consumer" "go.opentelemetry.io/collector/consumer/consumertest" + "go.opentelemetry.io/collector/pdata/testdata" "go.opentelemetry.io/collector/receiver" "google.golang.org/grpc" "google.golang.org/grpc/credentials/insecure" "google.golang.org/protobuf/proto" "google.golang.org/protobuf/types/known/timestamppb" - "github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/testdata" "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/opencensus" ) @@ -52,7 +52,7 @@ func TestReceiver_endToEnd(t *testing.T) { metricsClient, metricsClientDoneFn, err := makeMetricsServiceClient(addr) require.NoError(t, err, "Failed to create the gRPC MetricsService_ExportClient: %v", err) defer metricsClientDoneFn() - md := testdata.GenerateMetricsOneMetric() + md := testdata.GenerateMetrics(1) node, resource, metrics := opencensus.ResourceMetricsToOC(md.ResourceMetrics().At(0)) assert.NoError(t, metricsClient.Send(&agentmetricspb.ExportMetricsServiceRequest{Node: node, Resource: resource, Metrics: metrics})) diff --git a/receiver/opencensusreceiver/internal/octrace/opencensus_test.go b/receiver/opencensusreceiver/internal/octrace/opencensus_test.go index f120b18fa819..460e8682d24f 100644 --- a/receiver/opencensusreceiver/internal/octrace/opencensus_test.go +++ b/receiver/opencensusreceiver/internal/octrace/opencensus_test.go @@ -23,13 +23,13 @@ import ( "go.opentelemetry.io/collector/component/componenttest" "go.opentelemetry.io/collector/consumer" "go.opentelemetry.io/collector/consumer/consumertest" + "go.opentelemetry.io/collector/pdata/testdata" "go.opentelemetry.io/collector/receiver" "go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc" "google.golang.org/grpc" "google.golang.org/grpc/credentials/insecure" "google.golang.org/protobuf/proto" - "github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/testdata" "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/opencensus" ) @@ -48,7 +48,7 @@ func TestReceiver_endToEnd(t *testing.T) { traceClient, traceClientDoneFn, err := makeTraceServiceClient(addr) require.NoError(t, err, "Failed to create the gRPC TraceService_ExportClient: %v", err) defer traceClientDoneFn() - td := testdata.GenerateTracesOneSpan() + td := testdata.GenerateTraces(1) node, resource, spans := opencensus.ResourceSpansToOC(td.ResourceSpans().At(0)) assert.NoError(t, traceClient.Send(&agenttracepb.ExportTraceServiceRequest{Node: node, Resource: resource, Spans: spans})) diff --git a/receiver/otlpjsonfilereceiver/file_test.go b/receiver/otlpjsonfilereceiver/file_test.go index 731120679352..e985818e7331 100644 --- a/receiver/otlpjsonfilereceiver/file_test.go +++ b/receiver/otlpjsonfilereceiver/file_test.go @@ -19,9 +19,9 @@ import ( "go.opentelemetry.io/collector/pdata/plog" "go.opentelemetry.io/collector/pdata/pmetric" "go.opentelemetry.io/collector/pdata/ptrace" + "go.opentelemetry.io/collector/pdata/testdata" "go.opentelemetry.io/collector/receiver/receivertest" - "github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/testdata" "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza/fileconsumer" "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza/fileconsumer/attrs" "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza/fileconsumer/matcher" @@ -47,7 +47,7 @@ func TestFileTracesReceiver(t *testing.T) { err = receiver.Start(context.Background(), nil) require.NoError(t, err) - td := testdata.GenerateTracesTwoSpansSameResource() + td := testdata.GenerateTraces(2) marshaler := &ptrace.JSONMarshaler{} b, err := marshaler.MarshalTraces(td) assert.NoError(t, err) @@ -74,7 +74,7 @@ func TestFileMetricsReceiver(t *testing.T) { err = receiver.Start(context.Background(), nil) assert.NoError(t, err) - md := testdata.GenerateMetricsManyMetricsSameResource(5) + md := testdata.GenerateMetrics(5) marshaler := &pmetric.JSONMarshaler{} b, err := marshaler.MarshalMetrics(md) assert.NoError(t, err) @@ -101,7 +101,7 @@ func TestFileLogsReceiver(t *testing.T) { err = receiver.Start(context.Background(), nil) assert.NoError(t, err) - ld := testdata.GenerateLogsManyLogRecordsSameResource(5) + ld := testdata.GenerateLogs(5) marshaler := &plog.JSONMarshaler{} b, err := marshaler.MarshalLogs(ld) assert.NoError(t, err) @@ -176,15 +176,15 @@ func TestFileMixedSignals(t *testing.T) { err = lr.Start(context.Background(), nil) assert.NoError(t, err) - md := testdata.GenerateMetricsManyMetricsSameResource(5) + md := testdata.GenerateMetrics(5) marshaler := &pmetric.JSONMarshaler{} b, err := marshaler.MarshalMetrics(md) assert.NoError(t, err) - td := testdata.GenerateTracesTwoSpansSameResource() + td := testdata.GenerateTraces(2) tmarshaler := &ptrace.JSONMarshaler{} b2, err := tmarshaler.MarshalTraces(td) assert.NoError(t, err) - ld := testdata.GenerateLogsManyLogRecordsSameResource(5) + ld := testdata.GenerateLogs(5) lmarshaler := &plog.JSONMarshaler{} b3, err := lmarshaler.MarshalLogs(ld) assert.NoError(t, err) diff --git a/receiver/otlpjsonfilereceiver/go.mod b/receiver/otlpjsonfilereceiver/go.mod index 61c892680a68..48cad69c08e9 100644 --- a/receiver/otlpjsonfilereceiver/go.mod +++ b/receiver/otlpjsonfilereceiver/go.mod @@ -3,13 +3,13 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/receiver/otlpjs go 1.21 require ( - github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.97.0 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/collector/component v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/confmap v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/consumer v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/collector/pdata v1.4.1-0.20240409140257-792fac1b62d4 + go.opentelemetry.io/collector/pdata/testdata v0.0.0-20240408153657-fc289290613a go.opentelemetry.io/collector/receiver v0.97.1-0.20240409140257-792fac1b62d4 go.opentelemetry.io/otel/metric v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 @@ -40,6 +40,7 @@ require ( github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.97.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.19.0 // indirect github.com/prometheus/client_model v0.6.1 // indirect