Cortex Cloud Runtime Badges (Text)
This dashboard visualizes progress toward achieving key cloud runtime security milestones using a simple badge-based system. It provides "Achieved" or "Not Passing" statuses for critical metrics like vulnerability reduction, remediation of internet-exposed risks, and the rate of automated fixes.
Cortex Insights ENABLED
Details
| ID | 58c696f471c84096b15a68880e49ead7 |
|---|---|
| From Version | 6.10.0 |
Widgets (5)
Protect Managed Images - Bronze
This widget displays whether the "Bronze" level requirement for enabling container registry scanning across cloud accounts has been achieved. It provides a quick, at-a-glance assessment of your security posture against the foundational benchmark for protecting managed container images.
Custom XQL wordcloud
dataset = cloud_health_auditing | filter (capability contains """Registry""") | dedup account | comp count_distinct(account ) as accounts_with_registry_scanning_enabled | alter status = if(accounts_with_registry_scanning_enabled > 1, "Achieved", "Not Currently Passing") | view graph type = wordcloud header = "Registry Scanned" xaxis = status yaxis = accounts_with_registry_scanning_enabled word_color = "#ea7207" multi_color = `true` font = "Arial Black" headerfontsize = 20
Protect Managed Images - Gold
This widget displays whether the goal of a 20% vulnerability reduction in managed image registries was achieved over the last 15-day period. It provides a key performance indicator to quickly assess the effectiveness of vulnerability remediation efforts for securing container images.
Custom XQL wordcloud
config timeframe = 30d | dataset = uvm_findings | bin first_observed span = 15d | alter date = format_timestamp("%Y/%m/%d %H:%M:%S", first_observed ) | filter asset_type contains "registry" | comp count(vulnerability_id ) as current_vulns by date | sort desc date | windowcomp lag(current_vulns ) sort asc date as previous_issues | filter previous_issues != null | alter percent_burndown = round(multiply(divide(subtract(current_vulns, previous_issues ), previous_issues),-100)) | alter issues_resolved = subtract( current_vulns , previous_issues ) | alter status = if(percent_burndown >20, "Achieved", "Not Currently Passing") | limit 1 | view graph type = wordcloud header = "20% percent reduction in vulnerabilities in registries" xaxis = status yaxis = percent_burndown multi_color = `true` font = "Arial Black" headerfontsize = 20
API Security - Gold
This widget tracks the reduction rate of new, high and critical severity issues that are reachable from the internet. It provides a key performance indicator to measure the effectiveness of remediation efforts in reducing the organization's internet-facing attack surface.
Custom XQL wordcloud
config timeframe = 30d | dataset = issues | bin xdm.issue.observation_time span = 16d | alter date = format_timestamp("%Y/%m/%d %H:%M:%S", xdm.issue.observation_time ) | filter xdm.issue.severity in(ENUM.CRITICAL , ENUM.HIGH ) and xdm.issue.detection.method = "CLOUD_NETWORK_ANALYZER" and xdm.issue.status.progress = ENUM.NEW | comp count(xdm.issue.id) as num_of_issues by date | sort desc date | windowcomp lag(num_of_issues) sort asc date as previous_issues | alter percent_burndown = round(multiply(divide(subtract(num_of_issues , previous_issues), previous_issues),100)) | alter issues_resolved = subtract(num_of_issues , previous_issues) | alter status = if(previous_issues = null , "not enough data", if (percent_burndown <0 and percent_burndown < -50, "Achieved", "Not Currently Passing") ) | view graph type = wordcloud header = "50% Reduction of Total Amount of Issues with High Severity Reachable from the Internet" xaxis = status yaxis = num_of_issues multi_color = `true` font = "Arial Black" headerfontsize = 20
Protect Workloads in Runtime XSIAM - Gold
This widget displays the percentage of resolved workload protection issues that were automatically remediated over the last 30 days. This metric helps gauge the effectiveness of your automated security policies in reducing the security team's manual workload.
Custom XQL wordcloud
config timeframe = 30d |dataset = issues | filter xdm.issue.detection.method in("COMPUTE_POLICY","VULNERABILITY_POLICY") | filter xdm.issue.status.progress = ENUM.RESOLVED | top xdm.issue.auto_resolve_findings | filter xdm.issue.auto_resolve_findings | alter number_of_auto_resolved_compute_issues = top_count , percentage_of_auto_resolved_compute_issues = round(top_percent) | alter status = if (percentage_of_auto_resolved_compute_issues >50, "Achieved", "Not Currently Passing") | view graph type = wordcloud header = "50 percent of alerts remediated automatically" xaxis = status yaxis = percentage_of_auto_resolved_compute_issues multi_color = `true` font = "Arial Black" headerfontsize = 20
Protect Workloads in Runtime XDR - Gold
This widget displays the burndown percentage of critical, exploitable vulnerabilities on external-facing assets over the last 15 days compared to the prior 15-day period. It provides a key performance indicator to measure the effectiveness of remediation efforts and track progress in reducing the organization's most critical attack surface.
Custom XQL wordcloud
config timeframe = 30d | dataset = uvm_findings | bin first_observed span = 15d | alter date = format_timestamp("%Y/%m/%d %H:%M:%S", first_observed ) | filter asset_type_class = "External Surface" and exploitable and cvss_severity = "Critical" and vendor_package_details != null | comp count(vulnerability_id ) as vuln_count by date | sort desc date | windowcomp lag(vuln_count ) sort asc date as previous_issues | filter previous_issues != null | alter percent_burndown = round(multiply(divide(subtract(vuln_count,previous_issues ), previous_issues),-100)) | alter issues_resolved = subtract(vuln_count, previous_issues ) | alter status = if(percent_burndown >10, "Achieved", "Not Curently Passing") | limit 1 | view graph type = wordcloud header = "10% of reduction of critical, exploitable, external-facing, with fixes CVE Vulnerabilities" xaxis = status yaxis = percent_burndown multi_color = `true` font = "Arial Black" headerfontsize = 20
{ "dashboards_data": [ { "id": "58c696f471c84096b15a68880e49ead7", "name": "Cortex Cloud Runtime Badges (Text)", "description": "This dashboard visualizes progress toward achieving key cloud runtime security milestones using a simple badge-based system. It provides \"Achieved\" or \"Not Passing\" statuses for critical metrics like vulnerability reduction, remediation of internet-exposed risks, and the rate of automated fixes.", "status": "ENABLED", "layout": [ { "id": "row-4017", "data": [ { "key": "xql_1766432608053", "data": { "type": "Custom XQL", "width": 33.333333333333336, "height": 488.5, "phrase": "dataset = cloud_health_auditing | filter (capability contains \"\"\"Registry\"\"\") | dedup account | comp count_distinct(account ) as accounts_with_registry_scanning_enabled | alter status = if(accounts_with_registry_scanning_enabled > 1, \"Achieved\", \"Not Currently Passing\")\n\n\n\n| view graph type = wordcloud header = \"Registry Scanned\" xaxis = status yaxis = accounts_with_registry_scanning_enabled word_color = \"#ea7207\" multi_color = `true` font = \"Arial Black\" headerfontsize = 20 ", "time_frame": { "relativeTime": 86400000 }, "viewOptions": { "type": "wordcloud", "commands": [ { "command": { "op": "=", "name": "header", "value": "\"Registry Scanned\"" } }, { "command": { "op": "=", "name": "xaxis", "value": "status" } }, { "command": { "op": "=", "name": "yaxis", "value": "accounts_with_registry_scanning_enabled" } }, { "command": { "op": "=", "name": "word_color", "value": "\"#ea7207\"" } }, { "command": { "op": "=", "name": "multi_color", "value": "true" } }, { "command": { "op": "=", "name": "font", "value": "\"Arial Black\"" } }, { "command": { "op": "=", "name": "headerfontsize", "value": "20" } } ] } } }, { "key": "xql_1771533371707", "data": { "type": "Custom XQL", "width": 33.333333333333336, "height": 488.5, "phrase": "config timeframe = 30d | dataset = uvm_findings | bin first_observed span = 15d | alter date = format_timestamp(\"%Y/%m/%d %H:%M:%S\", first_observed ) | filter asset_type contains \"registry\" | comp count(vulnerability_id ) as current_vulns by date | sort desc date | windowcomp lag(current_vulns ) sort asc date as previous_issues | filter previous_issues != null | alter percent_burndown = round(multiply(divide(subtract(current_vulns, previous_issues ), previous_issues),-100)) | alter issues_resolved = subtract( current_vulns , previous_issues ) | alter status = if(percent_burndown >20, \"Achieved\", \"Not Currently Passing\") | limit 1\n\n\n| view graph type = wordcloud header = \"20% percent reduction in vulnerabilities in registries\" xaxis = status yaxis = percent_burndown multi_color = `true` font = \"Arial Black\" headerfontsize = 20 ", "timeSpan": { "toTime": "now", "fromTime": "30d", "isRelative": true }, "time_frame": { "relativeTime": 86400000 }, "viewOptions": { "type": "wordcloud", "commands": [ { "command": { "op": "=", "name": "header", "value": "\"20% percent reduction in vulnerabilities in registries\"" } }, { "command": { "op": "=", "name": "xaxis", "value": "status" } }, { "command": { "op": "=", "name": "yaxis", "value": "percent_burndown" } }, { "command": { "op": "=", "name": "multi_color", "value": "true" } }, { "command": { "op": "=", "name": "font", "value": "\"Arial Black\"" } }, { "command": { "op": "=", "name": "headerfontsize", "value": "20" } } ] } } }, { "key": "xql_1770740829621", "data": { "type": "Custom XQL", "width": 33.333333333333336, "height": 488.5, "phrase": "config timeframe = 30d | dataset = issues | bin xdm.issue.observation_time span = 16d | alter date = format_timestamp(\"%Y/%m/%d %H:%M:%S\", xdm.issue.observation_time ) | filter xdm.issue.severity in(ENUM.CRITICAL , ENUM.HIGH ) and xdm.issue.detection.method = \"CLOUD_NETWORK_ANALYZER\" and xdm.issue.status.progress = ENUM.NEW | comp count(xdm.issue.id) as num_of_issues by date | sort desc date | windowcomp lag(num_of_issues) sort asc date as previous_issues | alter percent_burndown = round(multiply(divide(subtract(num_of_issues , previous_issues), previous_issues),100)) | alter issues_resolved = subtract(num_of_issues , previous_issues) | alter status = if(previous_issues = null , \"not enough data\", if (percent_burndown <0 and percent_burndown < -50, \"Achieved\", \"Not Currently Passing\") )\n\n\n\n\n| view graph type = wordcloud header = \"50% Reduction of Total Amount of Issues with High Severity Reachable from the Internet\" xaxis = status yaxis = num_of_issues multi_color = `true` font = \"Arial Black\" headerfontsize = 20 ", "timeSpan": { "toTime": "now", "fromTime": "30d", "isRelative": true }, "time_frame": { "relativeTime": 86400000 }, "viewOptions": { "type": "wordcloud", "commands": [ { "command": { "op": "=", "name": "header", "value": "\"50% Reduction of Total Amount of Issues with High Severity Reachable from the Internet\"" } }, { "command": { "op": "=", "name": "xaxis", "value": "status" } }, { "command": { "op": "=", "name": "yaxis", "value": "num_of_issues" } }, { "command": { "op": "=", "name": "multi_color", "value": "true" } }, { "command": { "op": "=", "name": "font", "value": "\"Arial Black\"" } }, { "command": { "op": "=", "name": "headerfontsize", "value": "20" } } ] } } } ] }, { "id": "row-1082", "data": [ { "key": "xql_1766435172803", "data": { "type": "Custom XQL", "width": 50, "height": 488.5, "phrase": "config timeframe = 30d |dataset = issues | filter xdm.issue.detection.method in(\"COMPUTE_POLICY\",\"VULNERABILITY_POLICY\") | filter xdm.issue.status.progress = ENUM.RESOLVED | top xdm.issue.auto_resolve_findings | filter xdm.issue.auto_resolve_findings | alter number_of_auto_resolved_compute_issues = top_count , percentage_of_auto_resolved_compute_issues = round(top_percent) | alter status = if (percentage_of_auto_resolved_compute_issues >50, \"Achieved\", \"Not Currently Passing\")\n\n\n\n\n| view graph type = wordcloud header = \"50 percent of alerts remediated automatically\" xaxis = status yaxis = percentage_of_auto_resolved_compute_issues multi_color = `true` font = \"Arial Black\" headerfontsize = 20 ", "timeSpan": { "toTime": "now", "fromTime": "30d", "isRelative": true }, "time_frame": { "relativeTime": 86400000 }, "viewOptions": { "type": "wordcloud", "commands": [ { "command": { "op": "=", "name": "header", "value": "\"50 percent of alerts remediated automatically\"" } }, { "command": { "op": "=", "name": "xaxis", "value": "status" } }, { "command": { "op": "=", "name": "yaxis", "value": "percentage_of_auto_resolved_compute_issues" } }, { "command": { "op": "=", "name": "multi_color", "value": "true" } }, { "command": { "op": "=", "name": "font", "value": "\"Arial Black\"" } }, { "command": { "op": "=", "name": "headerfontsize", "value": "20" } } ] } } }, { "key": "xql_1771533220959", "data": { "type": "Custom XQL", "width": 50, "height": 488.5, "phrase": "config timeframe = 30d | dataset = uvm_findings | bin first_observed span = 15d | alter date = format_timestamp(\"%Y/%m/%d %H:%M:%S\", first_observed ) | filter asset_type_class = \"External Surface\" and exploitable and cvss_severity = \"Critical\" and vendor_package_details != null | comp count(vulnerability_id ) as vuln_count by date | sort desc date | windowcomp lag(vuln_count ) sort asc date as previous_issues | filter previous_issues != null | alter percent_burndown = round(multiply(divide(subtract(vuln_count,previous_issues ), previous_issues),-100)) | alter issues_resolved = subtract(vuln_count, previous_issues ) | alter status = if(percent_burndown >10, \"Achieved\", \"Not Curently Passing\") | limit 1\n\n\n\n\n\n\n\n\n| view graph type = wordcloud header = \"10% of reduction of critical, exploitable, external-facing, with fixes CVE Vulnerabilities\" xaxis = status yaxis = percent_burndown multi_color = `true` font = \"Arial Black\" headerfontsize = 20 ", "timeSpan": { "toTime": "now", "fromTime": "30d", "isRelative": true }, "time_frame": { "relativeTime": 86400000 }, "viewOptions": { "type": "wordcloud", "commands": [ { "command": { "op": "=", "name": "header", "value": "\"10% of reduction of critical, exploitable, external-facing, with fixes CVE Vulnerabilities\"" } }, { "command": { "op": "=", "name": "xaxis", "value": "status" } }, { "command": { "op": "=", "name": "yaxis", "value": "percent_burndown" } }, { "command": { "op": "=", "name": "multi_color", "value": "true" } }, { "command": { "op": "=", "name": "font", "value": "\"Arial Black\"" } }, { "command": { "op": "=", "name": "headerfontsize", "value": "20" } } ] } } } ] } ], "default_dashboard_id": 1, "global_id": "58c696f471c84096b15a68880e49ead7", "metadata": { "params": [] } } ], "widgets_data": [ { "widget_key": "xql_1771533220959", "title": "Protect Workloads in Runtime XDR - Gold", "creation_time": 1771533220959, "description": "This widget displays the burndown percentage of critical, exploitable vulnerabilities on external-facing assets over the last 15 days compared to the prior 15-day period. It provides a key performance indicator to measure the effectiveness of remediation efforts and track progress in reducing the organization's most critical attack surface.", "data": { "phrase": "config timeframe = 30d | dataset = uvm_findings | bin first_observed span = 15d | alter date = format_timestamp(\"%Y/%m/%d %H:%M:%S\", first_observed ) | filter asset_type_class = \"External Surface\" and exploitable and cvss_severity = \"Critical\" and vendor_package_details != null | comp count(vulnerability_id ) as vuln_count by date | sort desc date | windowcomp lag(vuln_count ) sort asc date as previous_issues | filter previous_issues != null | alter percent_burndown = round(multiply(divide(subtract(vuln_count,previous_issues ), previous_issues),-100)) | alter issues_resolved = subtract(vuln_count, previous_issues ) | alter status = if(percent_burndown >10, \"Achieved\", \"Not Curently Passing\") | limit 1\n\n\n\n\n\n\n\n\n| view graph type = wordcloud header = \"10% of reduction of critical, exploitable, external-facing, with fixes CVE Vulnerabilities\" xaxis = status yaxis = percent_burndown multi_color = `true` font = \"Arial Black\" headerfontsize = 20 ", "timeSpan": { "toTime": "now", "fromTime": "30d", "isRelative": true }, "time_frame": { "relativeTime": 86400000 }, "viewOptions": { "type": "wordcloud", "commands": [ { "command": { "op": "=", "name": "header", "value": "\"10% of reduction of critical, exploitable, external-facing, with fixes CVE Vulnerabilities\"" } }, { "command": { "op": "=", "name": "xaxis", "value": "status" } }, { "command": { "op": "=", "name": "yaxis", "value": "percent_burndown" } }, { "command": { "op": "=", "name": "multi_color", "value": "true" } }, { "command": { "op": "=", "name": "font", "value": "\"Arial Black\"" } }, { "command": { "op": "=", "name": "headerfontsize", "value": "20" } } ] } }, "support_time_range": true, "additional_info": { "query_tables": [ "uvm_findings" ], "query_uses_library": false } }, { "widget_key": "xql_1771533371707", "title": "Protect Managed Images - Gold", "creation_time": 1771533371707, "description": "This widget displays whether the goal of a 20% vulnerability reduction in managed image registries was achieved over the last 15-day period. It provides a key performance indicator to quickly assess the effectiveness of vulnerability remediation efforts for securing container images.", "data": { "phrase": "config timeframe = 30d | dataset = uvm_findings | bin first_observed span = 15d | alter date = format_timestamp(\"%Y/%m/%d %H:%M:%S\", first_observed ) | filter asset_type contains \"registry\" | comp count(vulnerability_id ) as current_vulns by date | sort desc date | windowcomp lag(current_vulns ) sort asc date as previous_issues | filter previous_issues != null | alter percent_burndown = round(multiply(divide(subtract(current_vulns, previous_issues ), previous_issues),-100)) | alter issues_resolved = subtract( current_vulns , previous_issues ) | alter status = if(percent_burndown >20, \"Achieved\", \"Not Currently Passing\") | limit 1\n\n\n| view graph type = wordcloud header = \"20% percent reduction in vulnerabilities in registries\" xaxis = status yaxis = percent_burndown multi_color = `true` font = \"Arial Black\" headerfontsize = 20 ", "time_frame": { "relativeTime": 86400000 }, "viewOptions": { "type": "wordcloud", "commands": [ { "command": { "op": "=", "name": "header", "value": "\"20% percent reduction in vulnerabilities in registries\"" } }, { "command": { "op": "=", "name": "xaxis", "value": "status" } }, { "command": { "op": "=", "name": "yaxis", "value": "percent_burndown" } }, { "command": { "op": "=", "name": "multi_color", "value": "true" } }, { "command": { "op": "=", "name": "font", "value": "\"Arial Black\"" } }, { "command": { "op": "=", "name": "headerfontsize", "value": "20" } } ] }, "timeSpan": { "toTime": "now", "fromTime": "30d", "isRelative": true } }, "support_time_range": true, "additional_info": { "query_tables": [ "uvm_findings" ], "query_uses_library": false } }, { "widget_key": "xql_1766435172803", "title": "Protect Workloads in Runtime XSIAM - Gold", "creation_time": 1771532839702, "description": "This widget displays the percentage of resolved workload protection issues that were automatically remediated over the last 30 days. This metric helps gauge the effectiveness of your automated security policies in reducing the security team's manual workload.", "data": { "phrase": "config timeframe = 30d |dataset = issues | filter xdm.issue.detection.method in(\"COMPUTE_POLICY\",\"VULNERABILITY_POLICY\") | filter xdm.issue.status.progress = ENUM.RESOLVED | top xdm.issue.auto_resolve_findings | filter xdm.issue.auto_resolve_findings | alter number_of_auto_resolved_compute_issues = top_count , percentage_of_auto_resolved_compute_issues = round(top_percent) | alter status = if (percentage_of_auto_resolved_compute_issues >50, \"Achieved\", \"Not Currently Passing\")\n\n\n\n\n| view graph type = wordcloud header = \"50 percent of alerts remediated automatically\" xaxis = status yaxis = percentage_of_auto_resolved_compute_issues multi_color = `true` font = \"Arial Black\" headerfontsize = 20 ", "timeSpan": { "toTime": "now", "fromTime": "30d", "isRelative": true }, "time_frame": { "relativeTime": 86400000 }, "viewOptions": { "type": "wordcloud", "commands": [ { "command": { "op": "=", "name": "header", "value": "\"50 percent of alerts remediated automatically\"" } }, { "command": { "op": "=", "name": "xaxis", "value": "status" } }, { "command": { "op": "=", "name": "yaxis", "value": "percentage_of_auto_resolved_compute_issues" } }, { "command": { "op": "=", "name": "multi_color", "value": "true" } }, { "command": { "op": "=", "name": "font", "value": "\"Arial Black\"" } }, { "command": { "op": "=", "name": "headerfontsize", "value": "20" } } ] } }, "support_time_range": true, "additional_info": { "query_tables": [ "issues" ], "query_uses_library": false } }, { "widget_key": "xql_1766432608053", "title": "Protect Managed Images - Bronze", "creation_time": 1771532839329, "description": "This widget displays whether the \"Bronze\" level requirement for enabling container registry scanning across cloud accounts has been achieved. It provides a quick, at-a-glance assessment of your security posture against the foundational benchmark for protecting managed container images.", "data": { "phrase": "dataset = cloud_health_auditing | filter (capability contains \"\"\"Registry\"\"\") | dedup account | comp count_distinct(account ) as accounts_with_registry_scanning_enabled | alter status = if(accounts_with_registry_scanning_enabled > 1, \"Achieved\", \"Not Currently Passing\")\n\n\n\n| view graph type = wordcloud header = \"Registry Scanned\" xaxis = status yaxis = accounts_with_registry_scanning_enabled word_color = \"#ea7207\" multi_color = `true` font = \"Arial Black\" headerfontsize = 20 ", "time_frame": { "relativeTime": 86400000 }, "viewOptions": { "type": "wordcloud", "commands": [ { "command": { "op": "=", "name": "header", "value": "\"Registry Scanned\"" } }, { "command": { "op": "=", "name": "xaxis", "value": "status" } }, { "command": { "op": "=", "name": "yaxis", "value": "accounts_with_registry_scanning_enabled" } }, { "command": { "op": "=", "name": "word_color", "value": "\"#ea7207\"" } }, { "command": { "op": "=", "name": "multi_color", "value": "true" } }, { "command": { "op": "=", "name": "font", "value": "\"Arial Black\"" } }, { "command": { "op": "=", "name": "headerfontsize", "value": "20" } } ] } }, "support_time_range": true, "additional_info": { "query_tables": [ "cloud_health_auditing" ], "query_uses_library": false } }, { "widget_key": "xql_1770740829621", "title": "API Security - Gold", "creation_time": 1771513973290, "description": "This widget tracks the reduction rate of new, high and critical severity issues that are reachable from the internet. It provides a key performance indicator to measure the effectiveness of remediation efforts in reducing the organization's internet-facing attack surface.", "data": { "phrase": "config timeframe = 30d | dataset = issues | bin xdm.issue.observation_time span = 16d | alter date = format_timestamp(\"%Y/%m/%d %H:%M:%S\", xdm.issue.observation_time ) | filter xdm.issue.severity in(ENUM.CRITICAL , ENUM.HIGH ) and xdm.issue.detection.method = \"CLOUD_NETWORK_ANALYZER\" and xdm.issue.status.progress = ENUM.NEW | comp count(xdm.issue.id) as num_of_issues by date | sort desc date | windowcomp lag(num_of_issues) sort asc date as previous_issues | alter percent_burndown = round(multiply(divide(subtract(num_of_issues , previous_issues), previous_issues),100)) | alter issues_resolved = subtract(num_of_issues , previous_issues) | alter status = if(previous_issues = null , \"not enough data\", if (percent_burndown <0 and percent_burndown < -50, \"Achieved\", \"Not Currently Passing\") )\n\n\n\n\n| view graph type = wordcloud header = \"50% Reduction of Total Amount of Issues with High Severity Reachable from the Internet\" xaxis = status yaxis = num_of_issues multi_color = `true` font = \"Arial Black\" headerfontsize = 20 ", "timeSpan": { "toTime": "now", "fromTime": "30d", "isRelative": true }, "time_frame": { "relativeTime": 86400000 }, "viewOptions": { "type": "wordcloud", "commands": [ { "command": { "op": "=", "name": "header", "value": "\"50% Reduction of Total Amount of Issues with High Severity Reachable from the Internet\"" } }, { "command": { "op": "=", "name": "xaxis", "value": "status" } }, { "command": { "op": "=", "name": "yaxis", "value": "num_of_issues" } }, { "command": { "op": "=", "name": "multi_color", "value": "true" } }, { "command": { "op": "=", "name": "font", "value": "\"Arial Black\"" } }, { "command": { "op": "=", "name": "headerfontsize", "value": "20" } } ] } }, "support_time_range": true, "additional_info": { "query_tables": [ "issues" ], "query_uses_library": false } } ], "fromVersion": "6.10.0" }