Overview
Plug-in Notes:
Key Features & Functionality
The Appian Log Reader Plug-in contains functionality to:
Are none of the logs working or is the problem only with login-audit.csv? And was this working for you prior to upgrading to 24.1?
Hi Appian AppMarket Can you please help on this query?
Hi max.carp I tried that as well , but Still no rows are getting returned .
thanks
To include paging info as above, you should use the function readcsvlogpaging(), as in:
readcsvlogpaging(csvPath: "login-audit.csv",startIndex :1,batchSize:20)
Hi Team ,
I am some issue, I am trying the below expression but only getting the header values.
readcsvlog(csvPath: "login-audit.csv",startIndex :1,batchSize:20)
Currenlty we are working on Appian version 24.1
hi bihitakd0002 Jason Ruvinsky Gregor Gisler-Merz
I am also facing the similar issue , I am trying the below expression but only getting the header values.
readcsvlog( csvPath: "login-audit.csv", startIndex :1, batchSize:20)
Did you guys got any solution ? Currenlty we are working on Appian version 24.1.
Is the plugin compatible with 23.4 to read audit log ?
We are having the same issue as well, and it turns out it's due to the new column. When the log file rolled over, it pulled from the new one fine, but we can't retrieve data from older files. We are relying on this plugin to build auditing reports, so missing data is a big issue for us!
Hi chandimas0001 , ti seems to be working for us. We tried to retrieve design_errors.csv and we was able to do it. We used the following.
readcsvlogpagingwithheaders( "serverName/design_errors.csv", 1, 100, {}, "", "", "", "Timestamp", adddays(now(), -3), now())
You will need to substitute serverName with your server name. In this way you will retrieve only the logs from serverName server, to retrieve the log for the others you need to substitute this with the other servers name, e.g. serverName-2 and serverName-3.
Just check what the rule getlogpath() responds. In our HA environment it responds "LOG_DIR : /usr/local/appian/ae/shared-logs".
Hi All
the plugin is failing to read logs for HA environments as the log path is different. for example the path for the login-audit.csv is at /usr/local/appian/ae/shared-logs/login-audit.csv oppose to /usr/local/appian/ae/logs/login-audit.csv.
any way we can use the plugin or any alternate way to read the logs?