Forum Discussion
srikanth3300
Microsoft
Apr 21, 2020Custom field for Timegenerated
We are using the below query to get time details , it is working fine in workbooks but it is not working in logs
let data = ADFTriggerRun
| where TimeGenerated {TimeRange}
SYNTAX ...
- Apr 21, 2020This will work in logs.
| where TimeGenerated > ago(1d)
{Timerange} is unique to a Workbook and takes the Parameter from a drop down, replacing the selected value with something like > ago(7d). You can't reuse these parameters in a normal query as the drop down control doesn't exist
CliveWatson
Microsoft
Apr 21, 2020This will work in logs.
| where TimeGenerated > ago(1d)
{Timerange} is unique to a Workbook and takes the Parameter from a drop down, replacing the selected value with something like > ago(7d). You can't reuse these parameters in a normal query as the drop down control doesn't exist
| where TimeGenerated > ago(1d)
{Timerange} is unique to a Workbook and takes the Parameter from a drop down, replacing the selected value with something like > ago(7d). You can't reuse these parameters in a normal query as the drop down control doesn't exist
srikanth3300
Microsoft
Apr 21, 2020thanks Clive,
It is working fine now
It is working fine now