FortiAnalyzer Custom Report
Hello,
I am having an issue when generating a custom report on FortiAnalyzer.
I have created a custom dataset, added it to a chart and when I run it from here with real data, the table is showing successfully with data.
The issue is when I need to add this chart into a report and run it, I always get in the pdf report No matching log data for this report but when I run it directly from the chart tab it is working.
Below is the dataset created, appreciate your help why in the report it is not working
SELECT
srcip,
dstip,
action,
policyid,
user,
$calendar_time(itime) AS "time_stamp"
FROM $log
WHERE $filter
AND type = 'traffic'
AND subtype = 'forward'
AND policyid = 120
AND `group` = 'users'
ORDER BY eventtime DESC

