Adding vue copy/paste from daggy

This commit is contained in:
Kinesin Data Technologies Incorporated
2022-10-07 12:25:41 -03:00
parent 6b49038db6
commit e711b3249b
33 changed files with 4831 additions and 42 deletions
+50
View File
@@ -0,0 +1,50 @@
<script>
import RunExplorer from './components/RunExplorer.vue'
import GlobalSettings from './components/GlobalSettings.vue'
export default {
data() {
return {
refreshSeconds: 15, // How often to refresh
daggydURL: window.location.origin,
}
},
methods: {
updateURL(url) {
this.daggydURL = url;
},
updateRefreshInterval(interval) {
this.refreshSeconds = interval;
},
},
components: {
GlobalSettings,
RunExplorer
}
}
</script>
<style>
select { max-width: 25%; }
input { max-width: 25%; }
</style>
<template>
<div id="settings">
<GlobalSettings
:daggydURL="daggydURL"
:refreshSeconds="refreshSeconds"
@update-refresh-interval="(interval) => this.updateRefreshInterval(interval)"
@update-daggyd-url="(url) => this.updateURL(url)"
/>
</div>
<div id="explorer">
<RunExplorer
:refreshSeconds="refreshSeconds"
:daggydURL="daggydURL"
@new-active-run="(runID) => this.activeRunID = runID"
/>
</div>
</template>
+74
View File
@@ -0,0 +1,74 @@
/* color palette from <https://github.com/vuejs/theme> */
:root {
--vt-c-white: #ffffff;
--vt-c-white-soft: #f8f8f8;
--vt-c-white-mute: #f2f2f2;
--vt-c-black: #181818;
--vt-c-black-soft: #222222;
--vt-c-black-mute: #282828;
--vt-c-indigo: #2c3e50;
--vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
--vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
--vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
--vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);
--vt-c-text-light-1: var(--vt-c-indigo);
--vt-c-text-light-2: rgba(60, 60, 60, 0.66);
--vt-c-text-dark-1: var(--vt-c-white);
--vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
}
/* semantic color variables for this project */
:root {
--color-background: var(--vt-c-white);
--color-background-soft: var(--vt-c-white-soft);
--color-background-mute: var(--vt-c-white-mute);
--color-border: var(--vt-c-divider-light-2);
--color-border-hover: var(--vt-c-divider-light-1);
--color-heading: var(--vt-c-text-light-1);
--color-text: var(--vt-c-text-light-1);
--section-gap: 160px;
}
@media (prefers-color-scheme: dark) {
:root {
--color-background: var(--vt-c-black);
--color-background-soft: var(--vt-c-black-soft);
--color-background-mute: var(--vt-c-black-mute);
--color-border: var(--vt-c-divider-dark-2);
--color-border-hover: var(--vt-c-divider-dark-1);
--color-heading: var(--vt-c-text-dark-1);
--color-text: var(--vt-c-text-dark-2);
}
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
position: relative;
font-weight: normal;
}
body {
min-height: 100vh;
color: var(--color-text);
background: var(--color-background);
transition: color 0.5s, background-color 0.5s;
line-height: 1.6;
font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
font-size: 15px;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 261.76 226.69" xmlns:v="https://vecta.io/nano"><path d="M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z" fill="#41b883"/><path d="M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z" fill="#34495e"/></svg>

After

Width:  |  Height:  |  Size: 308 B

+35
View File
@@ -0,0 +1,35 @@
@import "./base.css";
#app {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
font-weight: normal;
}
a,
.green {
text-decoration: none;
color: hsla(160, 100%, 37%, 1);
transition: 0.4s;
}
@media (hover: hover) {
a:hover {
background-color: hsla(160, 100%, 37%, 0.2);
}
}
@media (min-width: 1024px) {
body {
display: flex;
place-items: center;
}
#app {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 0 2rem;
}
}
+40
View File
@@ -0,0 +1,40 @@
<script>
export default {
props: ['refreshSeconds', 'daggydURL'],
data() {
return {
interval: this.refreshSeconds,
url: this.daggydURL,
};
},
emits: ['update-refresh-interval', 'update-daggyd-url'],
computed: {
validRefreshIntervals() {
return [5, 10, 15, 30, 60, 300, 600];
},
isSelected(interval) {
return (interval === this.refreshSeconds ? 'selected' : 'unselected');
},
},
};
</script>
<template>
<details>
<summary>Global Settings</summary>
<label>
Daggy Base URL
<input @change="$emit('update-daggyd-url', url)" v-model="url"/>
</label>
<label>Refresh Interval (seconds)
<select @change="$emit('update-refresh-interval', interval)" v-model="interval">
<option v-for="interval in validRefreshIntervals"
:key="interval"
:value="interval"
>
{{ interval }} Seconds
</option>
</select>
</label>
</details>
</template>
+252
View File
@@ -0,0 +1,252 @@
<script>
import { ALL_STATES } from '../defs.js'
import SortableTableHeader from './SortableTableHeader.vue';
import TaskDetails from './TaskDetails.vue';
export default {
props: ['daggydURL', 'refreshSeconds', 'activeRunID'],
components: { SortableTableHeader, TaskDetails },
data() {
return {
sortCol: 'lastUpdate',
sortAscending: false,
run: null,
activeTaskName: null,
filterStates: ALL_STATES.map((x) => x.name),
filterMinTime: 0,
filterMaxTime: 2000000000000000000,
filterRegex: '.*',
columns: [
{ name: 'name', title: 'Name', sortable: true },
{ name: 'state', title: 'State', sortable: true },
{ name: 'startTime', title: 'Last Update', sortable: true },
{ name: 'duration', title: 'Duration (s)', sortable: true },
{ name: 'attempts', title: '# of Attempts', sortable: true },
{ name: 'controls', title: 'Controls', sortable: false },
],
};
},
watch: {
refreshSeconds() {
this.fetchRun();
},
daggydURL() {
this.fetchRun();
},
activeRunID() {
this.fetchRun();
},
},
computed: {
tasks() {
if (this.run === null) {
return [];
}
const tasks = Object.keys(this.run.tasks)
.map((taskName) => {
let startTime = 0;
let stopTime = 0;
let duration = 0;
const attempts = (taskName in this.run.taskAttempts
? this.run.taskAttempts[taskName]
: []);
if (attempts.length > 0) {
const firstAttempt = attempts[0];
const lastAttempt = attempts[attempts.length - 1];
startTime = firstAttempt.startTime;
stopTime = lastAttempt.stopTime;
duration = lastAttempt.stopTime - firstAttempt.startTime;
}
return {
name: taskName,
state: this.run.taskStates[taskName],
startTime,
lastUpdate: stopTime,
attempts: attempts.length,
duration: (duration / 1e9).toFixed(2),
};
});
return tasks
.filter(this.filter)
.sort(this.sorter);
},
allStates() {
return ALL_STATES;
},
activeTask() {
if (this.activeTaskName === null) {
return null;
}
const name = this.activeTaskName;
const attempts = (name in this.run.taskAttempts ? this.run.taskAttempts[name] : []);
const augAttempts = attempts
.sort((a, b) => a.startTime - b.startTime)
.map((a, i) => {
a.id = i + 1;
return a;
});
const obj = {
name,
task: this.run.tasks[name],
attempts: augAttempts,
state: this.run.taskStates[name],
};
return obj;
},
},
methods: {
isNumeric(x) {
const p = parseFloat(x);
return !Number.isNaN(p) && Number.isFinite(p);
},
sorter(a, b) {
const aa = a[this.sortCol];
const bb = b[this.sortCol];
let ret = 0;
if (this.isNumeric(aa) && this.isNumeric(bb)) {
ret = aa - bb;
} else if (aa < bb) {
ret = -1;
} else if (bb === aa) {
ret = 0;
} else {
ret = 1;
}
if (!this.sortAscending) {
ret *= -1;
}
return ret;
},
filter(task) {
const reFilter = new RegExp(this.filterRegex, '');
return (this.filterStates.indexOf(task.state) > -1)
&& (task.startTime >= this.filterMinTime)
&& (task.lastUpdate <= this.filterMaxTime)
&& (reFilter.test(task.name));
},
setSortCol(name) {
if (this.sortCol === name) {
this.sortAscending = !this.sortAscending;
} else {
this.sortCol = name;
this.sortAscending = true;
}
},
// Root tags
// runID, tag, tasks, taskStates, taskAttempts
async fetchRun() {
if (this.activeRunID === null) { return; }
const resp = await fetch(`${this.daggydURL}/v1/dagrun/${this.activeRunID}`);
this.run = await resp.json();
},
killTask(taskName) {
fetch(`${this.daggydURL}/v1/dagrun/${this.activeRunID}/task/${taskName}`, { method: 'delete' });
},
retryTask(taskName) {
fetch(`${this.daggydURL}/v1/dagrun/${this.activeRunID}/task/${taskName}/state/QUEUED`, { method: 'patch' });
},
update() {
this.fetchRun();
setTimeout(() => {
this.update();
}, this.refreshSeconds * 1000);
},
setActiveTask(taskName) {
this.activeTaskName = taskName;
},
},
mounted() {
this.update();
},
};
</script>
<style>
input {
max-width: 25%;
}
label {
margin: 5px;
}
</style>
<template>
<div class="run-view">
<TaskDetails :task="activeTask" />
<div id="run-view-filter">
<details>
<summary>Task Filter</summary>
<div>
<label>
Min Time
<input v-model.lazy="filterMinTime"/>
</label>
<label>
Max Time
<input v-model.lazy="filterMaxTime"/>
</label>
<label>
Task Name Regex
<input v-model.lazy="filterRegex"/>
</label>
</div>
<div>
<label v-for="state in allStates" :key="state.name">
{{ state.display }}
<input type="checkbox" :value="state.name" v-model="filterStates">
</label>
</div>
</details>
</div>
<div id="run-view-data">
<table>
<thead>
<tr>
<th v-for="col in columns" :key="col.name">
<SortableTableHeader
:title="col.title"
:sorted="col.name == this.sortCol"
:ascending="sortAscending"
:sortable="col.sortable"
@update-sort-column="setSortCol(col.name)"
/>
</th>
</tr>
</thead>
<tbody>
<tr v-for="task in tasks" :key="task.name">
<td>{{task.name}}</td>
<td>{{task.state}}</td>
<td>{{task.startTime}}</td>
<td>{{task.duration}}</td>
<td>{{task.attempts}}</td>
<td>
<img class='svgicon'
src='/icon-search.svg'
@click="setActiveTask(task.name)"/>
<img class='svgicon' src='/icon-trash.svg' @click="killTask(task.name)"/>
<img class='svgicon' src='/icon-launch.svg' @click="retryTask(task.name)"/>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</template>
+38
View File
@@ -0,0 +1,38 @@
<script>
import RunList from './RunList.vue';
import RunDetails from './RunDetails.vue';
export default {
props: ['refreshSeconds', 'daggydURL'],
data() {
return {
activeRunID: null,
activeTaskName: null,
};
},
components: {
RunList,
RunDetails,
},
methods: {
setActiveRunID(runID) {
this.activeRunID = runID;
},
},
};
</script>
<template>
<div id="explorer">
<RunList
:daggydURL="daggydURL"
:refreshSeconds="refreshSeconds"
@update-active-runid="(runID) => setActiveRunID(runID)"
/>
<RunDetails
:daggydURL="daggydURL"
:refreshSeconds="refreshSeconds"
:activeRunID="activeRunID"
/>
</div>
</template>
+220
View File
@@ -0,0 +1,220 @@
<script>
import { ALL_STATES, defaultCountHandler } from '../defs.js'
import SortableTableHeader from './SortableTableHeader.vue';
// import SortIndicator from './SortIndicator.vue';
// import RunButton from './RunButton.vue';
// components: { RunButton, SortIndicator },
export default {
props: ['daggydURL', 'refreshSeconds'],
components: { SortableTableHeader },
data() {
return {
sortCol: 'lastUpdate', // Which column to sort view on
sortAscending: false,
runs: [],
filterStates: ALL_STATES.map((x) => x.name),
filterMinTime: 0,
filterMaxTime: 2000000000000000000,
filterRegex: '.*',
columns: [
{ name: 'runID', title: 'Run ID', sortable: true },
{ name: 'tag', title: 'Tag', sortable: true },
{ name: 'state', title: 'State', sortable: true },
{ name: 'progress', title: 'Progress', sortable: true },
{ name: 'startTime', title: 'Start Time', sortable: true },
{ name: 'lastUpdate', title: 'LastUpdate', sortable: true },
{ name: 'queued', title: 'Queued', sortable: true },
{ name: 'running', title: 'Running', sortable: true },
{ name: 'errored', title: 'Errored', sortable: true },
{ name: 'completed', title: 'Completed', sortable: true },
{ name: 'controls', title: 'Controls', sortable: false },
],
};
},
computed: {
runList() {
return this.runs
.filter((run) => this.runFilter(run))
.map((r) => {
const run = r;
run.nTasks = Object
.values(run.taskCounts)
.reduce((prev, cur) => prev + cur, 0);
run.task_states = new Proxy(run.taskCounts, defaultCountHandler);
run.progress = run.task_states.COMPLETED / run.nTasks;
return run;
})
.sort((a, b) => this.sorter(a, b));
},
allStates() {
return ALL_STATES;
},
},
watch: {
refreshSeconds() {
this.fetchRuns();
},
daggydURL() {
this.fetchRuns();
},
activeRunID() {
this.fetchRuns();
},
},
methods: {
isNumeric(x) {
const p = parseFloat(x);
return !Number.isNaN(p) && Number.isFinite(p);
},
sorter(a, b) {
const aa = a[this.sortCol];
const bb = b[this.sortCol];
let ret = 0;
if (this.isNumeric(aa) && this.isNumeric(bb)) {
ret = aa - bb;
} else if (aa < bb) {
ret = -1;
} else if (bb === aa) {
ret = 0;
} else {
ret = 1;
}
if (!this.sortAscending) {
ret *= -1;
}
return ret;
},
runFilter(run) {
const reFilter = new RegExp(this.filterRegex, '');
return (this.filterStates.indexOf(run.state) > -1)
&& (run.startTime >= this.filterMinTime)
&& (run.lastUpdate <= this.filterMaxTime)
&& (reFilter.test(run.tag));
},
setSortCol(name) {
if (this.sortCol === name) {
this.sortAscending = !this.sortAscending;
} else {
this.sortCol = name;
this.sortAscending = true;
}
},
killRun(runID) {
fetch(`${this.daggydURL}/v1/dagrun/${runID}`, { method: 'delete' });
},
retryRun(runID) {
fetch(`${this.daggydURL}/v1/dagrun/${runID}/state/QUEUED`, { method: 'patch' });
},
async fetchRuns() {
const res = await fetch(`${this.daggydURL}/v1/dagruns?all=1`);
this.runs = await res.json();
},
update() {
this.fetchRuns();
setTimeout(() => {
this.update();
}, this.refreshSeconds * 1000);
},
},
mounted() {
this.update();
},
};
</script>
<template>
<div id="run-list">
<div id="run-list-filter">
<details>
<summary>Run Filter</summary>
<div>
<label>
Start Time
<input v-model.lazy="filterMinTime"/>
</label>
<label>
Time
<input v-model.lazy="filterMaxTime"/>
</label>
<label>
Task Name Regex
<input v-model.lazy="filterRegex"/>
</label>
</div>
<div>
<label v-for="state in allStates" :key="state.name">
{{ state.display }}
<input type="checkbox" :value="state.name" v-model="filterStates">
</label>
</div>
</details>
</div>
<div id="run-list-data">
<table class="table">
<thead>
<tr>
<th v-for="col in columns" :key="col.name">
<SortableTableHeader
:title="col.title"
:sorted="col.name == this.sortCol"
:ascending="sortAscending"
:sortable="col.sortable"
@update-sort-column="setSortCol(col.name)"
/>
</th>
</tr>
</thead>
<tbody>
<tr v-for="run in runList" :key="run.runID">
<td>{{run.runID}}</td>
<td>{{run.tag}}</td>
<td>{{run.state}}</td>
<td><progress :value="run.progress"></progress></td>
<td>{{run.startTime}}</td>
<td>{{run.lastUpdate}}</td>
<td>{{run.task_states["QUEUED"]}}</td>
<td>{{run.task_states["RUNNING"]}}</td>
<td>{{run.task_states["ERRORED"]}}</td>
<td>{{run.task_states["COMPLETED"]}}</td>
<td>
<a href="#">
<img
class='svgicon'
src='/icon-search.svg'
@click="$emit('update-active-runid', run.runID)"/>
</a>
<a href="#">
<img class='svgicon' src='/icon-trash.svg' @click="killRun(run.runID)"/>
</a>
<a href="#">
<img class='svgicon' src='/icon-launch.svg' @click="retryRun(run.runID)"/>
</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</template>
<style>
.svgicon {
height: 1em;
width: auto;
}
</style>
@@ -0,0 +1,43 @@
<script>
export default {
props: ['title', 'sorted', 'ascending', 'sortable'],
emits: ['update-sort-column'],
computed: {
src() {
let loc = '/icon-';
if (this.sorted) {
if (this.ascending) {
loc += 'sort-ascending';
} else {
loc += 'sort-decending';
}
} else {
loc += 'order-vertical';
}
loc += '.svg';
return loc;
},
},
};
</script>
<style>
.svgicon {
height: 1em;
width: auto;
}
</style>
<template>
<div>
{{ title }}
<a href="#">
<img
v-if="sortable"
class='svgicon'
:src="src"
:alt="title"
@click="$emit('update-sort-column')"/>
</a>
</div>
</template>
+60
View File
@@ -0,0 +1,60 @@
<script>
export default {
props: ['task'],
};
</script>
<template>
<div id="task-details" v-if="task !== null">
<details open>
<summary>Task Details for {{ task.name }}</summary>
<table>
<tbody>
<tr>
<th>Name</th>
<td>{{ task.name }}</td>
</tr>
<tr>
<th>State</th>
<td>{{ task.state }}</td>
</tr>
<tr>
<th>Definition</th>
<td><pre>{{ JSON.stringify(task.task, null, 2) }}</pre></td>
</tr>
</tbody>
</table>
<details v-for="attempt in task.attempts" :key="attempt.id" open>
<summary>Attempt {{attempt.id}}</summary>
<table>
<tbody>
<tr>
<th>Start Time</th>
<td>{{ attempt.startTime }}</td>
</tr>
<tr>
<th>Stop Time</th>
<td>{{ attempt.stopTime }}</td>
</tr>
<tr>
<th>Return Code</th>
<td>{{ attempt.rc }}</td>
</tr>
<tr>
<th>Standard Out</th>
<td><pre>{{ attempt.outputLog }}</pre></td>
</tr>
<tr>
<th>Standard Error</th>
<td><pre>{{ attempt.errorLog }}</pre></td>
</tr>
<tr>
<th>Executor Log</th>
<td><pre>{{ attempt.ExecutorLog }}</pre></td>
</tr>
</tbody>
</table>
</details>
</details>
</div>
</template>
+17
View File
@@ -0,0 +1,17 @@
import { reactive } from 'vue';
export const ALL_STATES = [
{ name: 'QUEUED', display: 'Queued' },
{ name: 'RUNNING', display: 'Running' },
{ name: 'ERRORED', display: 'Errored' },
{ name: 'COMPLETED', display: 'Completed' },
{ name: 'KILLED', display: 'Killed' },
];
export const defaultCountHandler = {
get(target, name) {
return name in target ? target[name] : 0;
},
};
+6
View File
@@ -0,0 +1,6 @@
import { createApp } from 'vue'
import App from './App.vue'
import './assets/main.css'
createApp(App).mount('#app')