Skip to content

Pages: 1 2

17 Comments

  1. claude chouinard
    January 17, 2018 @ 7:16 pm

    hello,
    I run your script but I have an error (ERROR: column “‘webfilter'” does not exist
    LINE 1: … ver <52) and (hostname is not null or utmevent in ('webfilt …). Can you help me my version is FortiAnlyzer-1000c v5.4.3 build1187

    Reply

    • Amira Armond Amira Armond
      January 17, 2018 @ 7:35 pm

      Hi Claude,

      Hmmm. Could be syntax (like missing a parenthesis), or the slight difference in version could have removed or renamed the ‘webfilter’ column in the underlying database.

      I would try just removing ‘webfilter’, from the query, and seeing how it comes out (or if you get a new error).

      The ultimate answer is that you can reverse engineer FortiAnalyzer by looking at existing, working queries such as “Top Web Users by Allowed Requests”. Compare the parts of the queries to each other (such as the (‘webfilter’, syntax and see if it is slightly changed in the working code.

      Reply

    • Stephen Santos
      February 6, 2018 @ 11:47 am

      Check the quotes, copy and paste brings in the single quotes wrong on my setup. Once I corrected the single quotes, all worked fine.

      Reply

  2. Michael
    February 23, 2018 @ 2:12 pm

    Same as Claude I get an error when testing the query. Quotes come in as single quotes (same as what is in the source code above). I’m running version 5.4.4 … can anyone offer any insight?

    Reply

    • Amira Armond Amira Armond
      March 8, 2018 @ 8:20 am

      If you are having trouble, my best suggestion is to look at the code for the canned dataset “Top Web Users by Allowed Requests”. It is very similar to this custom report (the custom report adds grouping and some filters so that you don’t have to look at 20,000 individual rows). Use this as your base code (copy into notepad etc) and modify it manually. This should prevent syntax or copy-paste issues.

      Reply

  3. Juan Font
    April 12, 2018 @ 4:12 pm

    Apparently the dataset query must use single quotes ‘ when doing the IN clause:

    select sum(minutes) as CountTimeStamps, user_src, catdesc, hostname as website, status, sum(bandwidth) as bandwidth from ###(select count(dtime) as minutes, coalesce(nullifna(`user`), nullifna(`unauthuser`), ipstr(`srcip`)) as user_src, catdesc, hostname, cast(utmaction as text) as status, sum(coalesce(sentbyte, 0)+coalesce(rcvdbyte, 0)) as bandwidth from $log-traffic where $filter and hostname is not null and logid_to_int(logid) not in (4, 7, 14) and (countweb>0 or ((logver is null or logver 1 order by catdesc, CountTimeStamps DESC

    Reply

  4. Juan Font
    April 13, 2018 @ 10:31 am

    My comment got cut of. Sorry about that.
    To fix the error, just substitute the opening and closing quotes with a single quote( ‘ for ‘ ). Note that they look almost the same.
    Original
    in (‘webfilter’, ‘banned-word’, ‘web-content’, ‘command-block’, ‘script-filter’)
    Fixed
    in (‘webfilter’, ‘banned-word’, ‘web-content’, ‘command-block’, ‘script-filter’)

    Reply

  5. Juan Font
    April 13, 2018 @ 10:33 am

    Ok I see. This website substitutes all single quotes with opening and closing quotes.

    Reply

    • Amira Armond Amira Armond
      April 13, 2018 @ 10:38 am

      Yep, between browsers and website and cut-and-paste to MSWord vs Notepad vs Wordpad etc, the unicode changes a bit. But I think your comments will lead everyone in the right direction. Thank you! Amira

      Reply

  6. J
    May 28, 2018 @ 12:57 pm

    I got the scrip running writing the quotes, but when I generated the report, but it end up with a pdf with just “No matching log data for this report”

    Reply

  7. elyas
    September 15, 2018 @ 2:07 am

    hi
    when i add the filters the error message show is :
    Duplicate log fields (catdesc) are not allowed in filters

    Reply

    • Trakker
      January 16, 2019 @ 2:41 pm

      Elyas,

      You can’t have multiple lines for the Log Field, but you can add multiple Values. Instead of a line for Advertising, a line for Reference, and a line for Information Technology, you’ll have one line for value “Advertising, Reference, Information Technology”. Hover over the ? behind “Value” to see instructions.

      Hope that helps!

      Reply

  8. Zahidur Rahman
    March 12, 2019 @ 2:13 am

    Thanks. Really Helpful.

    Reply

  9. Chris
    April 5, 2019 @ 3:57 am

    thanks for posting this blog really useful

    Reply

  10. Md. Shariful Islam
    December 26, 2019 @ 4:13 am

    I wanna make a report for a source ip full browsing log, Anyone tell me procedure.

    Reply

  11. Masudur Rahman
    November 26, 2020 @ 1:11 am

    Is it possible to create data query in fortianalyzer like this :
    User (or IP) Bandwidth Category Site Browsing Time(hh:mm:ss)

    if possible please help me anyone

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *