QueryInsightsChart.utils.ts12 lines · main
| 1 | export const isTimeMetric = (dataKey: string) => dataKey.endsWith('p50') || dataKey.endsWith('p95') |
| 2 | |
| 3 | export const formatTime = (value: number) => { |
| 4 | const d = new Date(value) |
| 5 | return d.toLocaleString('en-US', { |
| 6 | month: 'short', |
| 7 | day: 'numeric', |
| 8 | year: 'numeric', |
| 9 | hour: 'numeric', |
| 10 | minute: '2-digit', |
| 11 | }) |
| 12 | } |