Log Reader

Overview

Plug-in Notes:

  • Allows only System Administrators or members of the Designers group to access log data.  
  • Does not load files outside the logs directory or files that do not end in .log.* or .csv.*.
  • On multi-application-server environments, logs will only be shown from a single application server.
  • Custom headers can be specified as an optional parameter. This is meant to be used for .csv files that don't contain a header.

Key Features & Functionality

The Appian Log Reader Plug-in contains functionality to:

  • Read files in the Appian /log folder (.csv or .log) and return them as structured data
  • Aggregate data from a .csv file
  • Serve as the source for a service-backed record for viewing logs
Anonymous
Parents Comment
  • 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
    )

Children