Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/service/telemetry/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
});

Expand Down
Loading