Verified Commit 34715876 authored by Hines, Jesse's avatar Hines, Jesse
Browse files

Add new workload type

parent 571195b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
import { addHours } from "date-fns";

export const workloadTypes = [
  "random", "benchmark", "peak", "idle", "synthetic", "multitenant", "replay",
  "random", "benchmark", "peak", "idle", "synthetic", "multitenant", "replay", "randomAI",
] as const
export type WorkloadType = typeof workloadTypes[number]