Overview
Plug-in Notes:
Key Features & Functionality
The Appian Log Reader Plug-in contains functionality to:
The plugin version 2.1.2 (function tailcsvlogpagingwithheaders ) is working fine in test environment while the same version is giving error in production.
Can someone please advise why the same version is behaving differently in both environments.
Mark Talbot Kindly help looking into this issue and advise.
I am having the same issue and have not found a resolution as of yet. Has anyone had any success implementing this on HA?
This is not working for me. When I try to give the server it always appends the path to "/usr/local/appian/ae/logs" and try to read the file from "/usr/local/appian/ae/logs/mysite-3/authz-audit.csv". As there is no such path we are not getting expected output. Can any one please let us know if any one is successful in reading a log file using this plugin in distributed environment.
On HA environments you need to specify the node name before the file name. Below is an example using Cloud node naming conventions:
first sever:
readcsvlogpaging( csvPath: "mysite/authz-audit.csv", startIndex: 1, batchSize: 10)
second sever:
readcsvlogpaging( csvPath: "mysite-2/authz-audit.csv", startIndex: 1, batchSize: 10)
third sever:
readcsvlogpaging( csvPath: "mysite-3/authz-audit.csv", startIndex: 1, batchSize: 10)