diff --git a/cmd/cc-backend/main.go b/cmd/cc-backend/main.go index 7cee8c1..6f4cd05 100644 --- a/cmd/cc-backend/main.go +++ b/cmd/cc-backend/main.go @@ -337,11 +337,13 @@ func main() { rw.Header().Add("Content-Type", "text/html; charset=utf-8") web.RenderTemplate(rw, "privacy.tmpl", &web.Page{Title: "Privacy", Build: buildInfo}) }) + r.NotFoundHandler = http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) { rw.WriteHeader(http.StatusNotFound) rw.Header().Add("Content-Type", "text/html; charset=utf-8") web.RenderTemplate(rw, "404.tmpl", &web.Page{Title: "Page not found", Build: buildInfo}) }) +- secured := r.PathPrefix("/").Subrouter() diff --git a/internal/routerConfig/routes.go b/internal/routerConfig/routes.go index 2bf89a0..2b57e89 100644 --- a/internal/routerConfig/routes.go +++ b/internal/routerConfig/routes.go @@ -35,15 +35,15 @@ type Route struct { var routes []Route = []Route{ {"/", "home.tmpl", "ClusterCockpit", false, setupHomeRoute}, {"/config", "config.tmpl", "Settings", false, func(i InfoType, r *http.Request) InfoType { return i }}, - {"/monitoring/jobs/", "monitoring/jobs.tmpl", "Jobs - ClusterCockpit", true, func(i InfoType, r *http.Request) InfoType { return i }}, - {"/monitoring/job/{id:[0-9]+}", "monitoring/job.tmpl", "Job - ClusterCockpit", false, setupJobRoute}, - {"/monitoring/users/", "monitoring/list.tmpl", "Users - ClusterCockpit", true, func(i InfoType, r *http.Request) InfoType { i["listType"] = "USER"; return i }}, - {"/monitoring/projects/", "monitoring/list.tmpl", "Projects - ClusterCockpit", true, func(i InfoType, r *http.Request) InfoType { i["listType"] = "PROJECT"; return i }}, - {"/monitoring/tags/", "monitoring/taglist.tmpl", "Tags - ClusterCockpit", false, setupTaglistRoute}, - {"/monitoring/user/{id}", "monitoring/user.tmpl", "User - ClusterCockpit", true, setupUserRoute}, - {"/monitoring/systems/{cluster}", "monitoring/systems.tmpl", "Cluster - ClusterCockpit", false, setupClusterRoute}, + // {"/monitoring/jobs/", "monitoring/jobs.tmpl", "Jobs - ClusterCockpit", true, func(i InfoType, r *http.Request) InfoType { return i }}, + // {"/monitoring/job/{id:[0-9]+}", "monitoring/job.tmpl", "Job - ClusterCockpit", false, setupJobRoute}, + // {"/monitoring/users/", "monitoring/list.tmpl", "Users - ClusterCockpit", true, func(i InfoType, r *http.Request) InfoType { i["listType"] = "USER"; return i }}, + // {"/monitoring/projects/", "monitoring/list.tmpl", "Projects - ClusterCockpit", true, func(i InfoType, r *http.Request) InfoType { i["listType"] = "PROJECT"; return i }}, + // {"/monitoring/tags/", "monitoring/taglist.tmpl", "Tags - ClusterCockpit", false, setupTaglistRoute}, + // {"/monitoring/user/{id}", "monitoring/user.tmpl", "User - ClusterCockpit", true, setupUserRoute}, + // {"/monitoring/systems/{cluster}", "monitoring/systems.tmpl", "Cluster - ClusterCockpit", false, setupClusterRoute}, {"/monitoring/node/{cluster}/{hostname}", "monitoring/node.tmpl", "Node - ClusterCockpit", false, setupNodeRoute}, - {"/monitoring/analysis/{cluster}", "monitoring/analysis.tmpl", "Analysis - ClusterCockpit", true, setupAnalysisRoute}, + // {"/monitoring/analysis/{cluster}", "monitoring/analysis.tmpl", "Analysis - ClusterCockpit", true, setupAnalysisRoute}, {"/monitoring/control/{cluster}", "monitoring/control.tmpl", "Status of - ClusterCockpit", false, setupClusterRoute}, {"/monitoring/partition/{cluster}", "partitions/systems.tmpl", "Cluster - ClusterCockpit", false, setupClusterRoute}, {"/monitoring/history/", "monitoring/history.tmpl", "Cluster - ClusterCockpit", false, setupClusterRoute}, diff --git a/web/frontend/rollup.config.mjs b/web/frontend/rollup.config.mjs index 5cbb388..db93b6d 100644 --- a/web/frontend/rollup.config.mjs +++ b/web/frontend/rollup.config.mjs @@ -6,8 +6,8 @@ import terser from '@rollup/plugin-terser'; import css from 'rollup-plugin-css-only'; import livereload from 'rollup-plugin-livereload'; -const production = !process.env.ROLLUP_WATCH; -// const production = false +// const production = !process.env.ROLLUP_WATCH; +const production = false const plugins = [ svelte({ @@ -61,13 +61,14 @@ const entrypoint = (name, path) => ({ export default [ entrypoint('header', 'src/header.entrypoint.js'), - entrypoint('jobs', 'src/jobs.entrypoint.js'), - entrypoint('user', 'src/user.entrypoint.js'), - entrypoint('list', 'src/list.entrypoint.js'), - entrypoint('job', 'src/job.entrypoint.js'), - entrypoint('systems', 'src/systems.entrypoint.js'), + entrypoint('home', 'src/home.entrypoint.js'), + // entrypoint('jobs', 'src/jobs.entrypoint.js'), + // entrypoint('user', 'src/user.entrypoint.js'), + // entrypoint('list', 'src/list.entrypoint.js'), + // entrypoint('job', 'src/job.entrypoint.js'), + // entrypoint('systems', 'src/systems.entrypoint.js'), entrypoint('node', 'src/node.entrypoint.js'), - entrypoint('analysis', 'src/analysis.entrypoint.js'), + // entrypoint('analysis', 'src/analysis.entrypoint.js'), entrypoint('control', 'src/control.entrypoint.js'), entrypoint('config', 'src/config.entrypoint.js'), entrypoint('partitions', 'src/partitions.entrypoint.js'), diff --git a/web/frontend/src/Analysis.root.svelte b/web/frontend/src/Analysis.root.svelte deleted file mode 100644 index 163d511..0000000 --- a/web/frontend/src/Analysis.root.svelte +++ /dev/null @@ -1,440 +0,0 @@ - - - - {#if $initq.fetching || $statsQuery.fetching || $footprintsQuery.fetching} - - - - {/if} - - {#if $initq.error} - {$initq.error.message} - {:else if cluster} - mc.name)} - bind:metricsInHistograms={metricsInHistograms} - bind:metricsInScatterplots={metricsInScatterplots} /> - {/if} - - - { - jobFilters = detail.filters; - }} /> - - - -
-{#if $statsQuery.error} - - - {$statsQuery.error.message} - - -{:else if $statsQuery.data} - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Total Jobs{$statsQuery.data.stats[0].totalJobs}
Short Jobs{$statsQuery.data.stats[0].shortJobs}
Total Walltime{$statsQuery.data.stats[0].totalWalltime}
Total Node Hours{$statsQuery.data.stats[0].totalNodeHours}
Total Core Hours{$statsQuery.data.stats[0].totalCoreHours}
Total Accelerator Hours{$statsQuery.data.stats[0].totalAccHours}
- - -
-
Top - -
- {#key $topQuery.data} - {#if $topQuery.fetching} - - {:else if $topQuery.error} - {$topQuery.error.message} - {:else} - t[sortSelection.key])} - entities={$topQuery.data.topList.map((t) => t.id)} - /> - {/if} - {/key} -
- - - {#key $topQuery.data} - {#if $topQuery.fetching} - - {:else if $topQuery.error} - {$topQuery.error.message} - {:else} - - - - - - - {#each $topQuery.data.topList as te, i} - - - {#if groupSelection.key == 'user'} - - {:else} - - {/if} - - - {/each} -
Legend{groupSelection.label} - -
{te.id}{te.id}{te[sortSelection.key]}
- {/if} - {/key} - -
- - - {#if $rooflineQuery.fetching} - - {:else if $rooflineQuery.error} - {$rooflineQuery.error.message} - {:else if $rooflineQuery.data && cluster} -
- {#key $rooflineQuery.data} - - {/key} -
- {/if} - - -
- {#key $statsQuery.data.stats[0].histDuration} - - {/key} -
- - -
- {#key $statsQuery.data.stats[0].histNumCores} - - {/key} -
- -
-{/if} - -
- -{#if $footprintsQuery.error} - - - {$footprintsQuery.error.message} - - -{:else if $footprintsQuery.data && $initq.data} - - - - These histograms show the distribution of the averages of all jobs matching the filters. Each job/average is weighted by its node hours by default - (Accelerator hours for native accelerator scope metrics, coreHours for native core scope metrics). - Note that some metrics could be disabled for specific subclusters as per metricConfig and thus could affect shown average values. - -
- -
- - - ({ metric, ...binsFromFootprint( - $footprintsQuery.data.footprints.timeWeights, - metricConfig(cluster.name, metric)?.scope, - $footprintsQuery.data.footprints.metrics.find(f => f.metric == metric).data, numBins) }))} - itemsPerRow={ccconfig.plot_view_plotsPerRow}> - - - - - -
- - - - Each circle represents one job. The size of a circle is proportional to its node hours. Darker circles mean multiple jobs have the same averages for the respective metrics. - Note that some metrics could be disabled for specific subclusters as per metricConfig and thus could affect shown average values. - -
- -
- - - ({ - m1, f1: $footprintsQuery.data.footprints.metrics.find(f => f.metric == m1).data, - m2, f2: $footprintsQuery.data.footprints.metrics.find(f => f.metric == m2).data }))} - itemsPerRow={ccconfig.plot_view_plotsPerRow}> - - - - - -{/if} - - diff --git a/web/frontend/src/History.svelte b/web/frontend/src/History.svelte index 63131e1..3f8c909 100644 --- a/web/frontend/src/History.svelte +++ b/web/frontend/src/History.svelte @@ -75,7 +75,7 @@ -
+ (isOpen = !isOpen)}> {selectedPages} @@ -88,7 +88,7 @@ {/each} -
+ diff --git a/web/frontend/src/Home.root.svelte b/web/frontend/src/Home.root.svelte new file mode 100644 index 0000000..bbed5a9 --- /dev/null +++ b/web/frontend/src/Home.root.svelte @@ -0,0 +1,5 @@ + + +

Home Page

diff --git a/web/frontend/src/Job.root.svelte b/web/frontend/src/Job.root.svelte deleted file mode 100644 index 42cfee8..0000000 --- a/web/frontend/src/Job.root.svelte +++ /dev/null @@ -1,468 +0,0 @@ - - - - - {#if $initq.error} - {$initq.error.message} - {:else if $initq.data} - - {:else} - - {/if} - - {#if $jobMetrics.data} - {#key $jobMetrics.data} - - - - {/key} - {/if} - {#if $jobMetrics.data && $initq.data} - {#if $initq.data.job.concurrentJobs != null && $initq.data.job.concurrentJobs.items.length != 0} - {#if authlevel > roles.manager} - -
- Concurrent Jobs -
-
    -
  • - See All -
  • - {#each $initq.data.job.concurrentJobs.items as pjob, index} -
  • - {pjob.jobId} -
  • - {/each} -
- - {:else} - -
- {$initq.data.job.concurrentJobs.items.length} Concurrent - Jobs -
-

- Number of shared jobs on the same node with overlapping - runtimes. -

- - {/if} - {/if} - - - - - c.name == $initq.data.job.cluster) - .subClusters.find( - (sc) => sc.name == $initq.data.job.subCluster - )} - data={ - transformDataForRoofline ( - $jobMetrics.data.jobMetrics.find((m) => m.name == "flops_any" && m.scope == "node").metric, - $jobMetrics.data.jobMetrics.find((m) => m.name == "mem_bw" && m.scope == "node").metric - ) - } - /> - - {:else} - - - {/if} -
- - - {#if $initq.data} - - {/if} - - - {#if $initq.data} - - {/if} - - - - - - {#if $jobMetrics.error} - {#if $initq.data.job.monitoringStatus == 0 || $initq.data.job.monitoringStatus == 2} - Not monitored or archiving failed -
- {/if} - {$jobMetrics.error.message} - {:else if $jobMetrics.fetching} - - {:else if $jobMetrics.data && $initq.data} - - {#if item.data} - - statsTable.moreLoaded(detail)} - job={$initq.data.job} - metricName={item.metric} - rawData={item.data.map((x) => x.metric)} - scopes={item.data.map((x) => x.scope)} - {width} - isShared={$initq.data.job.exclusive != 1} - resources={$initq.data.job.resources} - /> - {:else} - No dataset returned for {item.metric} - {/if} - - {/if} - -
- - - {#if $initq.data} - - {#if somethingMissing} - -
- - - Missing Metrics/Reseources - - - {#if missingMetrics.length > 0} -

- No data at all is available for the - metrics: {missingMetrics.join(", ")} -

- {/if} - {#if missingHosts.length > 0} -

- Some metrics are missing for the - following hosts: -

-
    - {#each missingHosts as missing} -
  • - {missing.hostname}: {missing.metrics.join( - ", " - )} -
  • - {/each} -
- {/if} -
-
-
-
- {/if} - - {#if $jobMetrics.data} - {#key $jobMetrics.data} - - {/key} - {/if} - - -
- {#if $initq.data.job.metaData?.jobScript} -
{$initq.data.job.metaData?.jobScript}
- {:else} - No job script available - {/if} -
-
- -
- {#if $initq.data.job.metaData?.slurmInfo} -
{$initq.data.job.metaData?.slurmInfo}
- {:else} - No additional slurm information available - {/if} -
-
-
- {/if} - -
- -{#if $initq.data} - -{/if} - - diff --git a/web/frontend/src/JobFootprint.svelte b/web/frontend/src/JobFootprint.svelte deleted file mode 100644 index e860e04..0000000 --- a/web/frontend/src/JobFootprint.svelte +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - {#if view === 'job'} - - - Core Metrics Footprint - - - {/if} - - {#each footprintData as fpd, index} -
-
 {fpd.name}
-
-
- - {#if fpd.impact === 3 || fpd.impact === -1} - - {:else if fpd.impact === 2} - - {/if} - - {#if fpd.impact === 3} - - {:else if fpd.impact === 2} - - {:else if fpd.impact === 1} - - {:else if fpd.impact === 0} - - {:else if fpd.impact === -1} - - {/if} -
-
- - {fpd.avg} / {fpd.max} {fpd.unit}   -
-
- {fpd.message} -
-
- -
- {/each} - {#if job?.metaData?.message} -
- {@html job.metaData.message} - {/if} -
-
- - diff --git a/web/frontend/src/Jobs.root.svelte b/web/frontend/src/Jobs.root.svelte deleted file mode 100644 index d7cbf37..0000000 --- a/web/frontend/src/Jobs.root.svelte +++ /dev/null @@ -1,102 +0,0 @@ - - - - {#if $initq.fetching} - - - - {:else if $initq.error} - - {$initq.error.message} - - {/if} - - - - - - - - - { - selectedCluster = detail.filters[0]?.cluster ? detail.filters[0].cluster.eq : null - jobList.update(detail.filters) - } - } /> - - - - filterComponent.update(detail)}/> - - - jobList.refresh()} /> - - -
- - - - - - - - - diff --git a/web/frontend/src/List.root.svelte b/web/frontend/src/List.root.svelte deleted file mode 100644 index c004736..0000000 --- a/web/frontend/src/List.root.svelte +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - { - jobFilters = detail.filters; - }} - /> - - - - - - - {#if type == "USER"} - - {/if} - - - - - - - - {#if $stats.fetching} - - - - {:else if $stats.error} - - - - {:else if $stats.data} - {#each sort($stats.data.rows, sorting, nameFilter) as row (row.id)} - - - {#if type == "USER"} - - {/if} - - - - - - {:else} - - - - {/each} - {/if} - -
- {({ - USER: "Username", - PROJECT: "Project Name", - })[type]} - - - Name - - - Total Jobs - - - Total Walltime - - - Total Core Hours - - - Total Accelerator Hours - -
{$stats.error.message}
- {#if type == "USER"} - {scrambleNames ? scramble(row.id) : row.id} - {:else if type == "PROJECT"} - {scrambleNames ? scramble(row.id) : row.id} - {:else} - {row.id} - {/if} - {scrambleNames ? scramble(row?.name?row.name:"-") : row?.name?row.name:"-"}{row.totalJobs}{row.totalWalltime}{row.totalCoreHours}{row.totalAccHours}
No {type.toLowerCase()}s/jobs found
diff --git a/web/frontend/src/Systems.root.svelte b/web/frontend/src/Systems.root.svelte deleted file mode 100644 index 5769a56..0000000 --- a/web/frontend/src/Systems.root.svelte +++ /dev/null @@ -1,160 +0,0 @@ - - - - {#if $initq.error} - {$initq.error.message} - {:else if $initq.fetching} - - {:else} - - { - const diff = Date.now() - to - from = new Date(from.getTime() + diff) - to = new Date(to.getTime() + diff) - }} /> - - - - - - - - Metric - - - - - - - Find Node - - - - {/if} - -
- - - {#if $nodesQuery.error} - {$nodesQuery.error.message} - {:else if $nodesQuery.fetching || $initq.fetching} - - {:else} - h.host.includes(hostnameFilter) && h.metrics.some(m => m.name == selectedMetric && m.scope == 'node')) - .map(h => ({ - host: h.host, - subCluster: h.subCluster, - data: h.metrics.find(m => m.name == selectedMetric && m.scope == 'node'), - disabled: checkMetricDisabled(selectedMetric, cluster, h.subCluster) - })) - .sort((a, b) => a.host.localeCompare(b.host)) - }> - -

{item.host} ({item.subCluster})

- {#if item.disabled === false && item.data} - c.name == cluster)} - subCluster={item.subCluster} - resources={[{hostname: item.host}]} - forNode={true}/> - {:else if item.disabled === true && item.data} - Metric disabled for subcluster {selectedMetric}:{item.subCluster} - {:else} - No dataset returned for {selectedMetric} - {/if} -
- {/if} - -
- diff --git a/web/frontend/src/User.root.svelte b/web/frontend/src/User.root.svelte deleted file mode 100644 index f368851..0000000 --- a/web/frontend/src/User.root.svelte +++ /dev/null @@ -1,237 +0,0 @@ - - - - {#if $initq.fetching} - - - - {:else if $initq.error} - - {$initq.error.message} - - {/if} - - - - - - - - - - { - jobFilters = [...detail.filters, { user: { eq: user.username } }] - selectedCluster = jobFilters[0]?.cluster ? jobFilters[0].cluster.eq : null - jobList.update(jobFilters) - }} /> - - - jobList.refresh()} /> - - -
- - {#if $stats.error} - - {$stats.error.message} - - {:else if !$stats.data} - - - - {:else} - - - - - - - - {#if user.name} - - - - - {/if} - {#if user.email} - - - - - {/if} - - - - - - - - - - - - - - - - - -
Username{scrambleNames ? scramble(user.username) : user.username}
Name{scrambleNames ? scramble(user.name) : user.name}
Email{user.email}
Total Jobs{$stats.data.jobsStatistics[0].totalJobs}
Short Jobs{$stats.data.jobsStatistics[0].shortJobs}
Total Walltime{$stats.data.jobsStatistics[0].totalWalltime}
Total Core Hours{$stats.data.jobsStatistics[0].totalCoreHours}
- -
- {#key $stats.data.jobsStatistics[0].histDuration} - - {/key} -
-
- {#key $stats.data.jobsStatistics[0].histNumNodes} - - {/key} -
- {/if} -
-{#if metricsInHistograms} - - {#if $stats.error} - - {$stats.error.message} - - {:else if !$stats.data} - - - - {:else} - - {#key $stats.data.jobsStatistics[0].histMetrics} - - - - - {/key} - - {/if} - -{/if} -
- - - - - - - - - - - diff --git a/web/frontend/src/analysis.entrypoint.js b/web/frontend/src/analysis.entrypoint.js deleted file mode 100644 index d889144..0000000 --- a/web/frontend/src/analysis.entrypoint.js +++ /dev/null @@ -1,14 +0,0 @@ -import {} from './header.entrypoint.js' -import Analysis from './Analysis.root.svelte' - -filterPresets.cluster = cluster - -new Analysis({ - target: document.getElementById('svelte-app'), - props: { - filterPresets: filterPresets - }, - context: new Map([ - ['cc-config', clusterCockpitConfig] - ]) -}) diff --git a/web/frontend/src/user.entrypoint.js b/web/frontend/src/home.entrypoint.js similarity index 63% rename from web/frontend/src/user.entrypoint.js rename to web/frontend/src/home.entrypoint.js index 0bff82a..d9eef10 100644 --- a/web/frontend/src/user.entrypoint.js +++ b/web/frontend/src/home.entrypoint.js @@ -1,11 +1,10 @@ import {} from './header.entrypoint.js' -import User from './User.root.svelte' +import Home from './Home.root.svelte' -new User({ +new Home({ target: document.getElementById('svelte-app'), props: { - filterPresets: filterPresets, - user: userInfos + isAdmin: isAdmin }, context: new Map([ ['cc-config', clusterCockpitConfig] diff --git a/web/frontend/src/job.entrypoint.js b/web/frontend/src/job.entrypoint.js deleted file mode 100644 index 4641e92..0000000 --- a/web/frontend/src/job.entrypoint.js +++ /dev/null @@ -1,14 +0,0 @@ -import {} from './header.entrypoint.js' -import Job from './Job.root.svelte' - -new Job({ - target: document.getElementById('svelte-app'), - props: { - dbid: jobInfos.id, - authlevel: authlevel, - roles: roles - }, - context: new Map([ - ['cc-config', clusterCockpitConfig] - ]) -}) diff --git a/web/frontend/src/jobs.entrypoint.js b/web/frontend/src/jobs.entrypoint.js deleted file mode 100644 index f976b4a..0000000 --- a/web/frontend/src/jobs.entrypoint.js +++ /dev/null @@ -1,14 +0,0 @@ -import {} from './header.entrypoint.js' -import Jobs from './Jobs.root.svelte' - -new Jobs({ - target: document.getElementById('svelte-app'), - props: { - filterPresets: filterPresets, - authlevel: authlevel, - roles: roles - }, - context: new Map([ - ['cc-config', clusterCockpitConfig] - ]) -}) diff --git a/web/frontend/src/list.entrypoint.js b/web/frontend/src/list.entrypoint.js deleted file mode 100644 index 21c8f5d..0000000 --- a/web/frontend/src/list.entrypoint.js +++ /dev/null @@ -1,13 +0,0 @@ -import {} from './header.entrypoint.js' -import List from './List.root.svelte' - -new List({ - target: document.getElementById('svelte-app'), - props: { - filterPresets: filterPresets, - type: listType, - }, - context: new Map([ - ['cc-config', clusterCockpitConfig] - ]) -}) diff --git a/web/frontend/src/systems.entrypoint.js b/web/frontend/src/systems.entrypoint.js deleted file mode 100644 index 846bd36..0000000 --- a/web/frontend/src/systems.entrypoint.js +++ /dev/null @@ -1,14 +0,0 @@ -import {} from './header.entrypoint.js' -import Systems from './Systems.root.svelte' - -new Systems({ - target: document.getElementById('svelte-app'), - props: { - cluster: infos.cluster, - from: infos.from, - to: infos.to - }, - context: new Map([ - ['cc-config', clusterCockpitConfig] - ]) -}) diff --git a/web/templates/home.tmpl b/web/templates/home.tmpl index 0705d56..95efce6 100644 --- a/web/templates/home.tmpl +++ b/web/templates/home.tmpl @@ -1,57 +1,15 @@ {{define "content"}} -{{if .Infos.message }} -
-
- -
-
+
{{end}} -
-
-

Clusters

- - - - - - - {{if .User.HasRole .Roles.admin}} - - - {{end}} - - - - {{if .User.HasRole .Roles.admin}} - {{range .Infos.clusters}} - - - - - - - - {{end}} - {{else}} - {{range .Infos.clusters}} - - - - - - {{end}} - {{end}} - -
NameRunning JobsTotal JobsStatus ViewSystem View
{{.ID}}{{.RunningJobs}} jobs{{.TotalJobs}} jobsStatus ViewSystem View
{{.ID}}{{.RunningJobs}} jobs{{.TotalJobs}} jobs
-
-
+ +{{define "stylesheets"}} + {{end}} +{{define "javascript"}} + + +{{end}} \ No newline at end of file diff --git a/web/templates/monitoring/analysis.tmpl b/web/templates/monitoring/analysis.tmpl deleted file mode 100644 index af34f8e..0000000 --- a/web/templates/monitoring/analysis.tmpl +++ /dev/null @@ -1,15 +0,0 @@ -{{define "content"}} -
-{{end}} - -{{define "stylesheets"}} - -{{end}} -{{define "javascript"}} - - -{{end}} diff --git a/web/templates/monitoring/job.tmpl b/web/templates/monitoring/job.tmpl deleted file mode 100644 index 1e3b09c..0000000 --- a/web/templates/monitoring/job.tmpl +++ /dev/null @@ -1,20 +0,0 @@ -{{define "content"}} -
-{{end}} - -{{define "stylesheets"}} - -{{end}} -{{define "javascript"}} - - -{{end}} diff --git a/web/templates/monitoring/jobs.tmpl b/web/templates/monitoring/jobs.tmpl deleted file mode 100644 index 6ea05d5..0000000 --- a/web/templates/monitoring/jobs.tmpl +++ /dev/null @@ -1,17 +0,0 @@ -{{define "content"}} -
-{{end}} - -{{define "stylesheets"}} - -{{end}} - -{{define "javascript"}} - - -{{end}} diff --git a/web/templates/monitoring/list.tmpl b/web/templates/monitoring/list.tmpl deleted file mode 100644 index 0c1994e..0000000 --- a/web/templates/monitoring/list.tmpl +++ /dev/null @@ -1,15 +0,0 @@ -{{define "content"}} -
-{{end}} - -{{define "stylesheets"}} - -{{end}} -{{define "javascript"}} - - -{{end}} diff --git a/web/templates/monitoring/systems.tmpl b/web/templates/monitoring/systems.tmpl deleted file mode 100644 index 27bbf64..0000000 --- a/web/templates/monitoring/systems.tmpl +++ /dev/null @@ -1,14 +0,0 @@ -{{define "content"}} -
-{{end}} - -{{define "stylesheets"}} - -{{end}} -{{define "javascript"}} - - -{{end}} diff --git a/web/templates/monitoring/taglist.tmpl b/web/templates/monitoring/taglist.tmpl deleted file mode 100644 index 6e487dd..0000000 --- a/web/templates/monitoring/taglist.tmpl +++ /dev/null @@ -1,17 +0,0 @@ -{{define "content"}} -
-
-
- {{ range $tagType, $tagList := .Infos.tagmap }} -
- {{ $tagType }} -
- {{ range $tagList }} - - {{ .name }} {{ .count }} - {{end}} - {{end}} -
-
-
-{{end}} diff --git a/web/templates/monitoring/user.tmpl b/web/templates/monitoring/user.tmpl deleted file mode 100644 index 693ae61..0000000 --- a/web/templates/monitoring/user.tmpl +++ /dev/null @@ -1,15 +0,0 @@ -{{define "content"}} -
-{{end}} - -{{define "stylesheets"}} - -{{end}} -{{define "javascript"}} - - -{{end}}