It would be nice to be able to use
SELECT count(*) AS < value > from /services where ...
Then < value > could be displayed in a Bar gauge for example, without having to use an override as shown below:
Here I'm querying the plugin_output and want to count how many services have "SQL Server 2022" in the output.
Currently the only workaround is to use Overrides:
I also can't re-use count(*) in multiple queries, because then it would just show a single time in the Overrides. So to avoid that, you need to count different attributes
It would be nice to be able to use
SELECT count(*) AS < value > from /services where ...
Then < value > could be displayed in a Bar gauge for example, without having to use an override as shown below:
Here I'm querying the plugin_output and want to count how many services have "SQL Server 2022" in the output.
Currently the only workaround is to use Overrides:
I also can't re-use count(*) in multiple queries, because then it would just show a single time in the Overrides. So to avoid that, you need to count different attributes