PARCIO.exe.config
  • 31 Jan 2024
  • PDF

PARCIO.exe.config

  • PDF

Article summary

The PARCIO.exe.config file is used to change the instance number and to change default paths. There can be many instances to point at and each instance can have its own sources configured.

<?xml version="1.0"?>

<configuration>

  <appSettings>

    <add key="InstanceId" value="55"/>

    <add key="BufferPath" value="c:\capstone\PARCIO\Buffer"/>

    <add key="BufferTransferFrequency" value="1"/>

    <add key="MaxLogSizeInDays" value="30"/>

    <add key="MaxLogStorageSizeInMB" value="5"/>

    <add key="OpcHdaMaxReadWarningMilliSeconds" value="300000"/>

  </appSettings>

  <startup>

    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>

  </startup>

</configuration>

To configure a setting, change the value for the setting following these rules:

InstanceId: The instance number.

BufferPath: The default local path to use when buffering data. This can also be configured at a source-level.

BufferTransferFrequency: The default frequency in seconds to use when transferring buffer files to PARChistory.

MaxLogSizeInDays: The default max log size in Days.

MaxLogStorageSizeInMB: The default max log storage size in megabytes.

OpcHdaMaxReadWarningMilliSeconds: The number of milliseconds a synchronous Opc Hda ReadRaw call can take before it will generate a log file warning entry.


Was this article helpful?

What's Next