updateSetting(e, { selector: "#line-width-form", target: "lw", })} >
Line Width
{#if displayMessage && message.target == "lw"}
Update: {message.msg}
{/if}
Width of the lines in the timeseries plots.
updateSetting(e, { selector: "#plots-per-row-form", target: "ppr", })} >
Plots per Row
{#if displayMessage && message.target == "ppr"}
Update: {message.msg}
{/if}
How many plots to show next to each other on pages such as /monitoring/job/, /monitoring/system/...
updateSetting(e, { selector: "#backgrounds-form", target: "bg", })} >
Colored Backgrounds
{#if displayMessage && message.target == "bg"}
Update: {message.msg}
{/if}
{#if config?.plotConfiguration_colorBackground} {:else} {/if}
{#if config?.plotConfiguration_colorBackground} {:else} {/if}
updateSetting(e, { selector: "#colorblindmode-form", target: "cbm", })} >
Color Blind Mode
{#if displayMessage && message.target == "cbm"}
Update: {message.msg}
{/if}
{#if config?.plotConfiguration_colorblindMode} {:else} {/if}
{#if config?.plotConfiguration_colorblindMode} {:else} {/if}
updateSetting(e, { selector: "#resample-policy-form", target: "rsp", })} >
Resample Policy
{#if displayMessage && message.target == "rsp"}
Update: {message.msg}
{/if}
{#each [["", "Default"], ["low", "Low"], ["medium", "Medium"], ["high", "High"]] as [val, label]}
{/each}
Controls how many data points are shown in metric plots. Low = fast overview (~200 points), Medium = balanced (~500), High = maximum detail (~1000).
updateSetting(e, { selector: "#resample-algo-form", target: "rsa", })} >
Resample Algorithm
{#if displayMessage && message.target == "rsa"}
Update: {message.msg}
{/if}
{#each [["", "Default"], ["lttb", "LTTB"], ["average", "Average"], ["simple", "Simple"]] as [val, label]}
{/each}
Algorithm used when downsampling time-series data. LTTB preserves visual shape, Average smooths data, Simple picks every Nth point.