QueryInsightsChart.utils.ts 325 B

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