Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Sometimes you may wish to collect logging information for use in 3rd party reporting and monitoring systems, e.g. Splunk.

The following query gives the crucial information for each log message:

select lf.name as task_name, lf.start_dtm as task_start_dtm, lf.end_dtm as task_end_dtm, lu.first_name || ' ' || lu.last_name as local_user_name,
eu.first_name || ' ' || eu.last_name as domain_user_name, lf.complete_boo as task_complete_boo, lm.message_type, lm.message
from log_file lf
inner join log_message lm on lf.log_file_id = lm.log_file_id
left outer join local_user lu on lf.user_id = lu.user_id
left outer join external_user eu on lf.user_id = eu.user_id

To run this query you will need read access to the following tables in the PhixFlow schema:

  • log_file
  • log_message
  • local_user
  • external_user

The following message types are found in PhixFlow log files:

  • WARNING
  • DEBUG
  • ERROR
  • INFO
  • No labels