I am trying to run the following NRQL query:
FROM TransactionError SELECT count(*) AS 'ErrorCount', error.class, error.message SINCE 24 hours ago FACET error.class
But I am getting the following error :
Unknown expression
error
.class
(at line 0 column 0)
Why can I not group this way ? I know for a fact that error.class
does exist, but seems it doesnt when trying to use FACET
?
Anyone able to help ?
Thanks!