summaryrefslogtreecommitdiff
path: root/src/api/routes/traces.js
blob: 6a34ca7c9f2b2b4500d6e90ceccdcfe7bb278a91 (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});
}