Убрал лишнюю нормализацию

This commit is contained in:
Первов Артем
2026-06-22 03:29:36 +03:00
parent de4d6eccbe
commit c8fef3e025
4 changed files with 9 additions and 9 deletions

View File

@@ -2,7 +2,7 @@ import { readFileSync } from 'node:fs'
export type MappedMetric = {
edge: string
timestamp: number
timestamp: string
tag: string
value: number
}
@@ -14,7 +14,7 @@ type MappingConfig = {
export type MetricMapper = {
edge: string
mapValues: (values: number[], timestamp: number) => MappedMetric[]
mapValues: (values: number[], timestamp: string) => MappedMetric[]
}
type MetricMapperOptions = {