Overview
Plug-in Notes:
The application requires 20.3. The plugin will work on older versions of Appian
Key Features & Functionality
The Appian Log Reader Plug-in contains functionality to:
hi bihitakd0002 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?
thanks Gregor for the response, below is the expression
readcsvlogpagingwithheaders(csvPath:"design_errors.csv",startIndex: 1,batchSize: - 1,
),
Are there any plans to update this plugin? so that it can support the tracking of site usage logs in 23.3 environment
How do you try to read it? Can you be more precise?
Hi Team,
we are trying to read the csv file design_errors.csv using this plugin, however no data is returning. any reason why?