diff --git a/CHANGELOG.md b/CHANGELOG.md index 46a84eb6b..89e655f20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [7.2.7] - 2025-12-04 +### Changed +- Increased metrics client interval from 5s to 60s and timeout from 5s to 60s + ## [7.2.6] - 2025-11-05 ### Changed - Enhance the translation utilities by introducing a new state marker for translatable message strings, updating the parsing and formatting logic to handle this marker and ensuring that already translated messages are bypassed further processing diff --git a/package.json b/package.json index c44969bb6..7bd67187e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/api", - "version": "7.2.6", + "version": "7.2.7", "description": "VTEX I/O API client", "main": "lib/index.js", "typings": "lib/index.d.ts", diff --git a/src/service/telemetry/client.ts b/src/service/telemetry/client.ts index ad32fb3b2..59b8a23ab 100644 --- a/src/service/telemetry/client.ts +++ b/src/service/telemetry/client.ts @@ -44,8 +44,8 @@ class TelemetryClientSingleton { await telemetryClient.newMetricsClient({ exporter: Exporters.CreateExporter(Exporters.CreateMetricsExporterConfig({ endpoint: OTEL_EXPORTER_OTLP_ENDPOINT, - interval: 5, - timeoutSeconds: 5, + interval: 60, + timeoutSeconds: 60, }), 'otlp'), });