2023-12-01 13:22:01 +01:00
|
|
|
<script>
|
2024-03-09 10:30:40 +01:00
|
|
|
import {
|
|
|
|
Modal,
|
|
|
|
ModalBody,
|
|
|
|
ModalHeader,
|
|
|
|
ModalFooter,
|
|
|
|
Button,
|
|
|
|
ListGroup,
|
|
|
|
ListGroupItem,
|
|
|
|
} from "@sveltestrap/sveltestrap";
|
|
|
|
import { gql, getContextClient, mutationStore } from "@urql/svelte";
|
2023-12-01 13:22:01 +01:00
|
|
|
|
2024-03-09 10:30:40 +01:00
|
|
|
export let cluster;
|
|
|
|
export let metricsInHistograms;
|
|
|
|
export let isOpen;
|
2023-12-06 12:58:03 +01:00
|
|
|
|
2024-03-09 10:30:40 +01:00
|
|
|
let availableMetrics = ["cpu_load", "flops_any", "mem_used", "mem_bw"]; // 'net_bw', 'file_bw'
|
|
|
|
let pendingMetrics = [...metricsInHistograms]; // Copy
|
|
|
|
const client = getContextClient();
|
2023-12-01 13:22:01 +01:00
|
|
|
|
2024-03-09 10:30:40 +01:00
|
|
|
const updateConfigurationMutation = ({ name, value }) => {
|
|
|
|
return mutationStore({
|
|
|
|
client: client,
|
|
|
|
query: gql`
|
|
|
|
mutation ($name: String!, $value: String!) {
|
|
|
|
updateConfiguration(name: $name, value: $value)
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
variables: { name, value },
|
|
|
|
});
|
|
|
|
};
|
2023-12-01 13:22:01 +01:00
|
|
|
|
2024-03-09 10:30:40 +01:00
|
|
|
function updateConfiguration(data) {
|
|
|
|
updateConfigurationMutation({
|
|
|
|
name: data.name,
|
|
|
|
value: JSON.stringify(data.value),
|
|
|
|
}).subscribe((res) => {
|
|
|
|
if (res.fetching === false && res.error) {
|
|
|
|
throw res.error;
|
|
|
|
// console.log('Error on subscription: ' + res.error)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2023-12-01 13:22:01 +01:00
|
|
|
|
2024-03-09 10:30:40 +01:00
|
|
|
function closeAndApply() {
|
|
|
|
metricsInHistograms = [...pendingMetrics]; // Set for parent
|
|
|
|
isOpen = !isOpen;
|
|
|
|
updateConfiguration({
|
|
|
|
name: cluster
|
|
|
|
? `user_view_histogramMetrics:${cluster}`
|
|
|
|
: "user_view_histogramMetrics",
|
|
|
|
value: metricsInHistograms,
|
|
|
|
});
|
|
|
|
}
|
2023-12-06 12:58:03 +01:00
|
|
|
</script>
|
|
|
|
|
2024-03-09 10:30:40 +01:00
|
|
|
<Modal {isOpen} toggle={() => (isOpen = !isOpen)}>
|
|
|
|
<ModalHeader>Select metrics presented in histograms</ModalHeader>
|
|
|
|
<ModalBody>
|
|
|
|
<ListGroup>
|
|
|
|
{#each availableMetrics as metric (metric)}
|
|
|
|
<ListGroupItem>
|
|
|
|
<input type="checkbox" bind:group={pendingMetrics} value={metric} />
|
|
|
|
{metric}
|
|
|
|
</ListGroupItem>
|
|
|
|
{/each}
|
|
|
|
</ListGroup>
|
|
|
|
</ModalBody>
|
|
|
|
<ModalFooter>
|
|
|
|
<Button color="primary" on:click={closeAndApply}>Close & Apply</Button>
|
|
|
|
<Button color="secondary" on:click={() => (isOpen = !isOpen)}>Close</Button>
|
|
|
|
</ModalFooter>
|
2023-12-01 13:22:01 +01:00
|
|
|
</Modal>
|