{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":196414933,"defaultBranch":"main","name":"opentelemetry-collector-contrib","ownerLogin":"open-telemetry","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2019-07-11T14:54:32.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/49998002?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1726862903.0","currentOid":""},"activityList":{"items":[{"before":"74b1048e73b6d11a2cf8c1e69a209abd24bd67f2","after":"891f0eadc18fe87b162ee933b2aeb3c4bbf47f6f","ref":"refs/heads/main","pushedAt":"2024-09-21T04:38:25.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dmitryax","name":"Dmitrii Anoshin","path":"/dmitryax","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6628631?s=80&v=4"},"commit":{"message":"Replace @ycombinator with @lahsivjar as codeowner for elasticsearchexporter (#35322)\n\n**Description:** \r\n\r\nThis PR replaces @ycombinator with @lahsivjar as one of the codeowners\r\nfor the `elasticsearchexporter` component.\r\n\r\nOver the past few months, @lahsivjar has been a far more active\r\ncontributor to this component than @ycombinator.","shortMessageHtmlLink":"Replace @ycombinator with @lahsivjar as codeowner for elasticsearchex…"}},{"before":"576d322b480c87dc5c467b76171091e049091b44","after":"74b1048e73b6d11a2cf8c1e69a209abd24bd67f2","ref":"refs/heads/main","pushedAt":"2024-09-21T03:58:15.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"TylerHelmuth","name":"Tyler Helmuth","path":"/TylerHelmuth","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12352919?s=80&v=4"},"commit":{"message":"[processor/transform] Add Conversion Function to OTTL for Exponential Histo --> Histogram (#33824)\n\n## Description\r\n\r\nThis PR adds a custom metric function to the transformprocessor to\r\nconvert exponential histograms to explicit histograms.\r\n\r\nLink to tracking issue: Resolves #33827\r\n\r\n**Function Name**\r\n```\r\nconvert_exponential_histogram_to_explicit_histogram\r\n```\r\n\r\n**Arguments:**\r\n\r\n- `distribution` (_upper, midpoint, uniform, random_)\r\n- `ExplicitBoundaries: []float64`\r\n\r\n**Usage example:**\r\n\r\n```yaml\r\nprocessors:\r\n transform:\r\n error_mode: propagate\r\n metric_statements:\r\n - context: metric\r\n statements:\r\n - convert_exponential_histogram_to_explicit_histogram(\"random\", [10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0]) \r\n```\r\n\r\n**Converts:**\r\n\r\n```\r\nResource SchemaURL: \r\nScopeMetrics #0\r\nScopeMetrics SchemaURL: \r\nInstrumentationScope \r\nMetric #0\r\nDescriptor:\r\n -> Name: response_time\r\n -> Description: \r\n -> Unit: \r\n -> DataType: ExponentialHistogram\r\n -> AggregationTemporality: Delta\r\nExponentialHistogramDataPoints #0\r\nData point attributes:\r\n -> metric_type: Str(timing)\r\nStartTimestamp: 1970-01-01 00:00:00 +0000 UTC\r\nTimestamp: 2024-07-31 09:35:25.212037 +0000 UTC\r\nCount: 44\r\nSum: 999.000000\r\nMin: 40.000000\r\nMax: 245.000000\r\nBucket (32.000000, 64.000000], Count: 10\r\nBucket (64.000000, 128.000000], Count: 22\r\nBucket (128.000000, 256.000000], Count: 12\r\n {\"kind\": \"exporter\", \"data_type\": \"metrics\", \"name\": \"debug\"}\r\n```\r\n\r\n**To:**\r\n\r\n```\r\nResource SchemaURL: \r\nScopeMetrics #0\r\nScopeMetrics SchemaURL: \r\nInstrumentationScope \r\nMetric #0\r\nDescriptor:\r\n -> Name: response_time\r\n -> Description: \r\n -> Unit: \r\n -> DataType: Histogram\r\n -> AggregationTemporality: Delta\r\nHistogramDataPoints #0\r\nData point attributes:\r\n -> metric_type: Str(timing)\r\nStartTimestamp: 1970-01-01 00:00:00 +0000 UTC\r\nTimestamp: 2024-07-30 21:37:07.830902 +0000 UTC\r\nCount: 44\r\nSum: 999.000000\r\nMin: 40.000000\r\nMax: 245.000000\r\nExplicitBounds #0: 10.000000\r\nExplicitBounds #1: 20.000000\r\nExplicitBounds #2: 30.000000\r\nExplicitBounds #3: 40.000000\r\nExplicitBounds #4: 50.000000\r\nExplicitBounds #5: 60.000000\r\nExplicitBounds #6: 70.000000\r\nExplicitBounds #7: 80.000000\r\nExplicitBounds #8: 90.000000\r\nExplicitBounds #9: 100.000000\r\nBuckets #0, Count: 0\r\nBuckets #1, Count: 0\r\nBuckets #2, Count: 0\r\nBuckets #3, Count: 2\r\nBuckets #4, Count: 5\r\nBuckets #5, Count: 0\r\nBuckets #6, Count: 3\r\nBuckets #7, Count: 7\r\nBuckets #8, Count: 2\r\nBuckets #9, Count: 4\r\nBuckets #10, Count: 21\r\n {\"kind\": \"exporter\", \"data_type\": \"metrics\", \"name\": \"debug\"}\r\n```\r\n\r\n### Testing\r\n\r\n- Several unit tests have been created. We have also tested by ingesting\r\nand converting exponential histograms from the `statsdreceiver` as well\r\nas directly via the `otlpreceiver` over grpc over several hours with a\r\nlarge amount of data.\r\n\r\n- We have clients that have been running this solution in production for\r\na number of weeks.\r\n\r\n### Readme description:\r\n\r\n### convert_exponential_hist_to_explicit_hist\r\n\r\n`convert_exponential_hist_to_explicit_hist([ExplicitBounds])`\r\n\r\nthe `convert_exponential_hist_to_explicit_hist` function converts an\r\nExponentialHistogram to an Explicit (_normal_) Histogram.\r\n\r\n`ExplicitBounds` is represents the list of bucket boundaries for the new\r\nhistogram. This argument is __required__ and __cannot be empty__.\r\n\r\n__WARNING:__\r\n\r\nThe process of converting an ExponentialHistogram to an Explicit\r\nHistogram is not perfect and may result in a loss of precision. It is\r\nimportant to define an appropriate set of bucket boundaries to minimize\r\nthis loss. For example, selecting Boundaries that are too high or too\r\nlow may result histogram buckets that are too wide or too narrow,\r\nrespectively.\r\n\r\n---------\r\n\r\nCo-authored-by: Kent Quirk \r\nCo-authored-by: Tyler Helmuth <12352919+TylerHelmuth@users.noreply.github.com>","shortMessageHtmlLink":"[processor/transform] Add Conversion Function to OTTL for Exponential…"}},{"before":null,"after":"d6969a19adf980e23c951dc1d918876466602473","ref":"refs/heads/crobert-1-patch-1","pushedAt":"2024-09-20T20:08:23.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"crobert-1","name":"Curtis Robert","path":"/crobert-1","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/92119472?s=80&v=4"},"commit":{"message":"Update README.md","shortMessageHtmlLink":"Update README.md"}},{"before":"e93f0cc9dcb0de35efff26bccd0d6decd5cef082","after":"576d322b480c87dc5c467b76171091e049091b44","ref":"refs/heads/main","pushedAt":"2024-09-20T18:48:53.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"djaglowski","name":"Daniel Jaglowski","path":"/djaglowski","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5255616?s=80&v=4"},"commit":{"message":"[chore] Consolidate event code in WEL receiver (#35026)\n\nThis is a step towards #34720 which should have no user facing impact.\r\nIt consolidates the event model by removing the notion of a \"raw\" event.\r\nThe behavior of `raw` flag should remain the same because we still use\r\ndifferent functions to build the output from the unified event.","shortMessageHtmlLink":"[chore] Consolidate event code in WEL receiver (#35026)"}},{"before":"d98a4f680d7b20dbaa27fc0a7786064e49124732","after":"e93f0cc9dcb0de35efff26bccd0d6decd5cef082","ref":"refs/heads/main","pushedAt":"2024-09-20T18:42:50.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"TylerHelmuth","name":"Tyler Helmuth","path":"/TylerHelmuth","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12352919?s=80&v=4"},"commit":{"message":"[processor/redaction] fix index-out-of-bounds panic when used in logs pipeline. (#35331)\n\n**Description:** \r\nFixes an index issue caused by an incorrect for loop condition.\r\n\r\n**Link to tracking Issue:**\r\ncloses\r\nhttps://github.com/open-telemetry/opentelemetry-collector-contrib/issues/35316\r\n\r\n**Testing:** \r\nUpdated unit test. The updated test panics without the fix","shortMessageHtmlLink":"[processor/redaction] fix index-out-of-bounds panic when used in logs…"}},{"before":"ed2610fdff9ad95e2f94e9998ff1f7ab94354259","after":"d98a4f680d7b20dbaa27fc0a7786064e49124732","ref":"refs/heads/main","pushedAt":"2024-09-20T16:45:52.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"TylerHelmuth","name":"Tyler Helmuth","path":"/TylerHelmuth","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12352919?s=80&v=4"},"commit":{"message":"[ottl/pkg] Add support for locale in the Time converter (#35107)\n\n**Description:** \r\n\r\n\r\nAdded support for locale in the `Time` converter, so it can parse\r\ntimestamps written in non-english languages.\r\n\r\nThe new `locale` parameter's value is optional, and can be specified as:\r\n`Time(\"Febrero 25 lunes, 2002, 02:03:04 p.m.\", \"%B %d %A, %Y, %r\",\r\n\"America/New_York\", \"es-ES\")`\r\n\r\nThe value must be a well-formed BCP-47 language tag, and a known\r\n[CLDR](https://cldr.unicode.org) v45 locale.\r\n\r\n**Link to tracking Issue:**\r\nhttps://github.com/open-telemetry/opentelemetry-collector-contrib/issues/32978\r\n\r\n**Testing:** Unit tests\r\n\r\n**Documentation:** ottl/README was updated to include the new optional\r\n`locale` parameter.","shortMessageHtmlLink":"[ottl/pkg] Add support for locale in the Time converter (#35107)"}},{"before":"1487e43a040b1b846eb011b46d40117e694a30f2","after":"ed2610fdff9ad95e2f94e9998ff1f7ab94354259","ref":"refs/heads/main","pushedAt":"2024-09-20T16:06:01.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dmitryax","name":"Dmitrii Anoshin","path":"/dmitryax","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6628631?s=80&v=4"},"commit":{"message":"[exporter/splunkhec] Fix Capabilities with enabled batching (#35306)\n\nThe exporter wrappers, like batch by scope and batch by resource,\r\nincorrectly claim that they are not mutating even if the wrapped\r\nexporter mutates the data. This leads to \"invalid data access\" runtime\r\nfailures. This change fixes that.\r\n\r\nCo-authored-by: Antoine Toulme ","shortMessageHtmlLink":"[exporter/splunkhec] Fix Capabilities with enabled batching (#35306)"}},{"before":"d614c4aeeecb78b6c7a6e8ad697c8ea42c358bdf","after":"1487e43a040b1b846eb011b46d40117e694a30f2","ref":"refs/heads/main","pushedAt":"2024-09-20T15:25:31.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"codeboten","name":"Alex Boten","path":"/codeboten","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/223565?s=80&v=4"},"commit":{"message":"sapmreceiver: migrate to latest semconv version (#35312)\n\nDescription: The version of semconv is upgraded from v1.6.1 to v1.27.0\r\n\r\nLink to tracking Issue:\r\nhttps://github.com/open-telemetry/opentelemetry-collector-contrib/issues/22095\r\n\r\nTesting: Tests passed","shortMessageHtmlLink":"sapmreceiver: migrate to latest semconv version (#35312)"}},{"before":"f02bdf9cd8f4a42a80df711e1add0ecb4f6b1dab","after":"d614c4aeeecb78b6c7a6e8ad697c8ea42c358bdf","ref":"refs/heads/main","pushedAt":"2024-09-20T15:23:27.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"codeboten","name":"Alex Boten","path":"/codeboten","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/223565?s=80&v=4"},"commit":{"message":"pulsarreceiver: migrate to latest semconv version (#35310)\n\nDescription: The version of semconv is upgraded from v1.6.1 to v1.27.0\r\n\r\nLink to tracking Issue:\r\nhttps://github.com/open-telemetry/opentelemetry-collector-contrib/issues/22095\r\n\r\nTesting: Tests passed","shortMessageHtmlLink":"pulsarreceiver: migrate to latest semconv version (#35310)"}},{"before":"97070abeabcfbba96da0d45dc4bdb522e4625af5","after":"4b742374c794ec59f9307f335c0c79f0c5d307fb","ref":"refs/heads/benchmarks","pushedAt":"2024-09-20T11:32:08.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add Benchmark (customSmallerIsBetter) benchmark result for f02bdf9cd8f4a42a80df711e1add0ecb4f6b1dab","shortMessageHtmlLink":"add Benchmark (customSmallerIsBetter) benchmark result for f02bdf9"}},{"before":"010cd123481ed7c13f333936d27f73b65c15be39","after":"f02bdf9cd8f4a42a80df711e1add0ecb4f6b1dab","ref":"refs/heads/main","pushedAt":"2024-09-20T09:47:08.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"mx-psi","name":"Pablo Baeyens","path":"/mx-psi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5502710?s=80&v=4"},"commit":{"message":"skywalkingreceiver: migrate to latest semconv version (#35314)\n\nDescription: The version of semconv is upgraded from v1.18.0 to v1.27.0\r\n\r\nLink to tracking Issue:\r\nhttps://github.com/open-telemetry/opentelemetry-collector-contrib/issues/22095\r\n\r\nTesting: Tests passed","shortMessageHtmlLink":"skywalkingreceiver: migrate to latest semconv version (#35314)"}},{"before":"987a0c7e66eb98514cc7612422d3976d80175fcd","after":"010cd123481ed7c13f333936d27f73b65c15be39","ref":"refs/heads/main","pushedAt":"2024-09-20T09:46:44.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"mx-psi","name":"Pablo Baeyens","path":"/mx-psi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5502710?s=80&v=4"},"commit":{"message":"prometheusreceiver: migrate to latest semconv version (#35309)\n\nDescription: The version of semconv is upgraded from v1.25.0 to v1.27.0\r\n\r\nLink to tracking Issue:\r\nhttps://github.com/open-telemetry/opentelemetry-collector-contrib/issues/22095\r\n\r\nTesting: Tests passed","shortMessageHtmlLink":"prometheusreceiver: migrate to latest semconv version (#35309)"}},{"before":"2cc8ceaceaacfef0a29b27ada0b82f020d08e468","after":"987a0c7e66eb98514cc7612422d3976d80175fcd","ref":"refs/heads/main","pushedAt":"2024-09-20T09:17:46.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"mx-psi","name":"Pablo Baeyens","path":"/mx-psi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5502710?s=80&v=4"},"commit":{"message":"receivercreator: migrate to latest semconv version (#35311)\n\nDescription: The version of semconv is upgraded from v1.18.0 to v1.27.0\r\n\r\nLink to tracking Issue:\r\nhttps://github.com/open-telemetry/opentelemetry-collector-contrib/issues/22095\r\n\r\nTesting: Tests passed","shortMessageHtmlLink":"receivercreator: migrate to latest semconv version (#35311)"}},{"before":"b8d05edfd272eaed71ad496cd546a79bd0b45bf9","after":"97070abeabcfbba96da0d45dc4bdb522e4625af5","ref":"refs/heads/benchmarks","pushedAt":"2024-09-19T23:58:58.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add Benchmark (customSmallerIsBetter) benchmark result for 58c9d51791ff8a93cd87eb63dc389f86b29a4519","shortMessageHtmlLink":"add Benchmark (customSmallerIsBetter) benchmark result for 58c9d51"}},{"before":"58c9d51791ff8a93cd87eb63dc389f86b29a4519","after":"2cc8ceaceaacfef0a29b27ada0b82f020d08e468","ref":"refs/heads/main","pushedAt":"2024-09-19T23:20:58.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"codeboten","name":"Alex Boten","path":"/codeboten","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/223565?s=80&v=4"},"commit":{"message":"[chore] Skip flaky test on Windows (#35302)\n\n**Description:**\r\nSince `receiver/googlecloudspanner` is unmaintained I'm opting to simply\r\nskip the flaky test on Windows.\r\n\r\n**Link to tracking Issue:**\r\nWorkaround for #32397","shortMessageHtmlLink":"[chore] Skip flaky test on Windows (#35302)"}},{"before":"07ee9e4ba1fdcff0af76af0d9b1e570bc15622e3","after":"58c9d51791ff8a93cd87eb63dc389f86b29a4519","ref":"refs/heads/main","pushedAt":"2024-09-19T23:13:12.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"codeboten","name":"Alex Boten","path":"/codeboten","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/223565?s=80&v=4"},"commit":{"message":"[chore][pkg/ottl] Use faster json parsing library (#35130)\n\nThis follows\r\nhttps://github.com/open-telemetry/opentelemetry-collector-contrib/pull/33785\r\nby switching to a faster json library.","shortMessageHtmlLink":"[chore][pkg/ottl] Use faster json parsing library (#35130)"}},{"before":"b3f82a7eb8daa4251e694e08c7c3e962c835f3ed","after":"b8d05edfd272eaed71ad496cd546a79bd0b45bf9","ref":"refs/heads/benchmarks","pushedAt":"2024-09-19T21:10:39.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add Benchmark (customSmallerIsBetter) benchmark result for 07ee9e4ba1fdcff0af76af0d9b1e570bc15622e3","shortMessageHtmlLink":"add Benchmark (customSmallerIsBetter) benchmark result for 07ee9e4"}},{"before":"5601dfb28d905d0802f2e450cad6a2cc80029b6b","after":"07ee9e4ba1fdcff0af76af0d9b1e570bc15622e3","ref":"refs/heads/main","pushedAt":"2024-09-19T20:26:54.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"TylerHelmuth","name":"Tyler Helmuth","path":"/TylerHelmuth","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12352919?s=80&v=4"},"commit":{"message":"kubeletstatsreceiver: migrate to latest semconv version (#35273)\n\nDescription: The version of semconv is upgraded from v1.6.1 to v1.27.0\r\n\r\nLink to tracking Issue:\r\nhttps://github.com/open-telemetry/opentelemetry-collector-contrib/issues/22095\r\n\r\nTesting: Tests passed","shortMessageHtmlLink":"kubeletstatsreceiver: migrate to latest semconv version (#35273)"}},{"before":"4d81a727489a098014d2d1155d59e94b98a2642a","after":"b3f82a7eb8daa4251e694e08c7c3e962c835f3ed","ref":"refs/heads/benchmarks","pushedAt":"2024-09-19T09:45:38.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add Benchmark (customSmallerIsBetter) benchmark result for 1187fddf9573dfe637af1c9f0e9c5d01cb549955","shortMessageHtmlLink":"add Benchmark (customSmallerIsBetter) benchmark result for 1187fdd"}},{"before":"36b603da19a159fc909d98493786f7978fed252b","after":"5601dfb28d905d0802f2e450cad6a2cc80029b6b","ref":"refs/heads/main","pushedAt":"2024-09-19T08:20:11.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"mx-psi","name":"Pablo Baeyens","path":"/mx-psi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5502710?s=80&v=4"},"commit":{"message":"(otelarrowexporter): Create exporter per unique value of configured metadataKeys (#34827)\n\n**Description:** \r\n\r\nThis PR forks\r\nhttps://github.com/open-telemetry/opentelemetry-collector-contrib/pull/34235\r\nand adds unit tests.\r\n\r\n**Link to tracking Issue:** \r\n\r\nhttps://github.com/open-telemetry/opentelemetry-collector-contrib/issues/34178\r\n\r\n---------\r\n\r\nCo-authored-by: kristina.pathak \r\nCo-authored-by: Joshua MacDonald ","shortMessageHtmlLink":"(otelarrowexporter): Create exporter per unique value of configured m…"}},{"before":"1187fddf9573dfe637af1c9f0e9c5d01cb549955","after":"36b603da19a159fc909d98493786f7978fed252b","ref":"refs/heads/main","pushedAt":"2024-09-19T08:15:43.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"jpkrohling","name":"Juraci Paixão Kröhling","path":"/jpkrohling","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/13387?s=80&v=4"},"commit":{"message":"[receiver/datadog][bug-fix] Add DD span `metrics` as attributes (#35087)\n\n**Description:** \r\nDatadog [divides the span's\r\ntags](https://github.com/DataDog/dd-trace-java/blob/master/dd-trace-core/src/main/java/datadog/trace/common/writer/ddagent/TraceMapperV0_5.java#L210-L212)\r\ninto [two\r\nfields](https://github.com/DataDog/datadog-agent/blob/1739a048156d968bbe5fd8a1ace8e07c997d16d9/pkg/proto/datadog/trace/span.proto#L50-L55),\r\n`meta` for string values and `metrics` for numeric ones.\r\n\r\nCurrently, the receiver isn't considering the `metrics` field when\r\nbuilding the OTel span's attributes, losing this metadata during the\r\nconversion. This PR fixes this issue.\r\n\r\n**Link to tracking Issue:** \r\n\r\n**Testing:** \r\n\r\n**Documentation:** \r\n\r\n---------\r\n\r\nCo-authored-by: Sean Marciniak <30928402+MovieStoreGuy@users.noreply.github.com>","shortMessageHtmlLink":"[receiver/datadog][bug-fix] Add DD span metrics as attributes (#35087)"}},{"before":"f4e1db55ebbb53a3098c5120942c756f00d8fc6b","after":"1187fddf9573dfe637af1c9f0e9c5d01cb549955","ref":"refs/heads/main","pushedAt":"2024-09-19T08:13:43.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"mx-psi","name":"Pablo Baeyens","path":"/mx-psi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5502710?s=80&v=4"},"commit":{"message":"[chore] update module github.com/google/go-github/v64 to v65 (#35266)\n\n**Description:** \r\n\r\nrenovatebot couldn't handle the major dep upgrade properly, so I've done\r\nit manually for the whole repo.\r\n\r\n**Link to tracking Issue:** \r\nSupersedes update module github.com/google/go-github/v64 to v65","shortMessageHtmlLink":"[chore] update module github.com/google/go-github/v64 to v65 (#35266)"}},{"before":"c765606595a719b1f15dd8ae619200d37a046ab5","after":null,"ref":"refs/heads/renovate/all-opentelemetry-go-contrib-packages","pushedAt":"2024-09-19T08:11:26.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"mx-psi","name":"Pablo Baeyens","path":"/mx-psi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5502710?s=80&v=4"}},{"before":"3c8a5076fcc81d79200c65e17f48aab2c11db05b","after":"f4e1db55ebbb53a3098c5120942c756f00d8fc6b","ref":"refs/heads/main","pushedAt":"2024-09-19T08:11:25.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"mx-psi","name":"Pablo Baeyens","path":"/mx-psi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5502710?s=80&v=4"},"commit":{"message":"fix(deps): update module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp to v0.55.0 (#35252)\n\nThis PR contains the following updates:\r\n\r\n| Package | Change | Age | Adoption | Passing | Confidence |\r\n|---|---|---|---|---|---|\r\n|\r\n[go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib)\r\n| `v0.54.0` -> `v0.55.0` |\r\n[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fnet%2fhttp%2fotelhttp/v0.55.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fnet%2fhttp%2fotelhttp/v0.55.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fnet%2fhttp%2fotelhttp/v0.54.0/v0.55.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fnet%2fhttp%2fotelhttp/v0.54.0/v0.55.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n\r\n---\r\n\r\n> [!WARNING]\r\n> Some dependencies could not be looked up. Check the Dependency\r\nDashboard for more information.\r\n\r\n---\r\n\r\n### Configuration\r\n\r\n📅 **Schedule**: Branch creation - \"on tuesday\" (UTC), Automerge - At any\r\ntime (no schedule defined).\r\n\r\n🚦 **Automerge**: Disabled by config. Please merge this manually once you\r\nare satisfied.\r\n\r\n♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the\r\nrebase/retry checkbox.\r\n\r\n🔕 **Ignore**: Close this PR and you won't be reminded about this update\r\nagain.\r\n\r\n---\r\n\r\n- [ ] If you want to rebase/retry this PR, check\r\nthis box\r\n\r\n---\r\n\r\nThis PR was generated by [Mend Renovate](https://mend.io/renovate/).\r\nView the [repository job\r\nlog](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).\r\n\r\n\r\n\r\n---------\r\n\r\nCo-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>\r\nCo-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>","shortMessageHtmlLink":"fix(deps): update module go.opentelemetry.io/contrib/instrumentation/…"}},{"before":"0420c4097e0a814af81faac2edaca56ae0c7e02e","after":"4d81a727489a098014d2d1155d59e94b98a2642a","ref":"refs/heads/benchmarks","pushedAt":"2024-09-19T01:49:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add Benchmark (customSmallerIsBetter) benchmark result for 3c8a5076fcc81d79200c65e17f48aab2c11db05b","shortMessageHtmlLink":"add Benchmark (customSmallerIsBetter) benchmark result for 3c8a507"}},{"before":"b41560cd050633f9094226e1cbf8cb49fb48b261","after":"0420c4097e0a814af81faac2edaca56ae0c7e02e","ref":"refs/heads/benchmarks","pushedAt":"2024-09-18T22:51:33.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add Benchmark (customSmallerIsBetter) benchmark result for a60e6d20a6abb10c9dc20bdc0a32af7555dcd016","shortMessageHtmlLink":"add Benchmark (customSmallerIsBetter) benchmark result for a60e6d2"}},{"before":"1c4be63abce9f9344c9636882284d479059b3866","after":"3c8a5076fcc81d79200c65e17f48aab2c11db05b","ref":"refs/heads/main","pushedAt":"2024-09-18T22:45:30.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"codeboten","name":"Alex Boten","path":"/codeboten","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/223565?s=80&v=4"},"commit":{"message":"Add Azure Resource Logs translator (#34830)\n\n**Description**:\r\n\r\nThis PR adds a new Azure Resource Logs translator that can be used to\r\nconvert Azure events into resource logs events using Semantic\r\nconventions defined here\r\n[here](https://github.com/open-telemetry/semantic-conventions/blob/main/docs/azure/events.md).\r\n\r\nThis supersedes following draft PR by updating it to have the latest\r\nsemconv:\r\n- #32486\r\n\r\n*Note*: A follow-up PR will update the Azure receiver to use the new\r\ntranslator.\r\n\r\n**Testing**:\r\n\r\nIncludes unit tests to verify expected behaviours and data structures.\r\n\r\n**Documentation**:\r\n\r\n---\r\n\r\ncc @markrendle @lmolkova @TylerHelmuth\r\n\r\n---------\r\n\r\nSigned-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>\r\nCo-authored-by: Mark Rendle \r\nCo-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>\r\nCo-authored-by: Curtis Robert \r\nCo-authored-by: Tyler Helmuth <12352919+TylerHelmuth@users.noreply.github.com>","shortMessageHtmlLink":"Add Azure Resource Logs translator (#34830)"}},{"before":"5ace9be446fb346b4b24cf0c567696ee78f72c32","after":"c765606595a719b1f15dd8ae619200d37a046ab5","ref":"refs/heads/renovate/all-opentelemetry-go-contrib-packages","pushedAt":"2024-09-18T22:38:58.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"go mod tidy, make genotelcontribcol and make genoteltestbedcol","shortMessageHtmlLink":"go mod tidy, make genotelcontribcol and make genoteltestbedcol"}},{"before":"652ac4bc3f1200d3d5adaf43fb50d18e3e1228c9","after":"5ace9be446fb346b4b24cf0c567696ee78f72c32","ref":"refs/heads/renovate/all-opentelemetry-go-contrib-packages","pushedAt":"2024-09-18T22:34:29.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"fix(deps): update module go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp to v0.55.0","shortMessageHtmlLink":"fix(deps): update module go.opentelemetry.io/contrib/instrumentation/…"}},{"before":"fed43066b7b341f2849927b5c383266341d277b2","after":null,"ref":"refs/heads/opentelemetrybot/add-jmx-metrics-gatherer-1.39.0-alpha","pushedAt":"2024-09-18T22:17:53.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"codeboten","name":"Alex Boten","path":"/codeboten","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/223565?s=80&v=4"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0yMVQwNDozODoyNS4wMDAwMDBazwAAAAS8iT0j","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0yMVQwNDozODoyNS4wMDAwMDBazwAAAAS8iT0j","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0xOFQyMjoxNzo1My4wMDAwMDBazwAAAAS6NZ_o"}},"title":"Activity · open-telemetry/opentelemetry-collector-contrib"}