Skip to content

Comments

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

Open
renovate[bot] wants to merge 1 commit intomainfrom
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.146.0#18
renovate[bot] wants to merge 1 commit intomainfrom
renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x

Conversation

@renovate
Copy link
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.146.0 age confidence

Release Notes

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

v0.146.0

Compare Source

🛑 Breaking changes 🛑
  • all: Increase minimum Go version to 1.25 (#​46000)

  • exporter/elasticsearch: Remove ecs mode log enrichment for agent.name and agent.version (#​45849)
    The removed log enrichments are duplicate code that already exists in the github.com/elastic/opentelemetry-collector-components/processor/elasticapmprocessor. It is recommended to use the github.com/elastic/opentelemetry-collector-components/processor/elasticapmprocessor when using mapping mode ecs to ensure index documents contain all required Elastic fields to power the Kibana UI.

  • processor/akamaidetector: Update semantic conventions to v1.39.0 and use the convention for cloud.platform in Akamai detector (#​45511)

  • processor/k8s_attributes: Introduce semantic conventions compliant feature gate pair for k8sattributes processor (#​44693)

    • Added processor.k8sattributes.EmitV1K8sConventions feature gate to enable stable semantic convention attributes (singular form: k8s.<workload>.label.<key> and k8s.<workload>.annotation.<key>)
    • Added processor.k8sattributes.DontEmitV0K8sConventions feature gate to disable legacy non-compliant attributes (plural form: k8s.<workload>.labels.<key> and k8s.<workload>.annotations.<key>)
    • Both feature gates are in alpha stage and disabled by default
    • The processor now validates that legacy attributes cannot be disabled without enabling stable attributes
    • Deprecated k8sattr.labelsAnnotationsSingular.allow feature gate in favor of the new semconv-compliant gates (will be removed in v0.150.0)
    • During migration period, both legacy and stable attributes can coexist when EmitV1K8sConventions is enabled but DontEmitV0K8sConventions is not
  • processor/resourcedetection: Promote processor.resourcedetection.propagateerrors feature gate to Stable and is now always enabled (#​44609)

  • receiver/hostmetrics: process.context_switches will now properly count context switches for all threads. (#​36804)
    Previously, only the lead thread's context switches would be counter. We believe this was a bug,
    but are marking it as a breaking change since the values of these metrics may change drastically
    compared to previous expectations. However, the values you get now will be more accurate than before.

  • receiver/kafkametrics: receiver.kafkametricsreceiver.UseFranzGo feature gate is now in Beta stage and enabled by default (#​44600)

🚩 Deprecations 🚩
🚀 New components 🚀
  • receiver/vcr: First PR for new receiver (#​42877)
💡 Enhancements 💡
  • cmd/golden: Golden tool now returns all comparison errors with attempt numbers instead of only the last error (#​45424)
    When multiple metric payloads fail validation, the golden tool now displays all errors with their attempt numbers,
    making it easier to debug test failures. Previously, only the last error was shown.

  • connector/signal_to_metrics: Add error_mode configuration to control OTTL evaluation error handling. Prevents single bad record from failing entire batch. (#​38826, #​45746)
    Adds three error modes:

    • propagate (default): Returns error, entire batch fails (backward compatible)
    • ignore: Logs error, skips bad record, continues processing valid records
    • silent: Skips bad record silently, continues processing valid records
  • exporter/datadog: Add new alpha feature gate 'exporter.datadogexporter.DisableAllMetricRemapping' to disable all metric remapping in the Datadog exporter. (#​45943)
    The feature gate is marked as alpha pending changes in Datadog's backend.

  • exporter/elasticsearch: Update the ECS mode metrics data point hasher to exclude the elasticsearch.mapping.hints attribute (#​45887)
    Excluding the elasticsearch.mapping.hints attribute will allow similar metric data points to be grouped together and indexed to the same document.

  • exporter/elasticsearch: Add traces_dynamic_id config to dynamically set document IDs for traces and span events (#​43649)
    Adds traces_dynamic_id configuration option to allow setting document IDs based on span and span event attributes using the elasticsearch.document_id attribute.
    This prevents duplicate documents from being created when the same span is sent multiple times, similar to the existing logs_dynamic_id feature.
    Disabled by default.

  • exporter/file: Add support for rotation when group_by is enabled in file exporter (#​43143)

  • exporter/googlecloudstorage: Add compression support for Google Cloud Storage exporter (#​45337)
    The Google Cloud Storage exporter now supports compression of log data before uploading to GCS.
    Supported compression algorithms: gzip and zstd.

  • exporter/kafka: Add conn_idle_timeout configuration option to control when idle connections are not reused and may be closed. (#​45321)
    Defaults to 9 minutes.

  • extension/awscloudwatchmetricstreams_encoding: Add support for extracting percentile statistics (p50, p90, p99, etc.) from CloudWatch Metric Streams JSON format (#​45855)
    The JSON unmarshaler now extracts percentile fields from CloudWatch Metric Streams data and converts them to OpenTelemetry Summary quantiles.
    This enables feature parity with the embedded cwmetricstream unmarshaler in awsfirehosereceiver.

  • extension/awslogs_encoding: Support CloudWatch Logs extracted fields (@aws.account, @aws.region) for centralized logging (#​45792)
    CloudWatch Logs subscription filter unmarshaler now supports extracted fields (@aws.account and @aws.region)
    that are automatically added when using CloudWatch Logs centralization and enabling emitSystemFields in
    subscription filters. This enhancement enables proper resource attribution in OpenTelemetry when processing
    logs from multiple AWS accounts and regions. Logs with different extracted field values are automatically
    grouped into separate ResourceLogs for proper semantic convention mapping:

    • @aws.account maps to cloud.account.id
    • @aws.region maps to cloud.region
  • extension/awslogs_encoding: Handle multiple concatenated JSON objects for AWS CloudWatch Log subscription (#​46120)

  • extension/azureauth: Add and implement new method Token(context.Context) (*oauth2.Token, error). (#​45064)

  • extension/encoding: Introduce streaming support for encoding extensions (#​38780)

  • extension/oidc: Adds public_keys_file to the provider config. When set, keys are loaded from a local JWKS file instead of using remote discovery. (#​44899)
    The file is watched for changes and keys are automatically reloaded on update. Supported key types are RSA, ECDSA, and ED25519.

  • pkg/ottl: Add IsInCIDR function to check if IP belongs to given list of CIDR (#​42215)

  • pkg/sampling: Optimize OTel tracestate parsing by replacing regex validation with hand-written validator (10-21x faster). (#​45539)

  • pkg/sampling: Replace regex-based W3C tracestate validation with hand-written validator for 30-65x performance improvement (#​45734)

  • pkg/stanza: Ensure filter operator does not split batches of entries (#​42391)

  • processor/filter: Introduces inferred context conditions for filtering (#​37904)
    Introduces three new top-level config fields [metric_conditions, log_conditions, trace_conditions].
    A user can supply OTTL conditions for each without needing to supply context.

  • processor/k8s_attributes: Added container.image.tags resource attribute with feature gate controls according to OpenTelemetry semantic conventions. (#​44589)

  • processor/lookup: Add lookup processor implementation and YAML source (#​41816)
    Adds the core lookup processor implementation for enriching telemetry data using external lookups.
    Includes YAML file source for loading lookup tables from local files.

  • processor/vultrdetector: Update semantic conventions to v1.39.0 and add support for cloud.platform in Vultr detector (#​45512)

  • receiver/datadog: Add support for handling the /api/v0.2/stats endpoint to receive and process APM trace stats payloads from the Datadog Agent. (#​45778)
    The Datadog Receiver can now process APM trace stats payloads sent by the Datadog Agent via the /api/v0.2/stats endpoint.
    The handler correctly processes gzipped msgpack payloads, decodes them into StatsPayload, translates them into OpenTelemetry-compatible metrics, and forwards them to the configured metrics consumer.
    This enables the complete APM metrics flow: Application → Datadog SDK → Datadog Agent → OpenTelemetry Collector → OTEL Backends.

  • receiver/hostmetrics: Add optional system.memory.linux.shared metric (#​32712)
    This metric reports shared memory usage, including tmpfs filesystems,
    System V shared memory, and POSIX shared memory. Currently only available
    on Linux systems due to platform-specific data availability.
    This corresponds to the Shmem field in /proc/meminfo.

  • receiver/k8s_cluster: Add opt-in service metrics derived from k8s Service and EndpointSlice API (#​45620)
    New metrics (disabled by default):

    • k8s.service.endpoint.count: Number of endpoints by condition (ready, serving, terminating), address type, and zone
    • k8s.service.load_balancer.ingress.count: Number of load balancer ingress points assigned to the service
      New resource attributes:
    • k8s.service.name: The k8s service name
    • k8s.service.uid: The k8s service uid
    • k8s.service.type: The k8s service type
    • k8s.service.traffic_distribution: The service's traffic routing preference
    • k8s.service.publish_not_ready_addresses: Whether the service publishes endpoints before pods are ready
  • receiver/kafka: Add conn_idle_timeout configuration option to control when idle connections are not reused and may be closed. (#​45321)
    Defaults to 9 minutes.

  • receiver/mongodb: Add support for auth_mechanism, auth_source, and auth_mechanism_properties configuration options (#​40686)
    Users can now specify the authentication mechanism (e.g., SCRAM-SHA-256, GSSAPI, MONGODB-AWS), auth source database,
    and auth mechanism properties when connecting to MongoDB instances. This is particularly useful for MongoDB servers
    that require specific authentication mechanisms. For example, GSSAPI (Kerberos) may require SERVICE_NAME, and
    MONGODB-AWS may require AWS_SESSION_TOKEN when using temporary AWS credentials.

  • receiver/pprof: Implement the functionality of transforming pprof to OTel Profiles (#​45411)

  • receiver/prometheusremotewrite: Improved performance when parsing Remote Write v2 requests. (#​45623)

  • receiver/prometheusremotewrite: Add exemplar support to the Prometheus Remote Write receiver (#​44983)

  • receiver/redfish: Change system.host_name and base_url as resource attributes. (#​45470)

  • receiver/sqlquery: Add support for initial_delay in logs collection. (#​29671)
    Log collection now applies initial_delay (previously ignored). If initial_delay is not set, the first log collection now occurs at 1 second, instead of occurring after collection_interval time has passed.

  • receiver/sqlserver: Add the sqlserver.procedure_id and sqlserver.procedure_name attributes to TopQuery and Sample Events (#​44656)
    Refined query and reported events to include stored procedure information when applicable. Additionally, the maximum number of active queries reported by default has been increased from 200 to 250 to account for record deaggregation introduced by this change, ensuring the effective limit remains consistent with the previous 200-query baseline.

  • receiver/statsd: Discard StatsD metrics with NaN or infinite values to prevent invalid data from entering the metric pipeline (#​44288)

  • receiver/syslog: Add facility_text attribute to syslog parser output (#​45641)
    The syslog parser now outputs a facility_text attribute containing
    the human-readable facility name (e.g., "auth", "kern", "local0")
    in addition to the existing numeric facility attribute.

🧰 Bug fixes 🧰
  • exporter/datadog: OTLP logs now support array type attributes. Arrays containing primitive values or nested maps are now correctly preserved in the log output. (#​45708)

  • exporter/datadog: Fix data race in the Datadog exporter which could cause a crash with error message "concurrent map iteration and map write". (#​46051)
    Specifically, when processing spans with the datadog.host.use_as_metadata attribute.

  • exporter/elasticsearch: Fix ECS mode to properly protect known schema fields from getting .value suffix when conflicting with nested attributes (#​37211)
    Previously, when ECS mode was enabled and attributes like process.executable.name conflicted with the known ECS field process.executable, the deduplication logic would incorrectly add a .value suffix to the known field, resulting in process.executable.value. This fix ensures protected ECS fields remain unchanged and conflicting nested attributes are properly ignored.

  • exporter/opensearch: Fix sending_queue not using default values for num_consumers and queue_size when only batch is configured (#​45016)

  • exporter/syslog: Update the timestamp when using the RFC 3164 formatter to space-pad the day of month for single digit days (#​46115)

  • extension/awslogs_encoding: Fix duplicate resource attributes in subscription filter unmarshaler (#​45792)
    The aws.log.group.names and aws.log.stream.names resource attributes were incorrectly
    being set twice: first as array values, then immediately overwritten as string values.
    This fix removes the duplicate string assignments, ensuring the attributes are correctly
    set only as arrays per OpenTelemetry semantic conventions.

  • extension/oauth2client: Fix oauth2clientauth client-credentials grant type (#​45786)

  • extension/text_encoding: Fix text encoding extension to not split large messages when no separator is configured. (#​45845)

  • pkg/stanza: Fix recombine operator logging errors at ERROR level when on_error is set to quiet mode (#​42646)

  • pkg/translator/prometheusremotewrite: Fix export of Instrumentation Scope attributes as Prometheus labels. (#​45912)
    Instrumentation Scope attributes (name, version, and other attributes) are now correctly translated to Prometheus labels with the otel_scope_ prefix.

  • pkg/xk8stest: Fix IPv6 gateway handling in HostEndpoint to avoid invalid address formatting in e2e tests (#​46082)
    Prefer IPv4 gateways when resolving the Docker kind network gateway.
    Fall back to bracketed IPv6 if no IPv4 gateway is found, so that
    appending :port produces a valid address (e.g. [::1]:4317).

  • processor/k8s_attributes: Fix concurrent map access panic by cloning pod labels and annotations before extraction. (#​46112)

  • processor/k8s_attributes: Allow key_regex to work without tag_name by using the default tag name format (#​45719)
    When using key_regex with capturing groups but without specifying tag_name, the processor now
    correctly uses the default tag name format (e.g., k8s.pod.labels.<label_key>) instead of
    producing empty tag names.

  • processor/redaction: Improve database sanitization with system-aware obfuscation, span name sanitization, and URL path parameter redaction. (#​44229)

    • Database sanitization now validates span kind (CLIENT/SERVER/INTERNAL ) and requires db.system.name/db.system attribute for traces/metrics
    • Implemented span name obfuscation for database operations based on db.system
    • Added URL path parameter sanitization for span names with configurable pattern matching
    • Improved query validation database sanitizers
    • Fix issue ensuring no spans with ... name can be generated due to enabling multiple sanitizers
    • If something went wrong during span name sanitization, original span name is used
  • receiver/azure_event_hub: Fixes a bug where the receiver would stop receiving messages after a parsing error. (#​45898)

  • receiver/faro: Updates Faroreceiver to return HTTP 202 Accepted status code upon successful data ingestion to comply with the OpenAPI specification. (#​45648)

  • receiver/fluentforward: handle uint64 to int64 overflow by changing to string (#​45252)
    FluentD supports record entries with uint64 types. OpenTelemetry log attributes only support int64 and no uint64.
    The old solution would overflow with uint64 values greater than math.MaxInt64 and result in negative attribute values.
    This fix changes that behaviour by storing only those large values as string attributes instead.

  • receiver/googlecloudpubsub: Fix compression detection when both encoding and compression are set in the config (#​45810)

  • receiver/mongodb: Check if metrics are enabled before collecting them to prevent errors when metrics are disabled. (#​41465)

  • receiver/postgresql: Updated the default value for top_n_query (200) to match with other db receivers (#​45612)

v0.145.0

Compare Source

🛑 Breaking changes 🛑
  • exporter/sentry: Create a new version of the sentryexporter that supports dynamic routing to Sentry projects (#​45051)

  • pkg/translator/azure: Updated OpenTelemetry semantic conversion to the latest version 1.38.0 in azure pkg. (#​44801)

  • processor/resourcedetection: Promote processor.resourcedetection.removeGCPFaasID feature gate to Stable and is now always enabled (#​45797)
    The faas.id attribute is replaced by the faas.instance attribute.

  • receiver/azure_event_hub: Upgrade receiver.azureeventhubreceiver.UseAzeventhubs feature gate to stable. (#​45527)

  • receiver/github: Make step spans siblings of queue-job span under job span instead of children of queue-job span (#​42623)
    This change improves a workflow job trace structure by making step spans siblings of the queue-job span under the job span.
    Reflecting that queuing and step execution are sequential phases rather than nested operations which more accurately aligns with the specification.

  • receiver/kafka: Replace StartTracesOp/EndTracesOp with StartProfilesOp/EndProfilesOp in profilesHandler. (#​45601)
    The span name generated by the profiles receiver now uses the ProfilesReceived suffix instead of TraceDataReceived.

  • receiver/prometheus: Promote receiver.prometheusreceiver.RemoveReportExtraScrapeMetricsConfig feature gate to beta (#​44181)
    The report_extra_scrape_metrics configuration option is now ignored by default. Extra scrape metrics are instead controlled by the receiver.prometheusreceiver.EnableReportExtraScrapeMetrics feature gate and the Prometheus upstream configuration available in promconfig (either globally or per-scrape config).

🚩 Deprecations 🚩
  • receiver/azure_event_hub: Rename azureeventhub receiver to azure_event_hub and add deprecated alias azureeventhub (#​45637)
  • receiver/jmx: Deprecate the jmxreceiver to avoid running Java subprocesses in the Collector and prevent container-based deployments from requiring a Java runtime. (#​45740)
  • receiver/mongodb_atlas: Rename mongodbatlas receiver to mongodb_atlas and add deprecated alias mongodbatlas (#​45652)
💡 Enhancements 💡
  • connector/routing: Add move/copy support in routing connector (#​45061)

  • exporter/googlecloudstorage: Add support for exporting traces to Google Cloud Storage (#​44945)

  • exporter/signalfx: Add support for processing entity events from logs pipeline to send as dimension property updates (#​27890)
    The SignalFx exporter now supports processing entity events (e.g., from k8s_cluster receiver)
    received via the logs pipeline and converting them to dimension property updates. This provides
    an alternative to the metadata_exporters option and enables consistent metadata handling.
    This feature is behind the exporter.signalfx.consumeEntityEvents feature gate (disabled by default).

  • extension/awslogs_encoding: Add support for processing CloudTrail logs from CloudWatch subscription filters (#​45354)

  • extension/awslogs_encoding: Allow using aws.user_identity prefix for UserIdentity bound attributes. This is enabled with extension.awslogsencoding.cloudtrail.enable.user.identity.prefix feature gate ID. (#​43638)

  • extension/azure_encoding: Add processing for Application Gateway, Azure Messaging (ServiceBus and EventHub), Data Factory, FunctionApps and BlobStorage logs records (#​41725)

  • extension/oauth2client: Support jwt-bearer grant-type (RFC7523) (#​44314)

  • extension/opamp: This change adds support for the OpAMP AcceptsRestartCommand capability. The implementation for this capability sends a SIGHUP signal to restart the collector which will reload the config on startup. (#​45056)
    This functionality is behind a feature gate (extension.opampextension.RemoteRestarts) that defaults disabled. The SIGHUP signal does not work on windows systems, but might later be updated to use the SIGUSR2 signal.

  • internal/coreinternal: Improve performance of hashing function for attraction package. (#​45211)

  • pkg/fileconsumer: Open files on Windows with FILE_SHARE_DELETE mode (#​32037)

  • pkg/ottl: Added generic path to get/set span flags in OTTL trace span context. (#​34739)

  • pkg/ottl: Introducing delete_index function for deleting items from an existing array (#​43098)

  • pkg/stanza: Ensure recombine operator does not split batches of entries (#​42392)

  • pkg/stanza: Ensure container operator does not split batches of entries (#​42389)

  • pkg/stanza: Ensure syslog operator does not split batches of entries (#​42394)

  • pkg/translator/azurelogs: Add support for all Activity Logs categories (#​44871)
    Includes support for the Alert, Autoscale, Policy, Recommendation, Security, ServiceHealth, and ResourceHealth categories.

  • processor/k8sattributes: Added processor-specific observability metrics: otelcol.k8s.pod.association with status, pod_identifier, and otelcol.signal attributes (#​44587)

  • processor/resourcedetection: Add support for GCP resource detector to gather GCE instance labels as resource attributes (#​35859)
    The GCP resource detector now supports gathering GCE instance labels as resource attributes, allowing for more detailed resource metadata in telemetry data.

  • processor/resourcedetection: Added Alibaba Cloud ECS resource detector to the Resource Detection Processor (#​45632)

  • processor/tail_sampling: New policy type to return the opposite of the sampling decision of a wrapped policy. (#​39668)

  • processor/tail_sampling: Add trace_flags policy (#​43867)

  • processor/tail_sampling: Provide option to limit maximum trace size kept in memory by the tail sampling processor (#​45286)
    Traces that exceed the size limit will be immediately dropped, not have a decision made for them.

  • receiver/azureblob: Replace deprecated azure-event-hubs-go SDK with azure-sdk-for-go (#​44335)

  • receiver/filelog: Suppress repeated permission-denied errors (#​39491)
    Only one error is logged per file per process run, and an informational message is emitted when the file becomes readable again.
    This reduces log spam and improves clarity for operators.

  • receiver/hostmetrics: Add support for Linux hugepages memory monitoring via system.memory.linux.hugepages metrics. (#​42650)
    Users can now monitor hugepages usage on host machine.

  • receiver/jmx: Add the JMX scraper version "1.53.0-alpha" to the supported jars hash list (#​45571)

  • receiver/jmx: Add the JMX metrics gatherer version "1.53.0-alpha" to the supported jars hash list (#​45570)

  • receiver/k8sobjects: Add support for exclude_namespaces to exclude specific namespaces from being watched. (#​36217)
    Add support for exclude_namespaces to exclude specific namespaces from being watched.

  • receiver/prometheus: Support removable Prometheus service discoveries via Go build tags. (#​44406)
    Prometheus service discoveries can now be removed at build time when building the collector with OCB (OpenTelemetry Collector Builder).
    Use the build_tags option in the builder configuration to pass Go build tags such as remove_all_sd to exclude optional service discoveries.
    See the Prometheus documentation for available build tags to customize which service discoveries are included.

  • receiver/snowflake: Enables dynamic metric reaggregation in the Splunk Enterprise receiver. This does not break existing configuration files. (#​45396)

  • receiver/windowsservice: Enables dynamic metric reaggregation in the Splunk Enterprise receiver. This does not break existing configuration files. (#​45396)

🧰 Bug fixes 🧰
  • exporter/coralogix: Fix unmarshalling to avoid validation errors with profiles when protocol is set to http. (#​45677)

  • exporter/elasticsearch: Add status code OK to success document processed metric. (#​45067)

  • internal/datadog: Fix race condition in gohai host metadata payload causing concurrent map access panic (#​30438)
    Deep copy the host metadata payload before passing it to ConsumeHostMetadata() to prevent
    concurrent map access when the reporter's gohai collector refreshes maps while JSON marshaling
    iterates over them. This fixes the "fatal error: concurrent map iteration and map write" panic
    that occurred with multiple concurrent metric consumers and host metadata enabled.

  • internal/metadataproviders: Fix kubeadm resource detector to correctly read clusterName from kubeadm configmap (#​45603)

  • pkg/ottl: Fix debug logs in OTTL parser to not panic when marshalling transform contexts with invalid pdata (#​44705)

  • pkg/stanza: Fix transformer operators logging errors at ERROR level when on_error is set to quiet mode (#​42646)

  • pkg/stanza: Fix container operator log truncation for large CRI logs (#​43982)
    Previously the option max_log_size of the container operator did not work correctly, with the maximum log size limited to an arbitrary value even if max_log_size was higher or set to 0 to remove the limit. With this change max_log_size: 0 works correctly, removing the upper limit on log size.
    The default value for max_log_size is now changed from 0 to 1MiB to prevent boundless memory usage.

  • pkg/stanza: Fix syslog parser operator logging errors at ERROR level when on_error is set to quiet mode (#​42646)

  • pkg/stanza: Fix data race in fileconsumer FileAttributes map access (#​42825)

  • processor/azuredetector: Avoid set cloud.availability_zone when Azure Availability Zone is not assigned (#​45642)
    In cases where an Azure VM is not assigned to any Availability Zone,
    the cloud.availability_zone attribute was being set to an empty string.
    This fix ensures that the attribute is only set when an Availability Zone
    is indeed assigned, preventing misleading empty values.

  • processor/azuredetector: Fallback to VM Name when osProfile.computerName is unavailable (#​45642)
    In certain Azure images, the osProfile.computerName field may not be set.
    This fix ensures that the hostname detection falls back to using the VM Name
    from the instance metadata service when osProfile.computerName is empty.

  • processor/azuredetector: Avoid set azure.vm.scaleset.name empty when VM not in scale set (#​45642)
    In scenarios where a VM is not part of a scale set, the
    azure.vm.scaleset.name attribute was being set to an empty string.
    This fix ensures that the attribute is only set when the VM is indeed
    part of a scale set, preventing misleading empty values.

  • processor/deltatocumulative: Fix panic when processing exponential histograms with empty bucket counts (#​42163)

  • processor/k8sattributes: Fix k8s.node.uid extraction when node.name is disabled (#​45328)

  • receiver/awscontainerinsightreceiver: Add cAdvisor filesystem plugin imports to fix missing NodeFS and InstanceFS metrics (#​45534)

  • receiver/filelog: Fixed encoding not being applied to multiline pattern matching (#​39011)
    Previously, when using multiline pattern matching with non-UTF-8 encodings (e.g., utf-16le),
    the encoding was not properly applied during pattern matching, causing multiline patterns to fail.
    This fix ensures that the specified encoding is correctly applied when processing multiline patterns,
    allowing proper parsing of files with fixed-length records and no line terminators in various encodings.

  • receiver/googlecloudmonitoring: Fix boolean metrics conversion to int values (#​45423)

  • receiver/journald: Avoid passing empty cursors to journalctl when resuming journald reads (#​45435)

  • receiver/libhoney: Fix timestamp in libhoney receiver (#​45799)
    The libhoney exporter was setting the start_time for some spans to the
    current time instead of the timestamp in the event.

  • receiver/receiver_creator: Do not log config in receivercreator since it could contain sensitive information (#​38163)

v0.144.0

Compare Source

🛑 Breaking changes 🛑
  • exporter/elasticsearch: Remove ecs mode span enrichment for span.action, span.message.queue.name, and transaction.message.queue.name (#​45014)
    The removed span enrichments have been moved to the github.com/elastic/opentelemetry-collector-components/processor/elasticapmprocessor. It is recommended to use the github.com/elastic/opentelemetry-collector-components/processor/elasticapmprocessor when using mapping mode ecs to ensure index documents contain all required Elastic fields to power the Kibana UI.

  • exporter/kafka: Remove Sarama producer implementation (#​44565)
    The Sarama-based Kafka producer has been removed from kafkaexporter.
    Feature gate exporter.kafkaexporter.UseFranzGo has also been removed since Franz-go is now the only supported Kafka client.

  • processor/tail_sampling: The deprecated invert decisions are disabled by default. (#​44132)
    Drop policies should be used instead of invert decisions for explicitly not sampling a trace.
    If the deprecated behavior is required while migrating to drop policies, disable the processor.tailsamplingprocessor.disableinvertdecisions feature gate.

  • receiver/kafka: Remove Sarama consumer implementation and default_fetch_size configuration option (#​44564)
    The Sarama-based Kafka consumer has been removed from kafkareceiver.
    The default_fetch_size configuration option has also been removed as it was only used by the Sarama consumer.
    Feature gate receiver.kafkareceiver.UseFranzGo has also been removed since Franz-go is now the only supported Kafka client.

🚩 Deprecations 🚩
  • exporter/elasticsearch: Deprecate mapping::mode config option (#​45246)
    The mapping::mode config option is now deprecated and will soon be ignored. Instead, use
    the X-Elastic-Mapping-Mode client metadata key (via headers_setter extension) or the
    elastic.mapping.mode scope attribute to control the mapping mode per-request.
    See the README for migration instructions.
🚀 New components 🚀
  • processor/lookup: Add skeleton for external lookup enrichment processor (#​41816)
    Adds the initial skeleton for a lookup processor that performs external lookups to enrich telemetry signals.
    Also includes source abstraction with factory pattern, noop source for testing, and cache wrapper utility.
💡 Enhancements 💡
  • cmd/schemagen: Extend schemagen script with ability to handle external refs. (#​42214)
    The schemagen tool has been enhanced to support external references when generating
    configuration schemas for OpenTelemetry Collector components. This improvement allows
    the tool to accurately reference and include schema definitions from external packages,
    facilitating better modularity and reuse of configuration schemas across different components.

  • cmd/schemagen: Fixes for schemagen to handle common issues with receiver components schemas. (#​42214)
    Fix common issues discovered while using schemagen with receiver components:

    • Missing config.go file (e.g. namedpipereceiver)
    • Parsing obsolete types (e.g. nsxtreceiver)
    • Unable to embed fields with squash tag and not exported internal type (e.g. huaweicloudcesreceiver)
  • cmd/telemetrygen: Add batching capability to metrics and traces (#​42322)

    • Changed traces batching to have configurable batch size and match batch flag.
    • Added batching to metrics.
    • Added batching to logs.
  • exporter/azureblob: Add timezone option for formatting blob names in azureblob exporter. (#​43752)

  • exporter/elasticsearch: Remove go-elasticsearch dependency to reduce binary size (#​45104)
    This leads to a 19MB size reduction in contrib distribution

  • exporter/googlecloudstorage: Add support for time partitioning (#​44889)

  • exporter/opensearch: Add support for multiple variables to build index names (#​42585)

  • exporter/sumologic: Add decompose_otlp_summaries configuration option to decompose OTLP Summary metrics into individual gauges and counters (#​44737)

  • extension/awslogs_encoding: Optimize CloudTrail logs unmarshaling for memory usage (#​45180)

  • processor/k8sattributes: Bumnp version of semconv to v1.39.0 (#​45447)

  • processor/redaction: Add sanitize_span_name option to URL and DB sanitization configs. (#​44228)

  • processor/redaction: Add ignored_key_patterns configuration option to allow ignoring keys by regex pattern (#​44657)

  • processor/resourcedetection: Add optional docker attributes (#​44898). Note: Because of opentelemetry-collector-releases#1350 this change is not available on the v0.144.0 binary releases. v0.145.0 will include this change.
    Add container.image.name and container.name optional resource attributes with the docker detector.

  • processor/tail_sampling: Provide an option, decision_wait_after_root_received, to make quicker decisions after a root span is received. (#​43876)

  • receiver/azureeventhub: Add support for azure auth when feature gate receiver.azureeventhubreceiver.UseAzeventhubs is enabled. (#​40711)

  • receiver/prometheus: receiver/prometheus now associates scraped _created text lines as the created timestamp of its metric family rather than its own metric series, as defined by the OpenMetricsText spec (#​45291)

  • receiver/prometheus: Add comprehensive troubleshooting and best practices guide to Prometheus receiver README (#​44925)
    The guide includes common issues and solutions, performance optimization strategies,
    production deployment best practices, monitoring recommendations, and debugging tips.

  • receiver/prometheusremotewrite: Replace labels.Map() iteration with direct label traversal to eliminate intermediate map allocations. (#​45166)

🧰 Bug fixes 🧰
  • exporter/kafka: franz-go: Exclude non-produce metrics from kafka_exporter_write_latency and kafka_exporter_latency (#​45258)

  • exporter/opensearch: Fix dynamic log index feature putting logs in wrong index (#​43183)

  • exporter/prometheusremotewrite: Prevent duplicate samples by allowing the WAL to be empty (#​41785)
    Since the WAL is being truncated after every send it's likely the reader and writer are in sync. Since WAL was not
    allowed to be empty, the reader would always re-read previously delivered samples causing duplicate data to be sent
    continuously.

  • extension/datadog: Datadog extension no longer throws an error for missing extensions when getting a list of active components, and now populates active components even when missing go mod/version info. (#​45358, #​45460)

  • extension/file_storage: Handle filename too long error in file storage extension by using the sha256 of the attempted filename instead. (#​44039)

  • extension/text_encoding: Avoid spurious marshalling separators at end of lines (#​42797)
    Previously, text_encoding would append the marshalling separator to the end of
    each log record, potentially resulting in double-newlines between blocks of
    records.

  • extension/text_encoding: Fix an issue where marshalling/unmarshalling separators were ignored (#​42797)

  • pkg/kafka/configkafka: Fix consumer group rebalance strategy validation (#​45268)

  • pkg/ottl: Fix numeric parsing to correctly handle signed numbers in math expressions. (#​45222)
    The OTTL math expression parser did not correctly handle unary signs for plus
    and minus. Expressions like 3-5 would not parse correctly without inserting
    spaces to make it 3 - 5. This change moves the sign handling out of the
    lexer and into the parser.

  • pkg/ottl: Handle floating constants with decimal point but no fraction. (#​45222)
    Floating point constants that had a decimal point but no fractional digits
    (e.g., "3.") were not handled properly and could crash the parser. These are
    now parsed as valid floating point numbers.

  • pkg/stanza: Fix Windows UNC network path handling in filelog receiver (#​44401)
    The filelog receiver now correctly handles Windows UNC network paths (e.g., \server\share\logs*.log).
    Previously, the receiver could list files from network shares but failed to open them due to path corruption
    during normalization. This fix converts UNC paths to Windows extended-length format (\?\UNC\server\share\path)
    which is more reliable and not affected by filepath.Clean() issues.

  • pkg/stanza: Ensure container parser respects the if condition and on_error settings when format detection fails ([#​41508](https://redirect.github.com/open-telemetry/opentelemetry-collector-contr


Configuration

📅 Schedule: 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
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
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.146.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.52.0
go: downloading go.opentelemetry.io/collector v0.93.0
go: downloading go.opentelemetry.io/collector/connector v0.146.1
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.52.0
go: downloading go.opentelemetry.io/collector/receiver/otlpreceiver v0.93.0
go: downloading golang.org/x/sys v0.40.0
go: downloading github.com/stretchr/testify v1.11.1
go: downloading go.opentelemetry.io/collector/component/componenttest v0.146.1
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.146.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/internal/pdatautil v0.146.0
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.146.0
go: downloading go.opentelemetry.io/collector/config/configoptional v1.52.0
go: downloading go.opentelemetry.io/collector/confmap v1.52.0
go: downloading go.opentelemetry.io/collector/confmap/xconfmap v0.146.1
go: downloading go.opentelemetry.io/collector/consumer v1.52.0
go: downloading go.opentelemetry.io/collector/featuregate v1.52.0
go: downloading go.opentelemetry.io/collector/pdata v1.52.0
go: downloading go.opentelemetry.io/otel v1.40.0
go: downloading go.uber.org/zap v1.27.1
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.146.1
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.79.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/config/configtls v0.93.0
go: downloading golang.org/x/oauth2 v0.34.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.40.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.20.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.40.0
go: downloading go.opentelemetry.io/collector/internal/componentalias v0.146.1
go: downloading go.opentelemetry.io/collector/pipeline v1.52.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-20251222181119-0a764e51fe1b
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.40.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.40.0
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/hashicorp/go-version v1.8.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.0
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.49.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.49.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/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.30.0
go: downloading github.com/shirou/gopsutil/v3 v3.23.12
go: downloading go.opentelemetry.io/collector/consumer/consumertest v0.146.1
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.34.0
go: downloading github.com/relvacode/iso8601 v1.3.0
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217
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.2
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 go.opentelemetry.io/collector/pdata/pprofile v0.146.1
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.11.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.39.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 v28.5.1+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-20220216144756-c35f1ee13d7c
go: downloading github.com/shoenig/go-m1cpu v0.1.6
go: downloading github.com/tklauser/go-sysconf v0.3.12
go: downloading github.com/yusufpapurcu/wmi v1.2.4
go: downloading go.opentelemetry.io/collector/consumer/xconsumer v0.146.1
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.16.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.36.0
go: downloading github.com/envoyproxy/protoc-gen-validate v1.3.0
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.28.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.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.47.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/Microsoft/go-winio v0.6.2
go: downloading github.com/containerd/errdefs v1.0.0
go: downloading github.com/containerd/errdefs/pkg v0.3.0
go: downloading github.com/distribution/reference v0.6.0
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.6.1
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.41.0
go: downloading github.com/go-resty/resty/v2 v2.7.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-20251210132809-ee656c7534f5
go: downloading github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10
go: downloading go.opentelemetry.io/proto/otlp v1.3.1
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/docker/go-units v0.5.0
go: downloading github.com/moby/docker-image-spec v1.3.1
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.19.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.32.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.1
go: downloading github.com/prometheus/client_model v0.6.2
go: downloading go.opentelemetry.io/proto/otlp v1.7.1
go: downloading github.com/open-telemetry/opentelemetry-collector-contrib v0.146.0
go: downloading go.opentelemetry.io/collector v0.146.1
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/confmap/provider/envprovider v1.52.0
go: downloading go.opentelemetry.io/collector/confmap/provider/fileprovider v1.52.0
go: downloading go.opentelemetry.io/collector/confmap/provider/httpprovider v1.52.0
go: downloading go.opentelemetry.io/collector/confmap/provider/httpsprovider v1.52.0
go: downloading go.opentelemetry.io/collector/confmap/provider/yamlprovider v1.52.0
go: downloading go.opentelemetry.io/collector/receiver/receiverhelper v0.146.1
go: downloading go.opentelemetry.io/collector/pipeline/xpipeline v0.146.1
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 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
@renovate renovate bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.142.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.143.0 Jan 6, 2026
@renovate renovate bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 5212514 to b2a449d Compare January 20, 2026 14:38
@renovate renovate bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.143.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.144.0 Jan 20, 2026
@renovate renovate bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from b2a449d to 635f882 Compare February 3, 2026 17:51
@renovate renovate bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.144.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.145.0 Feb 3, 2026
…ib/connector/spanmetricsconnector to v0.146.0
@renovate renovate bot force-pushed the renovate/github.com-open-telemetry-opentelemetry-collector-contrib-connector-spanmetricsconnector-0.x branch from 635f882 to 6dfa804 Compare February 18, 2026 18:29
@renovate renovate bot changed the title Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.145.0 Update module github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector to v0.146.0 Feb 18, 2026
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