/
How to identify the usage of specific Rich Filter gadgets in Jira Dashboards using the Rich Filters for Jira Dashboards App
How to identify the usage of specific Rich Filter gadgets in Jira Dashboards using the Rich Filters for Jira Dashboards App
This article provides a SQL query to help Jira administrators identify the usage of "Pie Chart" and "Date Bar Chart" gadgets in Jira Data Center (DC) dashboards.
Instructions
To find out which dashboards use the gadgets from Rich Filter app and how frequently they are used, run the following SQL query against your Jira DC database:
SELECT pp.pagename as dashboard_name, pc.gadget_xml, count(pc.gadget_xml) FROM portalpage pp JOIN portletconfiguration pc ON pp.id = pc.portalpage WHERE pc.gadget_xml LIKE '%com.qotilabs.jira%' GROUP BY pp.pagename, pc.gadget_xml;
Copy the name of the gadgets from the gadget_xml to identify the usage of those specific gadgets. In this case, consider the Date Bar chart, Pie Chart as an example:
SELECT pp.pagename AS dashboard_name,
pc.gadget_xml,
COUNT(pc.gadget_xml) AS gadget_count
FROM portalpage pp
JOIN portletconfiguration pc ON pp.id = pc.portalpage
WHERE pc.gadget_xml LIKE '%rich-filter-date-bar-chart-gadget.xml%'
OR pc.gadget_xml LIKE '%rich-filter-pie-chart-gadget.xml%'
GROUP BY pp.pagename, pc.gadget_xml;
The SQL queries mentioned are executed in MySQL
Make the necessary changes as per the DB used.
, multiple selections available,
Related content
Migrate from Rich Filters Server/Data Center to Cloud
Migrate from Rich Filters Server/Data Center to Cloud
Read with this
The Rich Filter Pie Chart Gadget
The Rich Filter Pie Chart Gadget
More like this
SQL query for identifying dashboards that utilize rich filter gadgets in an Oracle database.
SQL query for identifying dashboards that utilize rich filter gadgets in an Oracle database.
More like this
The Rich Filter Date Bar Chart Gadget
The Rich Filter Date Bar Chart Gadget
More like this
Display statistics and quick charts on your dashboard
Display statistics and quick charts on your dashboard
More like this
Display date/time statistics and charts on your dashboard
Display date/time statistics and charts on your dashboard
More like this