How to read performance logs

Hello Team,

 

Could anyone please let me know how to read performance logs. Is there any function available?

There is a requirement to download performance logs to another file and upload them to another server.

I have tried a couple of them, but it doesnt read the content of it..readcsvlog(csvPath: "engine_summary-1.csv")

Looking forward for some response.

 

Thanks in advance,

Divya

  Discussion posts and replies are publicly visible

Parents Reply
  • Hi

    This is my code - hopefully you can adapt it 

    timestampColumnName: "Timestamp",
    timestampStart: now() - intervalds(
    local!hours,
    0,
    0
    ),
    timestampEnd: now()

    The column name for Timestamp is case sensitive so best to check what it is called on the file you want to look at. I pass in a value which if blank, local!hours defaults to 2 so I get the last two hours of activity from that file. 

    Hope this helps ?

    Cheers

    Paul

Children