summaryrefslogtreecommitdiff
path: root/src/api/routes/traces.js
blob: a9ee4fae91ac32a699717b240257877aa8526ca4 (plain)
1
2
3
4
5
6
7
8
9
import { getAll, getById } from "./util";

export function getAllTraces() {
  return getAll("/traces");
}

export function getJobsOfTrace(traceId) {
  return getById("/traces/{traceId}/jobs", { traceId });
}