diff --git a/blog-service/2025-10-31-dashboards.md b/blog-service/2025-10-31-dashboards.md new file mode 100644 index 0000000000..5f6ccb1058 --- /dev/null +++ b/blog-service/2025-10-31-dashboards.md @@ -0,0 +1,12 @@ +--- +title: Conditional Thresholds (Dashboards) +image: https://assets-www.sumologic.com/company-logos/_800x418_crop_center-center_82_none/SumoLogic_Preview_600x600.jpg?mtime=1617040082 +keywords: + - dashboard + - conditional-thresholds +hide_table_of_contents: true +--- + +import useBaseUrl from '@docusaurus/useBaseUrl'; + +We’re excited to introduce **Conditional** thresholds to table charts in dashboards, helping you to quickly surface trends, outliers, and key indicators to enhance data readability at a glance. This feature allows you to apply flexible color rules to rows and cells, making it easy to highlight values that breach defined thresholds. [Learn more](/docs/dashboards/panels/modify-chart/#modify-the-thresholds). \ No newline at end of file diff --git a/docs/dashboards/panels/modify-chart.md b/docs/dashboards/panels/modify-chart.md index c33e06d77f..5fd1b16347 100644 --- a/docs/dashboards/panels/modify-chart.md +++ b/docs/dashboards/panels/modify-chart.md @@ -85,6 +85,49 @@ To override select dashboard displays, do the following: 1. Optionally, add another override by selecting **Add New Override** and completing steps 2 - 4. 1. To save your customized settings and return to the dashboard, click **Update Dashboard** in the upper right corner of the window.
MC_Update_Dashboard +## Modify the thresholds + +:::note +This feature is only applicable for [table charts](/docs/dashboards/panels/table-charts). +::: + +The ability to modify the threshold allows you to define warning and critical thresholds. + +1. Click the Thresholds icon in the far right menu bar.
Threshold_icon +1. Click the toggle in the **Thresholds** pane.
Thresholds_icon +1. You can set the thresholds in two ways, **Classic** or **Conditional**: + - **Classic:** + 1. Configure the appropriate comparator and threshold values, based on your data and requirements. You can choose from the following comparators. + - **greater than**. Any value greater than the value you specify will violate the threshold. + - **greater than or equal to**. Any value greater than or equal to the value you specify will violate the threshold. + - **less than**. Any value less than the value you specify will violate this threshold. + - **less than or equal**. Any value less than or equal to the value you specify will violate the threshold. + - **includes**. Any value between the two values you specify will violate the threshold. + - **excludes**. Every value NOT between the two values you specify will violate the threshold. + 1. If you toggle the **Fill remaining area as green** option, the portion of the chart with no thresholds is shaded in green.
Thresholds_Classic_icon + - **Conditional:** + 1. **Column**. Select the column for which the threshold condition should apply. + 1. **Threshold Dsiplay**. Select the type of visibility you need once the condition is breached. + - **Row Background**. Highlights the entire row for which the threshold value is breached. + - **Row Text**. Highlights the entire row texts for which the threshold value is breached. + - **Cell Background**. Highlights the cell of the selected column for which the threshold value is breached. + - **Cell Text**. Highlights only the cell text of the selected column for which the threshold value is breached. + 1. **Threshold**. You can select the color that needs to be displayed when the breach occurs. Additionally, you can configure the appropriate comparator and threshold values. + - **equals**. Any value equal to the value you specify will violate the threshold. + - **contains**. Any value containing the value you specify will violate the threshold. + - **does not contain**. Any value not containing the value you specify will violate the threshold. + - **greater than**. Any value greater than the value you specify will violate the threshold. + - **greater than or equal to**. Any value greater than or equal to the value you specify will violate the threshold. + - **less than**. Any value less than the value you specify will violate this threshold. + - **less than or equal**. Any value less than or equal to the value you specify will violate the threshold.
Threshold_Conditional_icon + :::note + You can add upto 10 threshold conditions. + ::: + +:::info +If both thresholds and display overrides are applied to a table chart, the display overrides will take precedence. +::: + ## Modify chart axes You can easily change the displays of the X and Y axes. diff --git a/static/img/dashboards/panels/modify-chart/Threshold_Conditional_icon.png b/static/img/dashboards/panels/modify-chart/Threshold_Conditional_icon.png new file mode 100644 index 0000000000..c1a5880db3 Binary files /dev/null and b/static/img/dashboards/panels/modify-chart/Threshold_Conditional_icon.png differ diff --git a/static/img/dashboards/panels/modify-chart/Threshold_icon.png b/static/img/dashboards/panels/modify-chart/Threshold_icon.png new file mode 100644 index 0000000000..b9425d0af4 Binary files /dev/null and b/static/img/dashboards/panels/modify-chart/Threshold_icon.png differ