Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Community discussion is present here: http://community.pbspro.org/t/pp-838-support-for-logging-via-syslog-in-pbs/591

...

  facility = //PBS_SYSLOG from pbs.conf

  severity = //  PBS_SYSLOGSEVR from pbs.conf (by default NONE)

Methods:

    def get_log_type(syslog=None)

       Summary: logic for which messages to read (local logs / syslog)

...

       b) If PBS_SYSLOG is not set, we will locally in code set variable PBS_SYSLOG=0

       c) If  PBS_LOCALLOG is not set, we will locally in code set variable PBS_LOCALLOG=1

      Therefore this will check into the local logs only if values are not set (see line 3 in below table)


      2) Logic for whether to read local logs/ syslog we will follow this table -

...

     


PBS_SYSLOG  

PBS_LOCALLOG  

Syslog_attribute 

Which log to check in log_match() 

Return Value for the log_match()

0 

false/None

Throw error


0 

true

Throw error 


1 

false/None

Local_Log 

local_log(x,y) 

0

1 

true

Throw error 


set 

0 

false

Throw error 


set 

0 

true

Syslog 

syslog(x,y)

set 

1 

false/None

Local_log

local_log(x,y)

set 

1 

true

Syslog 

syslog(x,y)
set 1NoneMatch in both logs local_log(x,y)
set0NoneSyslog syslog(x,y)


















 

...

      Note:  The error thrown will be PtlLogMatchError

     

       Return:      

      self.file_to_check (/ / file_to_check =1 for syslog, file_to_check=2 for local logs  and file_to_check=3 for both)

...

        1) PBSSyslogUtils.get_log_type() to check if local logs/ syslog is to be checked

          x= PBSSyslogUtils.get_log_type(syslog=syslog)

       2) if x =1 or 3 -  read _log_match(syslog=true)

...