From ad998910a0b2bd27124e5073462fba8baef89896 Mon Sep 17 00:00:00 2001 From: sanjay7178 Date: Tue, 20 Feb 2024 03:03:07 +0530 Subject: [PATCH] Add FileStashUrl type and Query methods*** ***Add Control component and update Header component*** ***Add control.tmpl template*** ***Update rollup.config.mjs*** ***Update routes.go*** ***Add VerticalTab and LinuxUser components --- api/schema.graphqls | 10 + internal/routerConfig/routes.go | 2 +- web/frontend/rollup.config.mjs | 4 +- web/frontend/src/Control.root.svelte | 381 +++++++++ web/frontend/src/Header.svelte | 7 +- web/frontend/src/NavbarLinks.svelte | 75 +- web/frontend/src/Partitions.root.svelte | 194 +++-- web/frontend/src/Status.root.svelte | 725 ------------------ ...us.entrypoint.js => control.entrypoint.js} | 2 +- .../src/partition/ClusterMachine.svelte | 70 ++ web/frontend/src/partition/LinuxUser.svelte | 59 ++ web/frontend/src/partition/VerticalTab.svelte | 50 +- .../monitoring/{status.tmpl => control.tmpl} | 4 +- 13 files changed, 684 insertions(+), 899 deletions(-) create mode 100644 web/frontend/src/Control.root.svelte delete mode 100644 web/frontend/src/Status.root.svelte rename web/frontend/src/{status.entrypoint.js => control.entrypoint.js} (84%) create mode 100644 web/frontend/src/partition/ClusterMachine.svelte create mode 100644 web/frontend/src/partition/LinuxUser.svelte rename web/templates/monitoring/{status.tmpl => control.tmpl} (70%) diff --git a/api/schema.graphqls b/api/schema.graphqls index aa6aea2..bca3cc7 100644 --- a/api/schema.graphqls +++ b/api/schema.graphqls @@ -328,3 +328,13 @@ input PageRequest { itemsPerPage: Int! page: Int! } + +type FileStashUrl { + id: ID! + url: String! +} + +type Query { + getFileStashUrl(id: ID!): FileStashUrl + getAllFileStashUrls: [FileStashUrl] +} \ No newline at end of file diff --git a/internal/routerConfig/routes.go b/internal/routerConfig/routes.go index ac70794..2bf89a0 100644 --- a/internal/routerConfig/routes.go +++ b/internal/routerConfig/routes.go @@ -44,7 +44,7 @@ var routes []Route = []Route{ {"/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/status/{cluster}", "monitoring/status.tmpl", "Status of - ClusterCockpit", false, setupClusterRoute}, + {"/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 46c1357..4778e7a 100644 --- a/web/frontend/rollup.config.mjs +++ b/web/frontend/rollup.config.mjs @@ -52,7 +52,7 @@ const entrypoint = (name, path) => ({ // we'll extract any component CSS out into // a separate file - better for performance css({ output: `${name}.css` }), - !production && livereload('public') + livereload('public') ], watch: { clearScreen: false @@ -68,7 +68,7 @@ export default [ entrypoint('systems', 'src/systems.entrypoint.js'), entrypoint('node', 'src/node.entrypoint.js'), entrypoint('analysis', 'src/analysis.entrypoint.js'), - entrypoint('status', 'src/status.entrypoint.js'), + entrypoint('control', 'src/control.entrypoint.js'), entrypoint('config', 'src/config.entrypoint.js'), entrypoint('partitions', 'src/partitions.entrypoint.js'), entrypoint('history', 'src/history.entrypoint.js') diff --git a/web/frontend/src/Control.root.svelte b/web/frontend/src/Control.root.svelte new file mode 100644 index 0000000..102dc58 --- /dev/null +++ b/web/frontend/src/Control.root.svelte @@ -0,0 +1,381 @@ + + + + + + +

Current utilization of cluster "{cluster}"

+ + + {#if $initq.fetching || $mainQuery.fetching} + + {:else if $initq.error} + {$initq.error.message} + {:else} + + {/if} + + + + + + { + from = new Date(Date.now() - 5 * 60 * 1000); + to = new Date(Date.now()); + }} + /> + +
+{#if $mainQuery.error} + + + {$mainQuery.error.message} + + +{/if} + +
+ + \ No newline at end of file diff --git a/web/frontend/src/Header.svelte b/web/frontend/src/Header.svelte index 28aca3d..5b05bb8 100644 --- a/web/frontend/src/Header.svelte +++ b/web/frontend/src/Header.svelte @@ -89,10 +89,11 @@ menu: "Groups", }, { - title: "Status", + title: "Control", requiredRole: roles.admin, - href: "/monitoring/status/", - icon: "cpu", + href: "/monitoring/control/", + // icontype : "lucide", + icon: "folder-symlink-fill", perCluster: true, menu: "Stats", }, diff --git a/web/frontend/src/NavbarLinks.svelte b/web/frontend/src/NavbarLinks.svelte index 6861da5..b02d875 100644 --- a/web/frontend/src/NavbarLinks.svelte +++ b/web/frontend/src/NavbarLinks.svelte @@ -1,39 +1,48 @@ {#each links as item} - {#if !item.perCluster} - {item.title} - {:else} - - - - {item.title} - - - {#each clusters as cluster} - - {cluster.name} - - {/each} - - - {/if} + {#if !item.perCluster} + {item.title} + {:else} + + + {#if item.icontype === "lucide"} + + + + {:else} + + {/if} + {item.title} + + + {#each clusters as cluster} + + {cluster.name} + + {/each} + + + {/if} {/each} diff --git a/web/frontend/src/Partitions.root.svelte b/web/frontend/src/Partitions.root.svelte index 6da0db2..b979d72 100644 --- a/web/frontend/src/Partitions.root.svelte +++ b/web/frontend/src/Partitions.root.svelte @@ -27,7 +27,7 @@ import VerticalTab from "./partition/VerticalTab.svelte"; - export let cluster; + // export let cluster; export let from = null; export let to = null; @@ -42,96 +42,96 @@ const clusters = getContext("clusters"); console.log(clusters); const ccconfig = getContext("cc-config"); - const metricConfig = getContext("metrics"); + // const metricConfig = getContext("metrics"); let plotHeight = 300; let hostnameFilter = ""; let selectedMetric = ccconfig.system_view_selectedMetric; - const client = getContextClient(); - $: nodesQuery = queryStore({ - client: client, - query: gql` - query ( - $cluster: String! - $metrics: [String!] - $from: Time! - $to: Time! - ) { - nodeMetrics( - cluster: $cluster - metrics: $metrics - from: $from - to: $to - ) { - host - subCluster - metrics { - name - scope - metric { - timestep - unit { - base - prefix - } - series { - statistics { - min - avg - max - } - data - } - } - } - } - } - `, - variables: { - cluster: cluster, - metrics: [selectedMetric], - from: from.toISOString(), - to: to.toISOString(), - }, - }); + // const client = getContextClient(); + // $: nodesQuery = queryStore({ + // client: client, + // query: gql` + // query ( + // $cluster: String! + // $metrics: [String!] + // $from: Time! + // $to: Time! + // ) { + // nodeMetrics( + // cluster: $cluster + // metrics: $metrics + // from: $from + // to: $to + // ) { + // host + // subCluster + // metrics { + // name + // scope + // metric { + // timestep + // unit { + // base + // prefix + // } + // series { + // statistics { + // min + // avg + // max + // } + // data + // } + // } + // } + // } + // } + // `, + // variables: { + // cluster: cluster, + // metrics: [selectedMetric], + // from: from.toISOString(), + // to: to.toISOString(), + // }, + // }); - let metricUnits = {}; - $: if ($nodesQuery.data) { - let thisCluster = clusters.find((c) => c.name == cluster); - if (thisCluster) { - for (let metric of thisCluster.metricConfig) { - if (metric.unit.prefix || metric.unit.base) { - metricUnits[metric.name] = - "(" + - (metric.unit.prefix ? metric.unit.prefix : "") + - (metric.unit.base ? metric.unit.base : "") + - ")"; - } else { - // If no unit defined: Omit Unit Display - metricUnits[metric.name] = ""; - } - } - } - } + // let metricUnits = {}; + // $: if ($nodesQuery.data) { + // let thisCluster = clusters.find((c) => c.name == cluster); + // if (thisCluster) { + // for (let metric of thisCluster.metricConfig) { + // if (metric.unit.prefix || metric.unit.base) { + // metricUnits[metric.name] = + // "(" + + // (metric.unit.prefix ? metric.unit.prefix : "") + + // (metric.unit.base ? metric.unit.base : "") + + // ")"; + // } else { + // // If no unit defined: Omit Unit Display + // metricUnits[metric.name] = ""; + // } + // } + // } + // } - let notifications = [ - { - type: "success", - message: "This is a success notification!", - }, - { - type: "error", - message: "An error occurred.", - }, - { - type: "info", - message: "Just a friendly reminder.", - }, - ]; + // let notifications = [ + // { + // type: "success", + // message: "This is a success notification!", + // }, + // { + // type: "error", + // message: "An error occurred.", + // }, + // { + // type: "info", + // message: "Just a friendly reminder.", + // }, + // ]; - + @@ -187,36 +187,14 @@
- - - + - Partition Configuration + Host Cluster Configuration - Create and manage LVM partitions + diff --git a/web/frontend/src/Status.root.svelte b/web/frontend/src/Status.root.svelte deleted file mode 100644 index d0d7ba1..0000000 --- a/web/frontend/src/Status.root.svelte +++ /dev/null @@ -1,725 +0,0 @@ - - - - - - -

Current utilization of cluster "{cluster}"

- - - {#if $initq.fetching || $mainQuery.fetching} - - {:else if $initq.error} - {$initq.error.message} - {:else} - - {/if} - - - - - - { - from = new Date(Date.now() - 5 * 60 * 1000); - to = new Date(Date.now()); - }} - /> - -
-{#if $mainQuery.error} - - - {$mainQuery.error.message} - - -{/if} - -
- - - -{#if $initq.data && $mainQuery.data} - {#each $initq.data.clusters.find((c) => c.name == cluster).subClusters as subCluster, i} - - - - - SubCluster "{subCluster.name}" - - - - - - - - - - - - - - - - - - -
Allocated Nodes
- -
{allocatedNodes[subCluster.name]} / {subCluster.numberOfNodes} - Nodes
Flop Rate (Any)
- -
- {scaleNumbers( - flopRate[subCluster.name], - subCluster.flopRateSimd.value * - subCluster.numberOfNodes, - flopRateUnitPrefix[subCluster.name] - )}{flopRateUnitBase[subCluster.name]} [Max] -
MemBw Rate
- -
- {scaleNumbers( - memBwRate[subCluster.name], - subCluster.memoryBandwidth.value * - subCluster.numberOfNodes, - memBwRateUnitPrefix[subCluster.name] - )}{memBwRateUnitBase[subCluster.name]} [Max] -
-
-
- - -
- {#key $mainQuery.data.nodeMetrics} - data.subCluster == subCluster.name - ) - ) - } - /> - {/key} -
- -
- {/each} - -
- - - - - -
-

- Top Users on {cluster.charAt(0).toUpperCase() + - cluster.slice(1)} -

- {#key $topUserQuery.data} - {#if $topUserQuery.fetching} - - {:else if $topUserQuery.error} - {$topUserQuery.error.message} - {:else} - tu[topUserSelection.key] - )} - entities={$topUserQuery.data.topUser.map( - (tu) => tu.id - )} - /> - {/if} - {/key} -
- - - {#key $topUserQuery.data} - {#if $topUserQuery.fetching} - - {:else if $topUserQuery.error} - {$topUserQuery.error.message} - {:else} - - - - - - - {#each $topUserQuery.data.topUser as tu, i} - - - - - - {/each} -
LegendUser NameNumber of - -
{tu.id}{tu[topUserSelection.key]}
- {/if} - {/key} - - -

- Top Projects on {cluster.charAt(0).toUpperCase() + - cluster.slice(1)} -

- {#key $topProjectQuery.data} - {#if $topProjectQuery.fetching} - - {:else if $topProjectQuery.error} - {$topProjectQuery.error.message} - {:else} - tp[topProjectSelection.key] - )} - entities={$topProjectQuery.data.topProjects.map( - (tp) => tp.id - )} - /> - {/if} - {/key} - - - {#key $topProjectQuery.data} - {#if $topProjectQuery.fetching} - - {:else if $topProjectQuery.error} - {$topProjectQuery.error.message} - {:else} - - - - - - - {#each $topProjectQuery.data.topProjects as tp, i} - - - - - - {/each} -
LegendProject CodeNumber of - -
{tp.id}{tp[topProjectSelection.key]}
- {/if} - {/key} - -
-
- - -
- {#key $mainQuery.data.stats} - - {/key} -
- - - {#key $mainQuery.data.stats} - - {/key} - -
- - -
- {#key $mainQuery.data.stats} - - {/key} -
- - - {#key $mainQuery.data.stats} - - {/key} - -
-
- {#if metricsInHistograms} - - - {#key $mainQuery.data.stats[0].histMetrics} - - - - - {/key} - - - {/if} -{/if} - - diff --git a/web/frontend/src/status.entrypoint.js b/web/frontend/src/control.entrypoint.js similarity index 84% rename from web/frontend/src/status.entrypoint.js rename to web/frontend/src/control.entrypoint.js index 39c374b..f7d7216 100644 --- a/web/frontend/src/status.entrypoint.js +++ b/web/frontend/src/control.entrypoint.js @@ -1,5 +1,5 @@ import {} from './header.entrypoint.js' -import Status from './Status.root.svelte' +import Status from './Control.root.svelte' new Status({ target: document.getElementById('svelte-app'), diff --git a/web/frontend/src/partition/ClusterMachine.svelte b/web/frontend/src/partition/ClusterMachine.svelte new file mode 100644 index 0000000..a471292 --- /dev/null +++ b/web/frontend/src/partition/ClusterMachine.svelte @@ -0,0 +1,70 @@ + + + + + + {#each cards.filter((card) => card.title + .toLowerCase() + .includes(search.toLowerCase()) || card.content + .toLowerCase() + .includes(search.toLowerCase())) as card (card.title)} + + + + {card.title} +

{card.content}

+ +
+
+ + {/each} +
+ + + Modal Title + {selectedCard ? selectedCard.modalContent : ""} + + + + diff --git a/web/frontend/src/partition/LinuxUser.svelte b/web/frontend/src/partition/LinuxUser.svelte new file mode 100644 index 0000000..aa5934f --- /dev/null +++ b/web/frontend/src/partition/LinuxUser.svelte @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + {#each data.filter((item) => Object.values(item).some((value) => value + .toLowerCase() + .includes(search.toLowerCase()))) as item (item.username)} + + + + + + + {/each} + +
UsernameLinux-machineUsageRole

{item.username}

{item.linuxMachine}{item.usage}{item.role}
+ + diff --git a/web/frontend/src/partition/VerticalTab.svelte b/web/frontend/src/partition/VerticalTab.svelte index f76eab7..040bb24 100644 --- a/web/frontend/src/partition/VerticalTab.svelte +++ b/web/frontend/src/partition/VerticalTab.svelte @@ -1,24 +1,26 @@ - - - - -

Alpha

- Alpha Flight -
- -

Bravo

- Johnny Bravo -
- -

Charlie

- Charlie Brown -
-
\ No newline at end of file + + + + + + Local User + + + + + + Linux User + + + + + + + Group + + + + diff --git a/web/templates/monitoring/status.tmpl b/web/templates/monitoring/control.tmpl similarity index 70% rename from web/templates/monitoring/status.tmpl rename to web/templates/monitoring/control.tmpl index 15aff69..182b00e 100644 --- a/web/templates/monitoring/status.tmpl +++ b/web/templates/monitoring/control.tmpl @@ -3,12 +3,12 @@ {{end}} {{define "stylesheets"}} - + {{end}} {{define "javascript"}} - + {{end}}