* runs on svelte 5 * Line component from svelte-chartjs * Replaced all svelte-chartjs occurrences with custom wrapper * Fix props mistake * Fix illegal table structures * self-closing-tags fix * aria labels * Fixed trivial warnings and errors * @tanstack/svelte-table fix * upgrade to vite 6 * svelte-kit sync before running svelte-check * Remove on:clear which is actually on:removeAll and already handled by on:change * fix worker tags not displaying in Autoscaling * Try to fix svelte-kit sync not working during CI * remove warnings * Fix add flow page crashing * access worldStore before assignment fix * fix infinite recursions in App Editor * Replaced JSON.stringify with proper deepEqual * component mount api changed (no longer classes) * fix ci errors * Fix infinite loops in background runnable panel * factored effect on deep equal logic in onObjChange * fix "Add" not working in AgGrid Table * Replaced legacy component.$set api * Fix multiselect infinite value reaction * Fix flow input fields resetting when opening their edit tab * fix date input resetting when typing year * Remove !p-0 affecting subgrid dotted borders * fix missing debounceTemplate causing hundreds of updates * Fix AgGrid action refreshes and disppearing * resolve getItems generating random ids every rerun * fix cannot access items before init * fix sort lambda arguments being undefined * Revert "Remove !p-0 affecting subgrid dotted borders" This reverts commit c62809bb45d682a48376b071680645ed4e1c601b. * fix input not updating in decision tree editor * Update frontend/src/lib/components/schema/EditableSchemaWrapper.svelte Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Re-added padding affecting subgrid dotted borders (#5479) * remove !p-0 in preset components * removed extra padding on accordion tabs subgrid * Fix non-reactive SchemaForm * dirty fix for the oneOf bug * Fix warnings and update svelte-exmarkdown for svelte 5 * fix dnd not working * don't mount component like objects --------- Co-authored-by: Diego Imbert <diegoimbert@protonmail.com> Co-authored-by: Diego Imbert <70353967+diegoimbert@users.noreply.github.com> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
263 lines
6.4 KiB
Svelte
263 lines
6.4 KiB
Svelte
<script lang="ts">
|
|
import 'chartjs-adapter-date-fns'
|
|
import zoomPlugin from 'chartjs-plugin-zoom'
|
|
import {
|
|
Chart as ChartJS,
|
|
CategoryScale,
|
|
Legend,
|
|
LineElement,
|
|
LinearScale,
|
|
PointElement,
|
|
TimeScale,
|
|
Title,
|
|
Tooltip
|
|
} from 'chart.js'
|
|
import type { CompletedJob, ExtendedJobs } from '$lib/gen'
|
|
import { createEventDispatcher } from 'svelte'
|
|
import { getDbClockNow } from '$lib/forLater'
|
|
import { Line } from '$lib/components/chartjs-wrappers/chartJs'
|
|
|
|
export let extendedJobs: ExtendedJobs | undefined = undefined
|
|
export let maxIsNow: boolean = false
|
|
export let minTimeSet: string | undefined = undefined
|
|
export let maxTimeSet: string | undefined = undefined
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
function calculateTimeSeries(extendedJobs: ExtendedJobs): AggregatedInterval[] {
|
|
const timeline = new Map<number, { count: number; id_started: string[]; id_ended: string[] }>()
|
|
|
|
extendedJobs.jobs.forEach((j) => {
|
|
if (j.started_at != undefined) {
|
|
const startTime = new Date(j.started_at).getTime()
|
|
if (!timeline.has(startTime)) {
|
|
timeline.set(startTime, { count: 0, id_started: [], id_ended: [] })
|
|
}
|
|
const s = timeline.get(startTime)!
|
|
s.count += 1
|
|
s.id_started.push(j.id)
|
|
if (j.type === 'CompletedJob') {
|
|
const jc = j as CompletedJob
|
|
const endTime = startTime + jc.duration_ms
|
|
if (!timeline.has(endTime)) {
|
|
timeline.set(endTime, { count: 0, id_started: [], id_ended: [] })
|
|
}
|
|
const e = timeline.get(endTime)!
|
|
e.count -= 1
|
|
e.id_ended.push(j.id)
|
|
}
|
|
}
|
|
})
|
|
|
|
extendedJobs.obscured_jobs.forEach((j) => {
|
|
if (j.started_at != undefined) {
|
|
const startTime = new Date(j.started_at).getTime()
|
|
if (!timeline.has(startTime)) {
|
|
timeline.set(startTime, { count: 0, id_started: [], id_ended: [] })
|
|
}
|
|
const s = timeline.get(startTime)!
|
|
s.count += 1
|
|
s.id_started.push('unknoww')
|
|
if (j.duration_ms != undefined) {
|
|
const jc = j as CompletedJob
|
|
const endTime = startTime + jc.duration_ms
|
|
if (!timeline.has(endTime)) {
|
|
timeline.set(endTime, { count: 0, id_started: [], id_ended: [] })
|
|
}
|
|
const e = timeline.get(endTime)!
|
|
e.count -= 1
|
|
e.id_ended.push('unknown')
|
|
}
|
|
}
|
|
})
|
|
|
|
let count = 0
|
|
const result: AggregatedInterval[] = []
|
|
for (const [time, change] of [...timeline.entries()].sort(
|
|
([time1], [time2]) => time1 - time2
|
|
)) {
|
|
count += change.count
|
|
let msg = ''
|
|
msg += change.id_started.length != 0 ? `${change.id_started.join(',')} started` : ''
|
|
msg += change.id_started.length != 0 && change.id_ended.length != 0 ? '\n' : ''
|
|
msg += change.id_ended.length != 0 ? `${change.id_ended.join(',')} ended` : ''
|
|
result.push({ time: new Date(time), count, msg } as AggregatedInterval)
|
|
}
|
|
|
|
// Add points to continue the line towards the extremities
|
|
if (result.length > 0) {
|
|
let start_time = addSeconds(new Date(result[0].time), -1)
|
|
let start_count = 0
|
|
let end_count = result[result.length - 1].count
|
|
result.unshift({
|
|
time: start_time,
|
|
count: start_count
|
|
} as AggregatedInterval)
|
|
result.push({
|
|
time: new Date(),
|
|
count: end_count
|
|
} as AggregatedInterval)
|
|
}
|
|
|
|
return result
|
|
}
|
|
type AggregatedInterval = { time: Date; count: number; msg?: string }
|
|
|
|
let intervals: AggregatedInterval[] | undefined = undefined
|
|
$: intervals = extendedJobs ? calculateTimeSeries(extendedJobs) : undefined
|
|
|
|
ChartJS.register(
|
|
Title,
|
|
Tooltip,
|
|
Legend,
|
|
zoomPlugin,
|
|
LineElement,
|
|
CategoryScale,
|
|
LinearScale,
|
|
PointElement,
|
|
TimeScale
|
|
)
|
|
|
|
$: data = {
|
|
datasets: [
|
|
{
|
|
borderColor: '#4ade80',
|
|
backgroundColor: '#f8717100',
|
|
pointRadius: 0,
|
|
label: 'running',
|
|
showLine: true,
|
|
stepped: true,
|
|
data:
|
|
intervals?.map((job) => ({
|
|
x: job.time as any,
|
|
y: job.count,
|
|
id: job.msg
|
|
})) ?? []
|
|
}
|
|
]
|
|
}
|
|
|
|
const zoomOptions = {
|
|
pan: {
|
|
enabled: true,
|
|
modifierKey: 'ctrl' as 'ctrl',
|
|
onPanComplete: ({ chart }) => {
|
|
dispatch('zoom', {
|
|
min: addSeconds(new Date(chart.scales.x.min), -1),
|
|
max: addSeconds(new Date(chart.scales.x.max), 1)
|
|
})
|
|
}
|
|
},
|
|
zoom: {
|
|
drag: {
|
|
enabled: true
|
|
},
|
|
mode: 'x' as 'x',
|
|
onZoom: ({ chart }) => {
|
|
dispatch('zoom', {
|
|
min: addSeconds(new Date(chart.scales.x.min), -1),
|
|
max: addSeconds(new Date(chart.scales.x.max), 1)
|
|
})
|
|
}
|
|
}
|
|
}
|
|
let minTime = addSeconds(new Date(), -300)
|
|
let maxTime = getDbClockNow()
|
|
|
|
$: computeMinMaxTime(intervals, minTimeSet, maxTimeSet)
|
|
|
|
function minJobTime(intervals: AggregatedInterval[]): Date {
|
|
return intervals[0].time
|
|
}
|
|
|
|
function maxJobTime(intervals: AggregatedInterval[]): Date {
|
|
return intervals[intervals?.length - 1].time
|
|
}
|
|
function computeMinMaxTime(
|
|
intervals: AggregatedInterval[] | undefined,
|
|
minTimeSet: string | undefined,
|
|
maxTimeSet: string | undefined
|
|
) {
|
|
let minTimeSetDate = minTimeSet ? new Date(minTimeSet) : undefined
|
|
let maxTimeSetDate = maxTimeSet ? new Date(maxTimeSet) : undefined
|
|
if (minTimeSetDate && maxTimeSetDate) {
|
|
minTime = minTimeSetDate
|
|
maxTime = maxTimeSetDate
|
|
return
|
|
}
|
|
|
|
if (intervals == undefined || intervals?.length == 0) {
|
|
minTime = minTimeSetDate ?? addSeconds(new Date(), -300)
|
|
maxTime = maxTimeSetDate ?? getDbClockNow()
|
|
return
|
|
}
|
|
|
|
const maxJob = maxIsNow ? getDbClockNow() : maxJobTime(intervals)
|
|
const minJob = minJobTime(intervals)
|
|
|
|
const diff = (maxJob.getTime() - minJob.getTime()) / 20000
|
|
|
|
minTime = minTimeSetDate ?? addSeconds(minJob, -diff)
|
|
if (maxIsNow) {
|
|
maxTime = maxTimeSetDate ?? maxJob
|
|
} else {
|
|
maxTime = maxTimeSetDate ?? addSeconds(maxJob, diff)
|
|
}
|
|
}
|
|
|
|
function addSeconds(date: Date, seconds: number): Date {
|
|
date.setTime(date.getTime() + seconds * 1000)
|
|
return date
|
|
}
|
|
|
|
$: options = {
|
|
responsive: true,
|
|
maintainAspectRatio: false,
|
|
plugins: {
|
|
zoom: zoomOptions,
|
|
legend: {
|
|
display: false
|
|
},
|
|
tooltip: {
|
|
callbacks: {
|
|
footer: function (context) {
|
|
return context[context.length - 1].raw.id
|
|
}
|
|
}
|
|
}
|
|
},
|
|
scales: {
|
|
x: {
|
|
type: 'time',
|
|
grid: {
|
|
display: false
|
|
},
|
|
min: minTime,
|
|
max: maxTime
|
|
},
|
|
y: {
|
|
grid: {
|
|
display: false
|
|
},
|
|
title: {
|
|
display: true,
|
|
text: 'concurrent jobs'
|
|
},
|
|
beginAtZero: true,
|
|
ticks: {
|
|
stepSize: 1
|
|
}
|
|
}
|
|
},
|
|
animation: false,
|
|
interaction: {
|
|
intersect: false,
|
|
mode: 'index'
|
|
}
|
|
} as any
|
|
</script>
|
|
|
|
<div class="relative max-h-40">
|
|
<Line {data} {options} />
|
|
</div>
|