This is just a small observation on the behavior of the LogReader function. Scen

This is just a small observation on the behavior of the LogReader function. Scenario: I want to get the details of the users who logged in the past 2 hours. Using the logReader plugin, I can use:
fn!readcsvlogpaging(
csvPath: "login-audit.csv",
startIndex:1,
batchSize:-1,
filterColumName:null,
filterOperator:null,
filterValue:null,
timestampColumnName:"Timestamp",
timestampStart: now()- fn!intervalds(2,0,0),
timestampEnd: now()
)
The above code will return me the Successful as well as Failed logins in the past 2 hours.
But, if I do not specify the "filterColumnName", "filterOperator" and "filterValue", it does not return any data.
When using keyword syntax, you have to specify them as null explicitly if you do not want to apply any filter on data coming from the log.
Also, you have to specify the keyword parameters in exactly the same order as in the plugin description. Otherwise you will get an error.
In...

OriginalPostID-210288

OriginalPostID-210288

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data