You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
Regarding the extension of dynamic objects out of the custom dimensions
I have been using the following queries in the past, but it seems to be broken now and the documentation of app insights does not show any examples of how to do it (or I'm looking past them)
customEvents | where timestamp >ago(24h) | where name == "ClusterHealthReport" | extend AggregatedHealthState = customDimensions["AggregatedHealthState"] | where AggregatedHealthState != "Ok" | order by timestamp desc | project timestamp, todynamic(tostring(customDimensions["response"])).AggregatedHealthState ,
I already disliked the fact that I had to use "todynamic(tostring(customdimensions["response"])) instead of just only "todynamic", but ok.
Now it seems that todynamic does not work anymore? What is the replacement of this?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
Regarding the extension of dynamic objects out of the custom dimensions
I have been using the following queries in the past, but it seems to be broken now and the documentation of app insights does not show any examples of how to do it (or I'm looking past them)
customEvents | where timestamp >ago(24h) | where name == "ClusterHealthReport" | extend AggregatedHealthState = customDimensions["AggregatedHealthState"] | where AggregatedHealthState != "Ok" | order by timestamp desc | project timestamp, todynamic(tostring(customDimensions["response"])).AggregatedHealthState ,
I already disliked the fact that I had to use "todynamic(tostring(customdimensions["response"])) instead of just only "todynamic", but ok.
Now it seems that todynamic does not work anymore? What is the replacement of this?
The text was updated successfully, but these errors were encountered: