Skip to content

Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.153.0#18

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x
Open

Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.153.0#18
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Oct 16, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector v0.93.0v0.153.0 age confidence

Release Notes

open-telemetry/opentelemetry-collector-contrib (github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector)

v0.153.0

Compare Source

🛑 Breaking changes 🛑
  • exporter/clickhouse: Remove deprecated clickhouse.json feature gate. Users should set json: true in the exporter config directly. (#​47888)

  • extension/aws_logs_encoding: Remove deprecated format values and the vpc_flow_log config field. (#​42901)
    The deprecated format values vpc_flow_log, elb_access_log, s3_access_log, cloudtrail_log,
    waf_log, and cloudwatch_logs_subscription_filter are no longer supported. Use vpcflow,
    elbaccess, s3access, cloudtrail, waf, and cloudwatch respectively. The deprecated
    vpc_flow_log config field has been removed; use vpcflow instead.

  • pkg/ottl: Return errors when OTTL datapoint context setters are used on an incompatible data point type (#​48384)
    For example, set(explicit_bounds, [1.0]) against a NumberDataPoint now returns an error
    rather than silently no-opping. Statements that were previously failing silently due to data
    point type mismatches will now surface as errors.

    Affected paths and the data point types they support:

    • value_double, value_int: NumberDataPoint
    • explicit_bounds, bucket_counts: HistogramDataPoint
    • scale, zero_count, positive, positive.offset, positive.bucket_counts,
      negative, negative.offset, negative.bucket_counts: ExponentialHistogramDataPoint
    • quantile_values: SummaryDataPoint
    • exemplars: NumberDataPoint, HistogramDataPoint, ExponentialHistogramDataPoint
    • count, sum: HistogramDataPoint, ExponentialHistogramDataPoint, SummaryDataPoint
  • processor/filter: Promote processor.filter.defaultErrorModeIgnore feature gate to beta. (#​47232)
    The default error_mode of the filter processor is now ignore instead of propagate. To restore the previous behavior, disable the feature gate with --feature-gates=-processor.filter.defaultErrorModeIgnore.

  • processor/transform: Move the processor.transform.defaultErrorModeIgnore feature gate to beta. The default top-level error_mode is now ignore instead of propagate. (#​48415)
    To revert to the previous default, disable the gate with --feature-gates=-processor.transform.defaultErrorModeIgnore.

  • receiver/http_check: Fix timing metrics (httpcheck.dns.lookup.duration, httpcheck.client.connection.duration, httpcheck.tls.handshake.duration, httpcheck.client.request.duration, httpcheck.response.duration) always reporting 0 on fast networks where phase durations are sub-millisecond. Metrics now report values in nanoseconds instead of milliseconds. (#​47257)
    Integer division truncated sub-millisecond durations to 0. Metrics now use nanoseconds as the unit, so a 500µs duration is reported as 500,000 rather than 0.

  • receiver/jaeger: Remove stable gate receiver.jaeger.DisableRemoteSampling (#​48616)

  • receiver/pprof: Restructure config under remote, file, self, and server sections, and add HTTP push ingestion at POST /v1/pprof. (#​48276)
    The top-level fields endpoint, include, collection_interval, initial_delay,
    block_profile_fraction, and mutex_profile_fraction are now nested under the
    corresponding remote, file, or self subsection. Multiple modes can be enabled
    on a single receiver instance, each with its own collection interval. A new
    server section enables push-mode ingestion of pprof data over HTTP.

🚩 Deprecations 🚩
  • connector/metrics_as_logs: Rename component type from metricsaslogs to metrics_as_logs to follow snake_case naming convention. The old name is kept as a deprecated alias. (#​48016)

  • exporter/load_balancing: Rename the loadbalancing exporter to load_balancing. The old loadbalancing type remains available as a deprecated alias. (#​45339)

  • pkg/kafka/configkafka: Deprecate Kafka client config fields that became no-ops after the migration to franz-go. (#​48260)

    • resolve_canonical_bootstrap_servers_only: franz-go has no direct equivalent
      to the associated Sarama config.
    • auth.sasl.version: franz-go negotiates the SASL handshake version
      automatically.

    Both fields are still accepted in configuration for backwards compatibility,
    but have no effect at runtime. They will be removed in a future release.

  • processor/k8s_attributes: Deprecate deployment_name_from_replicaset and default deployment name extraction to the ReplicaSet name heuristic. (#​48447)

  • processor/resource_detection: Rename to resource_detection with deprecated alias resourcedetection (#​48525)

🚀 New components 🚀
  • processor/gen_ai_normalizer: Add a processor that normalizes GenAI telemetry attributes from OpenInference and OpenLLMetry to the official OTel GenAI Semantic Conventions. (#​46069)
💡 Enhancements 💡
  • cmd/opampsupervisor: Adds support for authenticator extensions in the supervisor when connecting to the upstream OpAMP server. (#​47690)
    The Supervisor now supports the Bearer Token Authenticator Extension, Basic Auth Authenticator Extension, and OAuth2 Client Credentials Authenticator Extension. See the readme for more details.

  • cmd/opampsupervisor: Adds a framework for the supervisor to utilize extensions from the collector ecosystem (#​47690)

  • cmd/opampsupervisor: Initial PR implementing package upgrades. Contains skeleton code that is unused. (#​47298)

  • connector/count: Support OTTL path context names in conditions. (#​48316)
    Conditions for spans, span events, metrics, data points, logs, and profiles can now use
    context-prefixed paths (e.g. span.attributes["env"], resource.attributes["host"],
    metric.name). Existing un-prefixed paths continue to work; they are interpreted in
    the context of the enclosing block. It is recommend to update your configuration to the new syntax
    to avoid breaking changes in the future.

  • connector/signal_to_metrics: Support OTTL context path prefixes in conditions and value expressions. (#​48357)
    OTTL strings in conditions, value, count, and keys_expression fields may now use context path
    prefixes (e.g. span.attributes["foo"], datapoint.value_int, log.body, profile.duration_unix_nano).
    Unprefixed paths continue to work; it is highly recommend to use the new syntax to avoid breaking changes in the future.

  • connector/span_metrics: Add an opt-in series_expiration setting to expire stale spanmetrics series without changing existing metrics_expiration behavior. (#​44187)

  • connector/sum: Support OTTL path-context names (e.g. span.attributes["foo"], resource.attributes["bar"], metric.name) in the conditions field. (#​48329)
    Un-prefixed paths continue to work for now. If you are using un-prefixed paths, the updated statements will be printed on startup. It is highly recommended to switch to the new syntax to avoid breaking changes in the future.

  • exporter/alertmanager: adds support for sending logs to Alertmanager. (#​48099)

  • exporter/elasticsearch: Implement experimental _noindex mapping hint to suppress indexing of individual signals. (#​48310)
    This is an experimental feature and may change or be removed in future releases.
    When a span, span event, log record, or metric data point carries the
    _noindex value in its elasticsearch.mapping.hints attribute, the
    exporter skips emitting the bulk index operation for that document.

  • exporter/google_cloud_storage: Add retry and sending queue configuration options (#​48045)
    Introduces retry_on_failure and sending_queue support via exporterhelper. Also ensures that non-retryable GCS SDK errors correctly return permanent errors to halt the sending queue, preventing infinite retries. Includes documentation on the interaction between GCS SDK retries and exporter helper retries.

  • exporter/honeycomb_marker: Support OTTL path-context names (e.g. log.body == "x", resource.attributes["service.name"] == "y") in markers[].rules.log_conditions. (#​48325)
    Un-prefixed paths continue to work for now. If you are using un-prefixed paths, the updated statements will be printed on startup. It is highly recommended to switch to the new syntax to avoid breaking changes in the future.

  • exporter/kafka: Add health reporting to kafka exporter. (#​47293)

  • exporter/kafka: Add per-signal message_key_from_metadata_key to derive the Kafka record key from client metadata. (#​29433)
    Each signal (logs, metrics, traces, profiles) now accepts a message_key_from_metadata_key
    field that names a client metadata key whose value is used as the Kafka record key. This is mutually
    exclusive with the existing partition_* flags for the same signal. If the metadata key is absent
    or empty the record key is left nil.

  • exporter/load_balancing: Add owner_account option to AWS Cloud Map resolver for cross-account namespace discovery (#​47895)
    The owner_account field allows the AWS Cloud Map resolver to discover instances
    in namespaces shared from other AWS accounts using AWS RAM. This maps directly to
    the OwnerAccount parameter in the AWS Cloud Map DiscoverInstances API call.

  • exporter/sumologic: Modify the sumologic exporter's default batching configuration (#​47820)

  • extension/aws_logs_encoding: Add cloudwatch.streams for the cloudwatch format to route subscription-filter events to different inner encoding extensions based on logGroup/logStream patterns. (#​46458)
    Each stream accepts a name, an encoding (component ID of the inner extension), optional
    log_group_pattern / log_stream_pattern matchers, and an optional payload mode (message
    or envelope). Known names (vpcflow, cloudtrail, lambda, waf, rds, eks, apigateway) carry
    default patterns and payload modes reflecting AWS conventions. Routing is per envelope, so
    CloudWatch payloads aggregating multiple log groups (e.g. from Firehose) are dispatched
    correctly. Envelopes that match no stream fall back to the default subscription-filter
    behavior.

  • pkg/stanza: Respect the "SynchronousLogEmitter" feature gate in container parser operator. (#​47828)
    The container parser operator now respects the stanza.synchronousLogEmitter feature gate,
    using the synchronous log emitter when enabled to prevent possible data loss. Enabling the
    feature gate disables batching within the container parser.

  • processor/cardinality_guardian: Add core processor logic, HLL sharding, enforcement modes, and inline spatial reaggregation to cardinalityguardianprocessor. (#​47368)

  • processor/drain: Add snapshot persistence via storage extension to save and restore the Drain tree across restarts. (#​48075)
    New config fields: storage (ID of a storage extension) and save_interval (periodic snapshot interval).
    With shared storage, periodic saves allow new instances in a scaled deployment to inherit a trained tree.

  • processor/gen_ai_normalizer: Rename component type from genainormalizer to gen_ai_normalizer. (#​46069)

  • processor/gen_ai_normalizer: Add the openllmetry source for normalizing OpenLLMetry (Traceloop) GenAI attributes. (#​46069)

  • processor/gen_ai_normalizer: Implement attribute and value normalization for the OpenInference source. (#​46069)

  • processor/k8s_attributes: Improve k8s.cronjob.name extraction (#​44831)
    Improve CronJob name extraction to use the Job informer when already running.
    Otherwise use heuristic to match the Job name's and check if the last 8-digits are a valid timestamp
    closely matching the pod creation time (24h window).

  • processor/log_dedup: Support OTTL path-context names (e.g. log.attributes["foo"], resource.attributes["bar"]) in the conditions field. (#​48266)
    Un-prefixed paths continue to work for now. If you are using un-prefixed paths, the updated statements will be printed on startup. It is highly recommended to switch to the new syntax to avoid breaking changes in the future.

  • processor/schema: Promote schema processor from development to alpha stability and add to contrib distribution (#​47428)

  • processor/schema: Add migration mode to preserve original attributes alongside renamed ones during schema version changes (#​47420)

  • processor/schema: Add optional storage extension support to persist fetched schema files across collector restarts (#​48222)

  • processor/tail_sampling: Support OTTL path-context names (e.g. span.attributes["foo"], resource.attributes["bar"], spanevent.name) in the ottl_condition policy. (#​48330)
    Un-prefixed paths continue to work for now. If you are using un-prefixed paths, the updated statements will be printed on startup. It is highly recommended to switch to the new syntax to avoid breaking changes in the future.

  • processor/tail_sampling: Switch the rate_limiting policy to a token bucket and add burst_capacity to allow short bursts of traffic above the sustained spans-per-second rate. (#​48226)
    If burst_capacity is not set, it defaults to 2x spans_per_second, mirroring the bytes_limiting policy.

    Existing configurations will see slightly different behavior: the bucket starts with a default burst of 2x
    spans_per_second tokens. A trace whose span count equals spans_per_second can now be sampled (the previous
    strict < comparison meant spans_per_second: 1 would never sample).
    Set burst_capacity explicitly to match the previous per-second cap if needed.

  • provider/s3: Add support for Amazon S3-compatible services (e.g. MinIO) using path-style endpoints and insecure HTTP URIs. (#​47595)

    • Hosts with non-Amazon DNS suffixes are now treated as path-style endpoints (s3://host/bucket/key) instead of virtual-hosted-style.
  • receiver/awscloudwatch: Add metrics support to the AWS CloudWatch receiver. (#​47330)

  • receiver/file_log: Improves file-reading efficiency by evicting previously read data from the OS page cache. (#​48273)
    Clears the cache on Linux; acts as a no-op on unsupported platforms.

  • receiver/host_metrics: Warn and disable process.handles at startup on platforms where it is not supported, instead of logging an error every scrape cycle. (#​47095)
    process.handles is only supported on Windows. Previously, enabling it on other
    platforms would spam "only supported on Windows" errors on every scrape cycle
    for every process. The factory now checks for this at construction, logs a
    single warning, and disables the metric so the hot path is never exercised.

  • receiver/host_metrics: Warn and disable process.paging.faults at startup on platforms where it is not supported, instead of logging an error every scrape cycle. (#​47095)
    process.paging.faults is only supported on Linux. Previously, enabling it on other
    platforms would spam "not implemented" errors on every scrape cycle for every process.
    The factory now checks for this at construction, logs a single warning, and disables
    the metric so the hot path is never exercised.

  • receiver/host_metrics: Warn and disable process.context_switches at startup on platforms where it is not supported, instead of logging an error every scrape cycle. (#​47095)
    process.context_switches is only supported on Linux. Previously, enabling it on other
    platforms would spam "not implemented" errors on every scrape cycle for every process.
    The factory now checks for this at construction, logs a single warning, and disables
    the metric so the hot path is never exercised.

  • receiver/host_metrics: Warn and disable process.signals_pending at startup on platforms where it is not supported, instead of logging an error every scrape cycle. (#​47095)
    process.signals_pending is only supported on Linux (via /proc//limits). Previously,
    enabling it on other platforms would spam "not implemented" errors on every scrape cycle
    for every process. The factory now checks for this at construction, logs a single
    warning, and disables the metric so the hot path is never exercised.

  • receiver/http_check: Enables dynamic metric reaggregation in the HTTP Check receiver. This does not break existing configuration files. (#​46358)

  • receiver/k8s_objects: Add top-level interval field as a fallback default pull interval for all pull-mode objects. (#​48452)
    When interval is set at the top-level k8s_objects config, it applies to all pull-mode
    objects that do not set their own per-resource interval. The resolution order is:
    per-resource interval → top-level interval → built-in default (1h).
    Watch-mode objects are unaffected. Existing configurations continue to work without change.

  • receiver/kubelet_stats: Add optional k8s.container.ephemeral_storage.usage metric to kubeletstats receiver. (#​47601)

  • receiver/kubelet_stats: Enables dynamic metric reaggregation capability (#​46363)

  • receiver/ntp: Enable scraper reaggregation for the NTP receiver (#​46370)

  • receiver/oracledb: Add new attributes to db.server.query_sample event for enhanced session monitoring (#​48216)
    Add 4 new attributes to the db.server.query_sample event:
    oracledb.query.wait_time, oracledb.query.started, oracledb.session.started,
    and oracledb.session.duration. Timestamps are in UTC ISO 8601 format.
    These attributes enable better monitoring of query wait times, execution
    timing, and session lifecycle.

  • receiver/oracledb: Adds blocking session and lock attributes to db.server.query_sample events for Oracle blocking session detection. Blocking attributes are always emitted (empty string / 0 when not blocked). (#​48143)
    New attributes under oracledb.blocking.*: oracledb.blocking.blocker.sid, oracledb.blocking.blocker.root_sid,
    oracledb.blocking.blocker.state, oracledb.blocking.start_time, oracledb.blocking.wait_duration,
    oracledb.blocking.lock.type, oracledb.blocking.lock.mode, oracledb.blocking.object.owner, oracledb.blocking.object.name.
    oracledb.blocking.start_time provides an estimated UTC timestamp (RFC3339) of when blocking began.
    Filters to S.TYPE = 'USER' to exclude SYS/background sessions.
    Idle blockers (INACTIVE sessions holding locks) are captured.
    All blocking attributes are always present on every db.server.query_sample event; empty string / 0 values indicate no active blocking.

  • receiver/oracledb: Add operational metrics for data dictionary hit ratio, recycle bin size, and storage usage (#​47303)
    Add 4 new opt-in metrics (disabled by default, stability: development):
    oracledb.data_dictionary.hit_ratio, oracledb.recycle_bin.limit,
    oracledb.storage.usage, and oracledb.storage.utilization.

  • receiver/prometheus_remote_write: Performance improvements while processing remote write requests. (#​47850)

  • receiver/saphana: Enable the re-aggregation feature for the SAP HANA receiver. (#​46378)

  • receiver/sqlserver: Add sqlserver.query.last_started and db.namespace attributes to db.server.top_query events. (#​48217)
    The db.server.top_query log records now include:

    • sqlserver.query.last_started: ISO 8601 timestamp of when the query last started executing.
    • db.namespace: the database name, populated via DB_NAME(st.dbid) in the underlying SQL query.
  • receiver/vcenter: Add max_query_metrics option to batch QueryPerf requests, preventing vCenter resource exhaustion in large deployments. (#​47941)

  • receiver/windows_event_log: Add event_driven_scraping config option (#​48235)
    The new event_driven_scraping config option enables the event-driven scraping model on the
    windows event log input (and the windowseventlog receiver) without requiring the
    stanza.windows.eventDrivenScraping feature gate. Event-driven scraping is enabled when
    either the config option or the feature gate is set. This configuration option should be treated
    as experimental until the feature gate has been promoted from alpha stability.

  • receiver/windowsservice: Advancement of windows service receiver from development to alpha (#​48176)

🧰 Bug fixes 🧰
  • connector/service_graph: Fix client-side exponential histograms being emitted with a zero timestamp, causing backends like Grafana Cloud Mimir to reject them. (#​48049)
    collectClientLatencyMetrics omitted SetTimestamp on the exponential-histogram data point, so the
    zero-value timestamp leaked through. The server-side function and the client-side explicit-bucket
    branch were already correct.

  • exporter/datadog: Honor tls.insecure_skip_verify for logs flowing through datadogexporter (#​48523)

  • exporter/datadog: Fix percentile aggregations collapsing to 0 for OTLP explicit-bucket histograms whose first non-empty bucket is (0, B]. (#​48478)
    Affects the default boundary set used by Micrometer's OTLP registry and many
    OTel SDKs ([0, 5, 10, 25, 50, 75, 100, 250, …]). With high-cardinality
    tagging and short delta intervals, per-bucket counts of 1 or 2 made the
    zero-bin leak dominate, collapsing p50…p99 aggregations to 0. avg, sum,
    min, max, and count were not affected.

  • extension/sumologic: Make metadata update process async to prevent collector startup failure when metadata endpoint is unavailable (e.g. Windows service starting before network initialization). (#​48450)

  • pkg/translator/splunk: Propagate the OTLP log record EventName field into the Splunk HEC event under the configured otel_to_hec_fields/name key (default otel.log.name). (#​48048)

  • processor/k8s_attributes: Preserve an upstream-set container.image.tags resource attribute when processor.k8sattributes.EmitV1K8sConventions is enabled, matching the behavior of container.image.tag and container.image.repo_digests. (#​45869)

  • processor/k8s_attributes: Re-enable otelcol.k8s.pod.association metric with low-cardinality pod_identifier attribute. The attribute now encodes the association source type/name (e.g. "connection", "resource_attribute/k8s.pod.ip") rather than actual pod identifier values, preventing unbounded metric time series growth. (#​47669)

  • processor/schema: Enforces that all prefetched schemas are completed before starting. (#​48258)

  • receiver/azure_blob: Delete blobs only upon successful processing (#​48211)
    Blobs that fail to be processed will now remain in the container and will be retried on the next poll. Users with consistently failing pipelines may see container growth or duplicate emissions on retry.

  • receiver/azure_monitor: fix(azuremonitorreceiver): prevent duplicate sample timestamps in batch scraper (#​47938)

  • receiver/cloudflare: Preserve array-typed Cloudflare log fields as OTLP attributes instead of dropping them. (#​46716)

  • receiver/iis: The IIS receiver was failing to start when a disabled metric was not present in the system (#​48609)
    The IIS receiver was attempting to create watchers for all metrics, even those that were disabled.
    This was causing the receiver to fail to start if any of the disabled metrics were not present in the system,
    which is a valid scenario for some of the IIS metrics. Now, the receiver will only attempt to create watchers
    for enabled metrics, so it should start successfully as long as all enabled metrics are present in the system.

  • receiver/mysql: Exclude collector's own queries from Query Sample collection to prevent feedback loop. (#​47904)
    Adds a /* otel-collector-ignore */ comment prefix to the Query Sample SQL template and filters
    it out via a NOT LIKE clause on statement.sql_text.

  • receiver/oracledb: Exclude the collector's own monitoring queries from Query Sample collection using native session ID filtering. (#​47366)
    Uses native session evaluation (AND S.SID != SYS_CONTEXT('USERENV', 'SID')) to filter the collector's active queries from V$SESSION. This bypasses Go connection pool limitations and avoids the performance overhead of text-matching on VARCHAR2 or CLOB fields.
    Top Query collection is no longer filtered, so collector-originated statements can still appear there for troubleshooting.

  • receiver/podman_stats: Fix incorrect network I/O metric recording (#​48313)
    The podman receiver was incorrectly recording network I/O metrics, with the received bytes and transmitted bytes swapped.
    This fix corrects the recording of these metrics to ensure accurate telemetry data is collected.

  • receiver/prometheus_remote_write: Fix otelcol_receiver_accepted_metric_points reporting resource count instead of data point count. (#​48306)

  • receiver/prometheus_remote_write: Fix broken trace propagation to downstream pipeline components. (#​48548)

  • receiver/prometheus_remote_write: Properly handle NaN native histograms, and drop points associated with the native histogram overflow buckets. (#​47728)

  • receiver/sqlserver: Exclude collector's own queries from Query Sample collection to prevent feedback loop. (#​47332)
    Adds a /* otel-collector */ comment prefix to the Query Sample SQL template and filters it out
    via a WHERE clause on sys.dm_exec_sql_text. Also excludes the current session via @​@​SPID.
    Top Query collection is intentionally left unfiltered so users can see the monitoring cost.

  • receiver/syslog: Support days with leading zeros in RFC 3164 syslogs (#​47665)

  • receiver/yang_grpc: Fix setting metric attributes from context bag. (#​48568)

  • scraper/zookeeper: Fix zk_avg_latency metric being silently dropped on Zookeeper 3.7+ where the value is reported as a float. (#​47320)

v0.152.0

Compare Source

🛑 Breaking changes 🛑
  • connector/span_metrics: Promote connector.spanmetrics.includeCollectorInstanceID feature gate to beta. (#​40400)
    Adds a collector.instance.id attribute to all metrics emitted by the spanmetrics connector.
  • pkg/coreinternal: Promote internal.coreinternal.goldendataset.DontEmitV0NetworkConventions and internal.coreinternal.goldendataset.EmitV1NetworkConventions feature gates to Beta (#​46680)
    Both feature gates should be promoted together as per RFC.
  • pkg/coreinternal: Promote internal.coreinternal.goldendataset.DontEmitV0RPCConventions and internal.coreinternal.goldendataset.EmitV1RPCConventions feature gates to Beta (#​46680)
  • processor/tail_sampling: Stabilize disableinvertdecisions feature gate. (#​47650)
  • receiver/kafka_metrics: Promote the receiver.kafkametricsreceiver.UseFranzGo feature gate to stable (#​41480)
    The franz-go client is now the only implementation; the gate is now permanently enabled and will be removed in v0.154.0.
    The Sarama-based implementation has been removed.
🚩 Deprecations 🚩
  • connector/otlp_json: Rename component type from otlpjson to otlp_json to follow snake_case naming convention. The old name is kept as a deprecated alias. (#​48019)
  • connector/round_robin: Rename component type from roundrobin to round_robin to follow snake_case naming convention. The old name is kept as a deprecated alias. (#​48021)
  • connector/slow_sql: Rename component type from slowsql to slow_sql to follow snake_case naming convention. The old name is kept as a deprecated alias. (#​48020)
  • exporter/bmc_helix: Rename exporter type from bmchelix to bmc_helix (#​45339)
  • extension/kafkatopics_observer: Deprecate the kafkatopicsobserver extension in favor of using kafkareceiver directly (#​48186)
  • processor/metrics_transform: Rename processor type from metricstransform to metrics_transform (#​45339)
  • receiver/aws_lambda: Rename awslambda receiver to use lower_snake_case name aws_lambda. (#​45339)
  • receiver/cloud_foundry: Rename receiver type from cloudfoundry to cloud_foundry (#​45339)
  • receiver/google_cloud_spanner: Rename receiver type from googlecloudspanner to google_cloud_spanner (#​45339)
  • receiver/kafka_metrics: Rename kafkametrics receiver to kafka_metrics with deprecated alias kafkametrics (#​45339)
  • receiver/kubelet_stats: Rename receiver type from kubeletstats to kubelet_stats (#​45339)
  • receiver/tcp_check: Rename tcpcheck receiver to tcp_check with deprecated alias tcpcheck (#​45339)
🚀 New components 🚀
  • extension/mcp: Add new MCP server extension component. (#​48072)
  • processor/cardinality_guardian: Add cardinalityguardianprocessor. (#​47368)
  • processor/genainormalizer: Add a processor that normalizes GenAI telemetry attributes from OpenInference and OpenLLMetry to the official OTel GenAI Semantic Conventions. (#​46069)
💡 Enhancements 💡
  • all: Support building with AIX (#​47010)

  • cmd/opampsupervisor: Add support for declarative telemetry.resource configuration while preserving legacy inline resource attributes (#​45116)
    cmd/opampsupervisor now accepts typed telemetry resource configuration,
    including declarative resource attributes and detectors, and validates
    unsupported mixed or deprecated forms.
    Example:
    telemetry:
    resource:
    attributes:
    - name: service.name
    value: opamp-supervisor

  • exporter/datadog: Add Kubernetes host alias provider to datadog exporter. (#​47199)
    In Kubernetes environments, the Datadog exporter now automatically adds nodeName-clusterName as a
    host alias in the host metadata payload. Both the node name and cluster name must be discoverable for the alias to
    be added; the cluster name is resolved from cloud provider metadata (Azure, EC2, or GCP).

  • exporter/elasticsearch: Add ability to set filter_path in Elasticsearch exporter via the bulk_response_filter_path option. (#​47204)

  • exporter/file: Allow usage of append mode with zstd compression (#​44382)

  • exporter/kafka: Allow record_headers to accept multiple headers with the same key. (#​48092)

  • exporter/loadbalancing: Add stable attribute routing key encoding for traces and metrics in the loadbalancing exporter (#​46094, #​46095)
    Routing keys now encode attributes as name=value| segments, including explicit markers for missing attributes.
    Non-string attribute values are deterministically stringified and used consistently across traces and metrics.

  • exporter/opensearch: specify an ingest pipeline to be used before writing documents (#​47227)
    The pipeline option allows to specify an existing ingest pipeline that should process incoming documents.
    If the ingest pipeline does not exist, ingestion will fail.

  • extension/aws_logs_encoding: Populate ECS fields from VPC Flow Logs as log record attributes (#​38861)
    Previously, VPC flow log fields prefixed with ecs- were skipped with a warning.
    They are now mapped to aws.ecs.* attributes on the emitted log record.

  • extension/bearertokenauth: Update token file parsing to ignore everything after the first whitespace, allowing for inline comments. (#​46100)

  • extension/cgroup_runtime: Expose refresh_interval for GOMEMLIMIT to support dynamic memory limits. (#​46768)

  • extension/docker_observer: Add include_all_containers option to emit a port-less endpoint for every running container, including those with no exposed ports. (#​48252)
    When enabled, the observer emits a container endpoint with no port
    information for every running container, alongside any per-port endpoints.
    This allows receiver_creator rules of type == "container" to attach
    receivers to every container regardless of whether it exposes ports.
    Defaults to false for backwards compatibility.

  • extension/kafkatopics_observer: Switch to the franz-go client. (#​48169)
    This is another step towards consolidating on franz-go for all Kafka components.
    We have already switched the receiver and exporter, and they are working well.

  • extension/mcp: Register available tools with MCP server. (#​48103)

  • extension/pebble_tail_storage: Add initial implementation of the Pebble tail storage extension. (#​47916)

  • pkg/faro: Emit k6_testRunId in the log body when meta.k6.testRunId is present in the Faro payload. (#​47935)
    Surfaces the k6 test run identifier that the Faro Web SDK already
    forwards from window.k6.testRunId, alongside the existing
    k6_isK6Browser key. The reverse (logs -> Faro) translator extracts
    it back into Meta.K6.TestRunID for round-trip parity.

  • pkg/pdatatest: Introduce pmetrictest.ValidateMetrics to strictly validate duplicate datapoint identities. (#​48106)

  • processor/attributes: Added support for default values in the attributes processor. (#​45352)
    This enhancement allows users to specify default values for attributes in the attributes processor.
    If the primary value source (e.g., environment variable, attribute, or context value) is not available,
    the default value will be used. This ensures that the pipeline doesn't fail due to missing configuration.

  • processor/drain: Add drain processor to k8s distribution. (#​47235)

  • processor/k8s_attributes: Improve deployment name extraction heuristic when deployment_name_from_replicaset is enabled (#​44831)
    When deployment_name_from_replicaset is true and the ReplicaSet informer is not used for deployment names only,
    the processor derives k8s.deployment.name using the pod-template-hash label and ReplicaSet naming rules.
    When a ReplicaSet informer is running (for example for k8s.deployment.uid), API-backed metadata takes precedence,
    independent of the deployment_name_from_replicaset setting.

  • processor/k8s_attributes: Add watch_sync_period config option to configure informer cache resync period. (#​48111)
    The watch_sync_period config option defaults to 5m to match the previously hardcoded behavior.

  • processor/k8s_attributes: Use PartialObjectMetadata for non-Pod informers (#​47389)
    Switch Namespace, Node, Deployment, StatefulSet, DaemonSet, and Job informers
    from full typed objects to PartialObjectMetadata via the metadata client.
    These resources only need labels, annotations, UID, name, and owner references—all available
    in object metadata—so fetching full spec/status is unnecessary overhead.

    Pods continue using full objects since they require spec/status
    fields (pod IP, node name, containers, host network).

  • processor/resource: Added support for default values in the resource processor. (#​45352)
    This enhancement allows users to specify default values for attributes in the resource processor.
    If the primary value source (e.g., environment variable, attribute, or context value) is not available,
    the default value will be used. This ensures that the pipeline doesn't fail due to missing configuration.

  • processor/schema: Add internal metrics for schema translation skip rate and cache hit/miss (#​47638)
    Five new metrics are emitted via the collector's internal telemetry:

    • otelcol_processor_schema_logs.skipped
    • otelcol_processor_schema_metrics.skipped
    • otelcol_processor_schema_traces.skipped
    • otelcol_processor_schema_cache.hits
    • otelcol_processor_schema_cache.misses

    The skip counters increment when a scope has no schema URL at either the scope
    or resource level, making silent pass-throughs observable. The cache counters
    track effectiveness of the in-memory schema cache in CacheableProvider.

  • receiver/awsfirehose: awsfirehose receiver now attempts gzip decompression for Firehose records before decoding. (#​46463)

  • receiver/azure_event_hub: Expose the Prefetch option for Azure Event Hub receiver (#​48038)

  • receiver/couchdb: Enables dynamic metric reaggregation in the CouchDB receiver. This does not break existing configuration files. (#​46351)

  • receiver/googlecloudmonitoring: Allow overriding default endpoint for googlecloudmonitoringreceiver (#​47984)
    Adds an endpoint property which overrides the default monitoring.googleapis.com:443 endpoint.
    This is needed when targeting non-standard universe domains (e.g. S3NS: https://docs.cloud.google.com/sovereign-controls-by-partners/docs/data-boundaries/france-data-boundary-s3ns)

  • receiver/k8s_cluster: Enable the re-aggregation feature for the k8s_cluster receiver (#​46361)

  • receiver/k8s_events: Simplified RBAC example in README to only include required events resource permission. (#​48192)
    A namespace-scoped Role can also be used when the receiver is configured with specific namespaces.

  • receiver/kafka: Add support for custom consumer-group partition-assignment strategies via extensions that implement kgo.GroupBalancer. Set group_rebalance_strategy to the component ID of a registered extension to use a custom balancer. (#​48096)
    The four built-in strategies (range, roundrobin, sticky, cooperative-sticky) continue to work unchanged.
    Any other value for group_rebalance_strategy is now resolved as an extension component ID at runtime.

  • receiver/kafka: Cache OTel metric attribute sets in broker hook callbacks to reduce per-read allocations (#​47395)
    OnBrokerRead previously rebuilt attribute sets on every call. The computed
    MeasurementOption is now cached per (nodeID, outcome) key and evicted on
    broker disconnect. Growth is bounded by 2 × number-of-brokers.

  • receiver/kubelet_stats: Add optional system container metrics (cpu.time, cpu.usage, memory.working_set) to kubeletstats receiver. (#​3531)

  • receiver/memcached: Enables dynamic metric reaggregation in the Memcached receiver. This does not break existing configuration files. (#​46364)

  • receiver/mysql: Added 'mysql.query_plan' to query sample records collected (#​47413)

  • receiver/mysql: Fix the query hash generation for MySQL queries when the query is not explainable. (#​48059)

  • receiver/nsxt: Enables dynamic metric reaggregation in the NSX-T receiver. This does not break existing configuration files. (#​46369)

  • receiver/prometheus_remote_write: Add debug logging when dropping histograms with invalid schema values (#​48027)

  • receiver/sqlserver: Adds idle blocking sessions to db.server.query_sample by appending sleeping blocker rows (with sqlserver.command=IDLE_BLOCKER) when blocker session IDs are missing from active requests. (#​47120)
    Idle blocker enrichment is best-effort: a targeted secondary idle-session query runs only for missing blocker session IDs, and failures are logged as warnings without failing the scrape.

🧰 Bug fixes 🧰
  • connector/service_graph: Fix PR 47971 not add WithDeprecatedTypeAlias option in NewFactory() (#​47971)

  • exporter/elasticsearch: Return permanent errors for non-retryable HTTP responses to prevent unnecessary upstream retries. (#​47870)

  • exporter/kafka: Fix collector hanging indefinitely on shutdown when the Kafka broker is unreachable (#​48140)
    Re-enables the exporterhelper timeout sender (previously disabled with a zero timeout) so that each send attempt is bounded by the configured timeout (default 5s). The per-attempt context is now passed through to ProduceSync, allowing in-flight sends to unblock when the broker is unreachable. FranzSyncProducer.Close also cancels the kgo client context before calling client.Close, ensuring shutdown completes promptly.

  • extension/health_check: Fix deadlock when the collector run context is cancelled while the healthcheck extension is present. (#​47591)

  • extension/healthcheckv2: Fix deadlock when the collector run context is cancelled while the healthcheck extension is present. (#​47591)

  • extension/opamp: Decorrelate service.instance.id and OpAMP instance_uid (#​46495)
    Previously:

    • the service.instance.id reported in the AgentDescription was based on the OpAMP instance UID
    • the instance UID was typically set based on the service.instance.id from the Collector resource attributes
    • it could be overriden using the instance_uid configuration of the OpAMP extension

    This meant that the reported service.instance.id did not always match the Collector resource attributes,
    which is a problem for correlation, and that server implementations got used to the typical case of
    service.instance.id and instance_uid matching, despite there being no guarantee of this.

    Now:

    • the reported value of service.instance.id always matches the Collector resource attributes
    • the instance UID is either taken from the instance_uid configuration or generated randomly.

    This means that the two values can never be expected to match, unless both configurations are explicitly set to the same value.
    That is what the OpAMP supervisor does, which means its behavior is unaffected.

  • extension/sumologic: Fix variable shadowing and formatting issues in tests. (#​46602)

  • processor/k8s_attributes: Fix a data race when reading the kube-system namespace from the client cache to populate the k8s.cluster.uid attribute. ([#​47910](https://redirect.github.com/open-telemetry/opentelemetry-c

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 6cdbed2 to d7638a7 Compare October 23, 2024 14:39
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.111.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.112.0 Oct 23, 2024
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from d7638a7 to 5f3c131 Compare November 6, 2024 21:29
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.112.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.113.0 Nov 6, 2024
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Nov 6, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 51 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.20 -> 1.23.5
github.com/stretchr/testify v1.8.4 -> v1.10.0
go.opentelemetry.io/collector/component v0.93.0 -> v0.118.0
go.opentelemetry.io/collector/receiver v0.93.0 -> v0.118.0
golang.org/x/sys v0.16.0 -> v0.28.0
cloud.google.com/go/compute/metadata v0.2.4-0.20230617002413-005d2dfb6b68 -> v0.5.2
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.21.0 -> v1.24.2
github.com/Microsoft/go-winio v0.6.1 -> v0.6.2
github.com/cenkalti/backoff/v4 v4.2.1 -> v4.3.0
github.com/cespare/xxhash/v2 v2.2.0 -> v2.3.0
github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4 -> v0.0.0-20240905190251-b4127c9b8d78
github.com/docker/docker v24.0.7+incompatible -> v27.3.1+incompatible
github.com/envoyproxy/go-control-plane v0.11.1 -> v0.13.1
github.com/envoyproxy/protoc-gen-validate v1.0.2 -> v1.1.0
github.com/go-logr/logr v1.4.1 -> v1.4.2
github.com/golang/protobuf v1.5.3 -> v1.5.4
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 -> v2.20.0
github.com/hashicorp/go-version v1.6.0 -> v1.7.0
github.com/klauspost/compress v1.17.4 -> v1.17.9
github.com/knadh/koanf/v2 v2.0.1 -> v2.1.2
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.93.0 -> v0.118.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.93.0 -> v0.118.0
github.com/opencontainers/image-spec v1.1.0-rc5 -> v1.1.0
github.com/prometheus/client_model v0.5.0 -> v0.6.0
github.com/shirou/gopsutil/v3 v3.23.12 -> v3.24.5
github.com/stretchr/objx v0.5.0 -> v0.5.2
github.com/yusufpapurcu/wmi v1.2.3 -> v1.2.4
go.opentelemetry.io/collector/config/configtelemetry v0.93.0 -> v0.118.0
go.opentelemetry.io/collector/confmap v0.93.0 -> v1.24.0
go.opentelemetry.io/collector/featuregate v1.0.1 -> v1.24.0
go.opentelemetry.io/collector/pdata v1.0.1 -> v1.24.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 -> v0.49.0
go.opentelemetry.io/otel v1.22.0 -> v1.32.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.22.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.22.0 -> v1.28.0
go.opentelemetry.io/otel/metric v1.22.0 -> v1.32.0
go.opentelemetry.io/otel/sdk v1.22.0 -> v1.32.0
go.opentelemetry.io/otel/sdk/metric v1.22.0 -> v1.32.0
go.opentelemetry.io/otel/trace v1.22.0 -> v1.32.0
go.opentelemetry.io/proto/otlp v1.0.0 -> v1.3.1
go.uber.org/zap v1.26.0 -> v1.27.0
golang.org/x/crypto v0.18.0 -> v0.31.0
golang.org/x/mod v0.14.0 -> v0.19.0
golang.org/x/net v0.20.0 -> v0.33.0
golang.org/x/oauth2 v0.16.0 -> v0.23.0
golang.org/x/term v0.16.0 -> v0.27.0
golang.org/x/text v0.14.0 -> v0.21.0
golang.org/x/tools v0.16.0 -> v0.23.0
google.golang.org/genproto/googleapis/api v0.0.0-20240102182953-50ed04b92917 -> v0.0.0-20241015192408-796eee8c2d53
google.golang.org/genproto/googleapis/rpc v0.0.0-20240102182953-50ed04b92917 -> v0.0.0-20241104194629-dd2ea8efbc28
google.golang.org/grpc v1.60.1 -> v1.69.4
google.golang.org/protobuf v1.32.0 -> v1.36.3

@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch 2 times, most recently from c66904c to 05375ea Compare November 19, 2024 01:50
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.113.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.114.0 Nov 19, 2024
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 05375ea to 6f322a7 Compare December 4, 2024 13:31
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.114.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.115.0 Dec 4, 2024
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 6f322a7 to aff64c9 Compare December 17, 2024 15:32
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.115.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.116.0 Dec 17, 2024
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from aff64c9 to fdfb990 Compare January 8, 2025 04:28
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.116.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.117.0 Jan 8, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from fdfb990 to b56d5e9 Compare January 21, 2025 20:59
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.117.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.118.0 Jan 21, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from b56d5e9 to aec1cf6 Compare February 4, 2025 09:16
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.118.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.119.0 Feb 4, 2025
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Feb 4, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -t ./...
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector v0.153.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusexporter v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/extension/bearertokenauthextension v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/extension/healthcheckextension v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/extension/jaegerremotesampling v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/extension/oauth2clientauthextension v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/extension/pprofextension v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/processor/filterprocessor v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/processor/k8sattributesprocessor v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourcedetectionprocessor v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/processor/routingprocessor v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/processor/spanprocessor v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/receiver/jaegerreceiver v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/receiver/journaldreceiver v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kafkareceiver v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zipkinreceiver v0.93.0
go: downloading go.opentelemetry.io/collector/component v1.59.0
go: downloading go.opentelemetry.io/collector v0.93.0
go: downloading go.opentelemetry.io/collector/connector v0.153.0
go: downloading go.opentelemetry.io/collector/exporter v0.93.0
go: downloading go.opentelemetry.io/collector/exporter/debugexporter v0.93.0
go: downloading go.opentelemetry.io/collector/exporter/loggingexporter v0.93.0
go: downloading go.opentelemetry.io/collector/exporter/otlpexporter v0.93.0
go: downloading go.opentelemetry.io/collector/exporter/otlphttpexporter v0.93.0
go: downloading go.opentelemetry.io/collector/extension v0.93.0
go: downloading go.opentelemetry.io/collector/extension/ballastextension v0.93.0
go: downloading go.opentelemetry.io/collector/extension/zpagesextension v0.93.0
go: downloading go.opentelemetry.io/collector/otelcol v0.93.0
go: downloading go.opentelemetry.io/collector/processor v0.93.0
go: downloading go.opentelemetry.io/collector/processor/batchprocessor v0.93.0
go: downloading go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.93.0
go: downloading go.opentelemetry.io/collector/receiver v1.59.0
go: downloading go.opentelemetry.io/collector/receiver/otlpreceiver v0.93.0
go: downloading golang.org/x/sys v0.45.0
go: downloading github.com/stretchr/testify v1.11.1
go: downloading go.opentelemetry.io/collector/component/componenttest v0.153.0
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/hashicorp/golang-lru/v2 v2.0.7
go: downloading github.com/hashicorp/golang-lru v1.0.2
go: downloading github.com/jonboulle/clockwork v0.5.0
go: downloading github.com/lightstep/go-expohisto v1.0.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.153.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/internal/pdatautil v0.153.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.153.0
go: downloading go.opentelemetry.io/collector/config/configoptional v1.59.0
go: downloading go.opentelemetry.io/collector/confmap v1.59.0
go: downloading go.opentelemetry.io/collector/confmap/xconfmap v0.153.0
go: downloading go.opentelemetry.io/collector/connector/xconnector v0.153.0
go: downloading go.opentelemetry.io/collector/consumer v1.59.0
go: downloading go.opentelemetry.io/collector/pdata v1.59.0
go: downloading go.opentelemetry.io/otel v1.43.0
go: downloading go.uber.org/zap v1.28.0
go: downloading github.com/IBM/sarama v1.42.1
go: downloading github.com/gogo/protobuf v1.3.2
go: downloading github.com/jaegertracing/jaeger v1.53.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/internal/kafka v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/pkg/batchpersignal v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.93.0
go: downloading go.opentelemetry.io/collector/config/configretry v0.93.0
go: downloading go.opentelemetry.io/collector/consumer/consumererror v0.153.0
go: downloading go.uber.org/multierr v1.11.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/pkg/resourcetotelemetry v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus v0.93.0
go: downloading github.com/prometheus/client_golang v1.18.0
go: downloading github.com/prometheus/common v0.46.0
go: downloading go.opentelemetry.io/collector/config/confighttp v0.93.0
go: downloading go.opentelemetry.io/collector/semconv v0.93.0
go: downloading github.com/fsnotify/fsnotify v1.7.0
go: downloading go.opentelemetry.io/collector/config/configopaque v0.93.0
go: downloading go.opentelemetry.io/collector/extension/auth v0.93.0
go: downloading google.golang.org/grpc v1.81.1
go: downloading go.opencensus.io v0.24.0
go: downloading go.opentelemetry.io/collector/config/configgrpc v0.93.0
go: downloading go.opentelemetry.io/collector/config/confignet v0.93.0
go: downloading go.opentelemetry.io/collector/featuregate v1.59.0
go: downloading go.opentelemetry.io/collector/config/configtls v0.93.0
go: downloading golang.org/x/oauth2 v0.36.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/internal/k8sconfig v0.93.0
go: downloading k8s.io/apimachinery v0.28.4
go: downloading go.opentelemetry.io/otel/metric v1.43.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.93.0
go: downloading github.com/apache/thrift v0.19.0
go: downloading github.com/gorilla/mux v1.8.1
go: downloading github.com/json-iterator/go v1.1.12
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/azure v0.93.0
go: downloading github.com/census-instrumentation/opencensus-proto v0.4.1
go: downloading github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent v0.93.0
go: downloading github.com/rs/cors v1.10.1
go: downloading github.com/soheilhy/cmux v0.1.5
go: downloading github.com/go-kit/log v0.2.1
go: downloading github.com/mitchellh/hashstructure/v2 v2.0.2
go: downloading github.com/prometheus/prometheus v0.48.1
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading go.opentelemetry.io/otel/trace v1.43.0
go: downloading go.opentelemetry.io/collector/internal/componentalias v0.153.0
go: downloading go.opentelemetry.io/collector/pipeline v1.59.0
go: downloading go.opentelemetry.io/collector/config/configtelemetry v0.93.0
go: downloading go.opentelemetry.io/collector/config/configcompression v0.93.0
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20260226221140-a57be14db171
go: downloading google.golang.org/genproto v0.0.0-20231212172506-995d672761c0
go: downloading google.golang.org/protobuf v1.36.11
go: downloading go.opentelemetry.io/contrib/zpages v0.47.0
go: downloading go.opentelemetry.io/otel/sdk v1.43.0
go: downloading github.com/spf13/cobra v1.8.0
go: downloading go.opentelemetry.io/collector/service v0.93.0
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
go: downloading github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
go: downloading go.opentelemetry.io/otel/sdk/metric v1.43.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/pkg/sampling v0.153.0
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading go.opentelemetry.io/collector/consumer/xconsumer v0.153.0
go: downloading go.opentelemetry.io/collector/pipeline/xpipeline v0.153.0
go: downloading github.com/eapache/go-resiliency v1.4.0
go: downloading github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3
go: downloading github.com/eapache/queue v1.1.0
go: downloading github.com/hashicorp/go-multierror v1.1.1
go: downloading github.com/jcmturner/gofork v1.7.6
go: downloading github.com/jcmturner/gokrb5/v8 v8.4.4
go: downloading github.com/klauspost/compress v1.18.5
go: downloading github.com/pierrec/lz4/v4 v4.1.18
go: downloading github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
go: downloading golang.org/x/net v0.55.0
go: downloading github.com/xdg-go/scram v1.1.2
go: downloading github.com/openzipkin/zipkin-go v0.4.2
go: downloading github.com/cenkalti/backoff/v4 v4.3.0
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/prometheus/client_model v0.5.0
go: downloading github.com/prometheus/procfs v0.12.0
go: downloading github.com/golang/snappy v0.0.4
go: downloading go.opentelemetry.io/collector/config/configauth v0.93.0
go: downloading go.opentelemetry.io/collector/config/internal v0.93.0
go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0
go: downloading github.com/spf13/viper v1.18.2
go: downloading github.com/tilinna/clock v1.1.0
go: downloading github.com/mostynb/go-grpc-compression v1.2.2
go: downloading go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0
go: downloading github.com/hashicorp/go-version v1.9.0
go: downloading github.com/alecthomas/participle/v2 v2.1.1
go: downloading github.com/iancoleman/strcase v0.3.0
go: downloading golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc
go: downloading github.com/openshift/client-go v0.0.0-20210521082421-73d9475a9142
go: downloading k8s.io/client-go v0.28.4
go: downloading k8s.io/api v0.28.4
go: downloading github.com/aws/aws-sdk-go v1.50.2
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/internal/metadataproviders v0.93.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws/ecsutil v0.93.0
go: downloading github.com/hashicorp/consul/api v1.27.0
go: downloading cloud.google.com/go/compute/metadata v0.9.0
go: downloading cloud.google.com/go/compute v1.23.3
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.31.0
go: downloading github.com/shirou/gopsutil/v3 v3.23.12
go: downloading go.opentelemetry.io/collector/consumer/consumertest v0.153.0
go: downloading github.com/gogo/googleapis v1.4.1
go: downloading go.yaml.in/yaml/v3 v3.0.4
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee
go: downloading golang.org/x/text v0.37.0
go: downloading github.com/relvacode/iso8601 v1.3.0
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20260226221140-a57be14db171
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/opencensus v0.93.0
go: downloading github.com/go-logfmt/logfmt v0.6.0
go: downloading github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f
go: downloading github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137
go: downloading github.com/grafana/regexp v0.0.0-20221122212121-6b5c0a4cb7fd
go: downloading github.com/prometheus/common/sigv4 v0.1.0
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/inconshreveable/mousetrap v1.1.0
go: downloading github.com/spf13/pflag v1.0.5
go: downloading go.opentelemetry.io/contrib/config v0.2.0
go: downloading go.opentelemetry.io/contrib/propagators/b3 v1.22.0
go: downloading github.com/go-viper/mapstructure/v2 v2.5.0
go: downloading github.com/gobwas/glob v0.2.3
go: downloading github.com/knadh/koanf/maps v0.1.2
go: downloading github.com/knadh/koanf/providers/confmap v1.0.0
go: downloading github.com/knadh/koanf/v2 v2.3.4
go: downloading go.opentelemetry.io/collector/pdata/pprofile v0.153.0
go: downloading github.com/hashicorp/errwrap v1.1.0
go: downloading github.com/jcmturner/dnsutils/v2 v2.0.0
go: downloading github.com/hashicorp/go-uuid v1.0.3
go: downloading github.com/xdg-go/pbkdf2 v1.0.0
go: downloading github.com/xdg-go/stringprep v1.0.4
go: downloading github.com/felixge/httpsnoop v1.0.4
go: downloading github.com/go-logr/logr v1.4.3
go: downloading github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
go: downloading github.com/sagikazarmark/locafero v0.4.0
go: downloading github.com/sagikazarmark/slog-shim v0.1.0
go: downloading github.com/spf13/afero v1.15.0
go: downloading github.com/spf13/cast v1.6.0
go: downloading github.com/expr-lang/expr v1.15.8
go: downloading k8s.io/klog/v2 v2.100.1
go: downloading k8s.io/utils v0.0.0-20230711102312-30195339c3c7
go: downloading github.com/imdario/mergo v0.3.16
go: downloading golang.org/x/term v0.43.0
go: downloading github.com/google/gofuzz v1.2.0
go: downloading sigs.k8s.io/structured-merge-diff/v4 v4.3.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.93.0
go: downloading github.com/hashicorp/go-cleanhttp v0.5.2
go: downloading github.com/hashicorp/go-hclog v1.6.1
go: downloading github.com/hashicorp/go-rootcerts v1.0.2
go: downloading github.com/hashicorp/serf v0.10.1
go: downloading github.com/docker/docker v24.0.7+incompatible
go: downloading github.com/Showmax/go-fqdn v1.0.0
go: downloading github.com/lufia/plan9stats v0.0.0-20220913051719-115f729f3c8c
go: downloading github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55
go: downloading github.com/shoenig/go-m1cpu v0.1.6
go: downloading github.com/tklauser/go-sysconf v0.3.16
go: downloading github.com/yusufpapurcu/wmi v1.2.4
go: downloading github.com/valyala/fastjson v1.6.4
go: downloading github.com/influxdata/go-syslog/v3 v3.0.1-0.20230911200830-875f5bc594a4
go: downloading gonum.org/v1/gonum v0.17.0
go: downloading github.com/golang/protobuf v1.5.4
go: downloading github.com/jpillora/backoff v1.0.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/azcore v1.8.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v4 v4.2.1
go: downloading github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v2 v2.2.1
go: downloading github.com/digitalocean/godo v1.104.1
go: downloading github.com/miekg/dns v1.1.56
go: downloading google.golang.org/api v0.155.0
go: downloading github.com/hetznercloud/hcloud-go/v2 v2.4.0
go: downloading github.com/ionos-cloud/sdk-go/v6 v6.1.9
go: downloading github.com/linode/linodego v1.23.0
go: downloading github.com/hashicorp/nomad/api v0.0.0-20230721134942-515895c7690c
go: downloading github.com/gophercloud/gophercloud v1.7.0
go: downloading github.com/ovh/go-ovh v1.4.3
go: downloading github.com/scaleway/scaleway-sdk-go v1.0.0-beta.21
go: downloading github.com/kolo/xmlrpc v0.0.0-20220921171641-a4b6fa1dd06b
go: downloading github.com/vultr/govultr/v2 v2.17.2
go: downloading github.com/envoyproxy/go-control-plane v0.14.0
go: downloading github.com/envoyproxy/go-control-plane/envoy v1.37.0
go: downloading github.com/envoyproxy/protoc-gen-validate v1.3.3
go: downloading github.com/go-zookeeper/zk v1.0.3
go: downloading golang.org/x/time v0.5.0
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading go.opentelemetry.io/auto/sdk v1.2.1
go: downloading go.opentelemetry.io/otel/bridge/opencensus v0.45.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.45.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.45.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.22.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.22.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.22.0
go: downloading go.opentelemetry.io/otel/exporters/prometheus v0.45.0
go: downloading go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v0.45.0
go: downloading go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.22.0
go: downloading github.com/mitchellh/copystructure v1.2.0
go: downloading golang.org/x/crypto v0.52.0
go: downloading github.com/jcmturner/rpc/v2 v2.0.3
go: downloading github.com/sourcegraph/conc v0.3.0
go: downloading github.com/subosito/gotenv v1.6.0
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading gopkg.in/ini.v1 v1.67.0
go: downloading github.com/magiconair/properties v1.8.10
go: downloading github.com/pelletier/go-toml/v2 v2.1.0
go: downloading github.com/elastic/lunes v0.2.0
go: downloading github.com/openshift/api v3.9.0+incompatible
go: downloading github.com/google/gnostic-models v0.6.8
go: downloading sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd
go: downloading sigs.k8s.io/yaml v1.3.0
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading github.com/google/go-cmp v0.7.0
go: downloading github.com/jmespath/go-jmespath v0.4.0
go: downloading github.com/stretchr/objx v0.5.2
go: downloading github.com/fatih/color v1.15.0
go: downloading github.com/mattn/go-colorable v0.1.13
go: downloading github.com/mattn/go-isatty v0.0.19
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading github.com/armon/go-metrics v0.4.1
go: downloading github.com/docker/distribution v2.8.2+incompatible
go: downloading github.com/docker/go-connections v0.6.0
go: downloading github.com/opencontainers/go-digest v1.0.0
go: downloading github.com/opencontainers/image-spec v1.1.1
go: downloading github.com/tklauser/numcpus v0.11.0
go: downloading github.com/go-ole/go-ole v1.2.6
go: downloading github.com/leodido/ragel-machinery v0.0.0-20181214104525-299bdde78165
go: downloading github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
go: downloading github.com/dennwc/varint v1.0.0
go: downloading go.uber.org/atomic v1.11.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0
go: downloading github.com/AzureAD/microsoft-authentication-library-for-go v1.1.1
go: downloading github.com/google/go-querystring v1.1.0
go: downloading github.com/hashicorp/go-retryablehttp v0.7.4
go: downloading golang.org/x/tools v0.44.0
go: downloading github.com/go-resty/resty/v2 v2.7.0
go: downloading github.com/docker/go-units v0.5.0
go: downloading github.com/gorilla/websocket v1.5.0
go: downloading github.com/hashicorp/cronexpr v1.1.2
go: downloading github.com/cncf/xds/go v0.0.0-20260202195803-dba9d589def2
go: downloading github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10
go: downloading go.opentelemetry.io/proto/otlp v1.0.0
go: downloading github.com/mitchellh/reflectwalk v1.0.2
go: downloading github.com/jcmturner/aescts/v2 v2.0.0
go: downloading github.com/magefile/mage v1.15.0
go: downloading k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9
go: downloading github.com/hashicorp/go-immutable-radix v1.3.1
go: downloading github.com/Microsoft/go-winio v0.6.2
go: downloading github.com/bmatcuk/doublestar/v4 v4.6.1
go: downloading github.com/kylelemons/godebug v1.1.0
go: downloading github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
go: downloading golang.org/x/sync v0.20.0
go: downloading github.com/google/s2a-go v0.1.7
go: downloading github.com/googleapis/gax-go/v2 v2.12.0
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading github.com/go-openapi/swag v0.22.4
go: downloading github.com/go-openapi/jsonreference v0.20.2
go: downloading github.com/golang-jwt/jwt/v5 v5.0.0
go: downloading golang.org/x/mod v0.35.0
go: downloading github.com/googleapis/enterprise-certificate-proxy v0.3.2
go: downloading github.com/emicklei/go-restful/v3 v3.10.2
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading github.com/go-openapi/jsonpointer v0.20.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2
go: downloading github.com/prometheus/client_model v0.6.2
go: downloading go.opentelemetry.io/proto/otlp v1.9.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib v0.153.0
go: downloading go.opentelemetry.io v0.1.0
go: downloading go.opentelemetry.io/collector/confmap/converter/expandconverter v0.113.0
go: downloading go.opentelemetry.io/collector v0.153.0
go: downloading go.opentelemetry.io/collector/confmap/provider/envprovider v1.59.0
go: downloading go.opentelemetry.io/collector/confmap/provider/fileprovider v1.59.0
go: downloading go.opentelemetry.io/collector/confmap/provider/httpprovider v1.59.0
go: downloading go.opentelemetry.io/collector/confmap/provider/httpsprovider v1.59.0
go: downloading go.opentelemetry.io/collector/confmap/provider/yamlprovider v1.59.0
go: downloading go.opentelemetry.io/collector/receiver/receiverhelper v0.153.0
go: github.com/os-observability/redhat-opentelemetry-collector imports
	github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter imports
	github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger imports
	github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/idutils: cannot find module providing package github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/idutils
go: module github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver is deprecated: this receiver is no longer maintained and has reached end-of-life. See https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/36791
go: module go.opentelemetry.io/collector/exporter/loggingexporter is deprecated: loggingexporter is deprecated in favour of the debugexporter. It will be removed in September 2024.
go: module go.opentelemetry.io/collector/extension/ballastextension is deprecated: Use the GOMEMLIMIT environment variable instead.
go: warning: github.com/openshift/api@v3.9.0+incompatible: retracted by module author: v3.9.0 is the only tag in openshift/api and it was created before go.mod was
go: to switch to the latest unretracted version, run:
	go get github.com/openshift/api@latest

@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from aec1cf6 to 8bddaf7 Compare February 18, 2025 06:44
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.119.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.120.0 Feb 18, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 8bddaf7 to 8abdf7e Compare February 19, 2025 19:26
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.120.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.120.1 Feb 19, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 8abdf7e to 50e8ed8 Compare March 4, 2025 14:51
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.120.1 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.121.0 Mar 4, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 50e8ed8 to 6a7ba9e Compare March 18, 2025 07:04
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.121.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.122.0 Mar 18, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 6a7ba9e to df4737c Compare April 1, 2025 02:49
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.122.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.123.0 Apr 1, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from df4737c to 6bf9858 Compare April 15, 2025 02:42
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 754b183 to bdf61eb Compare July 14, 2025 19:51
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.129.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.130.0 Jul 14, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from bdf61eb to b1e5a28 Compare July 29, 2025 23:30
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.130.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.131.0 Jul 29, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from b1e5a28 to 5661dca Compare August 12, 2025 17:56
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.131.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.132.0 Aug 12, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 5661dca to c92d36b Compare August 26, 2025 03:53
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.132.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.133.0 Aug 26, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from c92d36b to a2aaa81 Compare August 31, 2025 11:01
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.133.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.134.0 Aug 31, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from a2aaa81 to bcfe985 Compare September 8, 2025 21:13
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.134.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.135.0 Sep 8, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from bcfe985 to 88c1f5a Compare September 23, 2025 00:52
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.135.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.136.0 Sep 23, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 88c1f5a to 93d605f Compare October 7, 2025 02:49
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.136.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.137.0 Oct 7, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 93d605f to 05ed237 Compare October 20, 2025 21:57
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.137.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.138.0 Oct 20, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 05ed237 to 7470b04 Compare November 4, 2025 03:00
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.138.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.139.0 Nov 4, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 7470b04 to 6865658 Compare November 18, 2025 05:41
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.139.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.140.0 Nov 18, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 6865658 to 6b67744 Compare November 18, 2025 22:55
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.140.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.140.1 Nov 18, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 6b67744 to 3680a04 Compare December 1, 2025 18:52
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.140.1 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.141.0 Dec 1, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 3680a04 to dd1a620 Compare December 16, 2025 02:04
@renovate renovate Bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.141.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.142.0 Dec 16, 2025
@renovate renovate Bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from dd1a620 to 5212514 Compare January 6, 2026 01:57
…ib/connector/spanmetricsconnector to v0.153.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants