Considering I have this structure of json in datadog :
"parameter":
{
"name":"mybeautifulvar",
"value":"my_beautiful_string_value"
}
It's a regular extract for a value, one time a day, and I search to display the last value of this variable but I'm struggling on how to do it.
All I have been able to do is to display a count in a query value graph
index:main service:myservice @parameter.name:mybeautifulvar count_unique:@parameter.value
How can I get the last value instead of unique count ?