1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { Resource } from "./resource";
6 import { ResourceKind } from '~/models/resource';
8 export enum LogEventType {
11 DISPATCH = 'dispatch',
12 CRUNCH_RUN = 'crunch-run',
13 CRUNCHSTAT = 'crunchstat',
14 HOSTSTAT = 'hoststat',
15 NODE_INFO = 'node-info',
16 ARV_MOUNT = 'arv-mount',
21 export interface LogResource extends Resource {
22 kind: ResourceKind.LOG;