Difference between revisions of "Cyc Administrator Handbook/Monitoring Activity"

From Public Domain Knowledge Bank
Jump to: navigation, search
(Created page with "<includeonly> === Monitoring Activity === </includeonly> <noinclude> ==== Prev: Cyc Administrator Handbook/Recovery Config...")
 
(Logging OpenCYC API Traffic)
 
Line 12: Line 12:
 
=== Logging OpenCYC API Traffic ===
 
=== Logging OpenCYC API Traffic ===
 
  The Cyc server has the ability to log traffic that comes over the OpenCYC API channel, the CFASL port, and is processed by the API processor pool, the task processors..
 
  The Cyc server has the ability to log traffic that comes over the OpenCYC API channel, the CFASL port, and is processed by the API processor pool, the task processors..
 
+
 
  By default, logging that traffic is turned off.
 
  By default, logging that traffic is turned off.
 
+
 
  In order to log that traffic, evaluate the following SubL forms on the Cyc server (e.g. by placing them in the init/release-specific-init.lisp file).
 
  In order to log that traffic, evaluate the following SubL forms on the Cyc server (e.g. by placing them in the init/release-specific-init.lisp file).
 
+
 
:(progn
 
:(progn
 
::(set-tpool-background-msg-path FILEPATH)
 
::(set-tpool-background-msg-path FILEPATH)

Latest revision as of 14:15, 29 May 2019


Prev: Recovery Configuration Home:Cyc Administrator Handbook Next: Upgrading

This page is based on the original document Enterprise Cyc Administrator Handbook at https://www.cyc.com/documentation/enterprise-cyc-administrator-handbook/ There is no intent to infringe on Cycorp's Copyright.
It is Copyright (c) Cycorp 2019
Cycorp's address is 7718 Wood Hollow Drive Suite 250 Austin, TX 78731 USA
mailto:info@cyc.com   Main Phone: 512.342.4000

Logging Browser Traffic

In addition to the logging infrastructure described above, the Cyc server has the ability to log browser requests that come in via the HTML or the HTTP ports.
For details, see the discussion for the system parameter Cyc Browser Parameters.

Logging OpenCYC API Traffic

The Cyc server has the ability to log traffic that comes over the OpenCYC API channel, the CFASL port, and is processed by the API processor pool, the task processors..

By default, logging that traffic is turned off.

In order to log that traffic, evaluate the following SubL forms on the Cyc server (e.g. by placing them in the init/release-specific-init.lisp file).

(progn
(set-tpool-background-msg-path FILEPATH)
(set-task-processor-verbosity 9)
)