當前位置: 首頁>>代碼示例>>Python>>正文


Python syslog.LOG_NOTICE屬性代碼示例

本文整理匯總了Python中syslog.LOG_NOTICE屬性的典型用法代碼示例。如果您正苦於以下問題:Python syslog.LOG_NOTICE屬性的具體用法?Python syslog.LOG_NOTICE怎麽用?Python syslog.LOG_NOTICE使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在syslog的用法示例。


在下文中一共展示了syslog.LOG_NOTICE屬性的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: send

# 需要導入模塊: import syslog [as 別名]
# 或者: from syslog import LOG_NOTICE [as 別名]
def send(self, body, title='', notify_type=NotifyType.INFO, **kwargs):
        """
        Perform Syslog Notification
        """

        _pmap = {
            NotifyType.INFO: syslog.LOG_INFO,
            NotifyType.SUCCESS: syslog.LOG_NOTICE,
            NotifyType.FAILURE: syslog.LOG_CRIT,
            NotifyType.WARNING: syslog.LOG_WARNING,
        }

        # Always call throttle before any remote server i/o is made
        self.throttle()
        try:
            syslog.syslog(_pmap[notify_type], body)

        except KeyError:
            # An invalid notification type was specified
            self.logger.warning(
                'An invalid notification type '
                '({}) was specified.'.format(notify_type))
            return False

        return True 
開發者ID:caronc,項目名稱:apprise,代碼行數:27,代碼來源:NotifySyslog.py

示例2: test_emitCustomPriorityOverridesError

# 需要導入模塊: import syslog [as 別名]
# 或者: from syslog import LOG_NOTICE [as 別名]
def test_emitCustomPriorityOverridesError(self):
        """
        L{SyslogObserver.emit} uses the value of the C{'syslogPriority'} key if
        it is specified even if the event dictionary represents an error.
        """
        self.observer.emit({
                'message': ('hello, world',), 'isError': True, 'system': '-',
                'syslogPriority': stdsyslog.LOG_NOTICE,
                'failure': Failure(Exception("bar"))})
        self.assertEqual(
            self.events,
            [(stdsyslog.LOG_NOTICE, '[-] hello, world')]) 
開發者ID:proxysh,項目名稱:Safejumper-for-Desktop,代碼行數:14,代碼來源:test_syslog.py

示例3: notice

# 需要導入模塊: import syslog [as 別名]
# 或者: from syslog import LOG_NOTICE [as 別名]
def notice(msg):
    syslog.syslog(syslog.LOG_NOTICE, _encode(msg)) 
開發者ID:kdart,項目名稱:pycopia,代碼行數:4,代碼來源:logging.py

示例4: loglevel_notice

# 需要導入模塊: import syslog [as 別名]
# 或者: from syslog import LOG_NOTICE [as 別名]
def loglevel_notice():
    loglevel(syslog.LOG_NOTICE) 
開發者ID:kdart,項目名稱:pycopia,代碼行數:4,代碼來源:logging.py

示例5: test_get_log_level_from_code

# 需要導入模塊: import syslog [as 別名]
# 或者: from syslog import LOG_NOTICE [as 別名]
def test_get_log_level_from_code(self):
        self.assertEquals('CRITICAL', LogLevel.find_by_syslog_code(syslog.LOG_CRIT)['name'])
        self.assertEquals('WARNING', LogLevel.find_by_syslog_code(syslog.LOG_WARNING)['name'])
        self.assertEquals('DEBUG', LogLevel.find_by_syslog_code(syslog.LOG_DEBUG)['name'])
        self.assertEquals('INFO', LogLevel.find_by_syslog_code(syslog.LOG_INFO)['name'])
        self.assertEquals('ERROR', LogLevel.find_by_syslog_code(syslog.LOG_ERR)['name'])
        self.assertEquals('NOTICE', LogLevel.find_by_syslog_code(syslog.LOG_NOTICE)['name'])
        self.assertEquals('', LogLevel.find_by_syslog_code(9999)['name']) 
開發者ID:globocom,項目名稱:glog-cli,代碼行數:10,代碼來源:test_formats.py

示例6: test_get_log_level_code

# 需要導入模塊: import syslog [as 別名]
# 或者: from syslog import LOG_NOTICE [as 別名]
def test_get_log_level_code(self):
        self.assertEquals(syslog.LOG_CRIT, LogLevel.find_by_level_name('CRITICAL'))
        self.assertEquals(syslog.LOG_WARNING, LogLevel.find_by_level_name('WARNING'))
        self.assertEquals(syslog.LOG_DEBUG, LogLevel.find_by_level_name('DEBUG'))
        self.assertEquals(syslog.LOG_INFO, LogLevel.find_by_level_name('INFO'))
        self.assertEquals(syslog.LOG_ERR, LogLevel.find_by_level_name('ERROR'))
        self.assertEquals(syslog.LOG_NOTICE, LogLevel.find_by_level_name('NOTICE'))
        self.assertIsNone(LogLevel.find_by_level_name('UNKNOWN')) 
開發者ID:globocom,項目名稱:glog-cli,代碼行數:10,代碼來源:test_formats.py

示例7: Close_valve

# 需要導入模塊: import syslog [as 別名]
# 或者: from syslog import LOG_NOTICE [as 別名]
def Close_valve():
    Alert("Closing the RO/DI valve", syslog.LOG_NOTICE)
    try:
        urllib2.urlopen("http://192.168.0.150/set.cmd?user=admin+pass=12345678+cmd=setpower+p61=0", timeout = 10)
        time.sleep(5)
    except urllib2.URLError as e:
        Send_alert("Cannot communicate with valve: " + type(e), syslog.LOG_ERR) 
開發者ID:aquamonitor,項目名稱:Aquamonitor,代碼行數:9,代碼來源:rodi-1.8.py

示例8: Open_valve

# 需要導入模塊: import syslog [as 別名]
# 或者: from syslog import LOG_NOTICE [as 別名]
def Open_valve():
    if Refilling() == True:
        Alert("RO/DI Valve already opened",syslog.LOG_WARNING)
        sys.exit(5)
    else:
        Alert("Opening the RO/DI valve",syslog.LOG_NOTICE)
        try:
            urllib2.urlopen("http://192.168.0.150/set.cmd?user=admin+pass=12345678+cmd=setpower+p61=1", timeout = 10)
            time.sleep(5)
        except urllib2.URLError as e:
            Send_alert("Cannot communicate with valve: " + type(e), syslog.LOG_ERR)
        time.sleep(VALVE_CHGSTATE_TIMER) 
開發者ID:aquamonitor,項目名稱:Aquamonitor,代碼行數:14,代碼來源:rodi-1.8.py

示例9: Alert

# 需要導入模塊: import syslog [as 別名]
# 或者: from syslog import LOG_NOTICE [as 別名]
def Alert(message, probe):                                                    # In any event of an alert, inform through log, mail & pushover
    global Alarms
    Alarms[probe] = datetime.now()                                            # set a timestamp for recurring alarm cooldown and alert
    if probe == "WATER_LEAK_DETECTOR_1" or probe == "WATER_LEAK_DETECTOR_2":
        Send_alert(message,syslog.LOG_EMERG)
    elif probe == "FLOATSW_HIGH_WL":
        Send_alert(message,syslog.LOG_ERR)
    elif probe == "FLOATSW_LOW_WL":
        Send_alert(message,syslog.LOG_NOTICE) 
開發者ID:aquamonitor,項目名稱:Aquamonitor,代碼行數:11,代碼來源:aquamonitor-1.8.py

示例10: syslogout

# 需要導入模塊: import syslog [as 別名]
# 或者: from syslog import LOG_NOTICE [as 別名]
def syslogout(msg, logLevel=syslog.LOG_DEBUG, logFacility=syslog.LOG_USER):

    # Output to the syslog.
    arg0 = os.path.basename(sys.argv[0])
    host = socket.gethostname()

    logger = logging.getLogger()
    logger.setLevel(logging.DEBUG)

    f = "%(asctime)s " + host + \
        " %(module)s(%(process)d): %(levelname)s: %(message)s"

    formatter = logging.Formatter(fmt=f, datefmt='%b %d %H:%M:%S')

    fh = logging.FileHandler(
        filename='/var/log/masakari/masakari-instancemonitor.log')
    fh.setLevel(logging.DEBUG)
    fh.setFormatter(formatter)

    logger.addHandler(fh)

    if logLevel == syslog.LOG_DEBUG:
        logger.debug(msg)
    elif logLevel == syslog.LOG_INFO or logLevel == syslog.LOG_NOTICE:
        logger.info(msg)
    elif logLevel == syslog.LOG_WARNING:
        logger.warn(msg)
    elif logLevel == syslog.LOG_ERR:
        logger.error(msg)
    elif logLevel == syslog.LOG_CRIT or \
            logLevel == syslog.LOG_ALERT or \
            logLevel == syslog.LOG_EMERGE:
        logger.critical(msg)
    else:
        logger.debug(msg)

    logger.removeHandler(fh)

#################################
# Function name:
#   virEventFilter
#
# Function overview:
#   Filter events from libvirt.
#
# Argument:
#   eventID   : EventID
#   eventType : Event type
#   detail    : Event name
#   uuID      : UUID
#
# Return value:
#   None
#
################################# 
開發者ID:ntt-sic,項目名稱:masakari,代碼行數:57,代碼來源:libvirt_eventfilter.py

示例11: tail_format

# 需要導入模塊: import syslog [as 別名]
# 或者: from syslog import LOG_NOTICE [as 別名]
def tail_format(fields=["source", "facility", "line", "module"], color=True):
    def format(entry):
        message_text = entry.message
        timestamp = entry.timestamp.to('local')
        level_string = entry.level

        log_color = 'green'
        log_background = None

        if entry.level == syslog.LOG_CRIT:
            log_color = 'white'
            log_background = 'on_red'
            level_string = "CRITICAL"
        elif entry.level == syslog.LOG_ERR:
            log_color = 'red'
            level_string = "ERROR   "
        elif entry.level == syslog.LOG_WARNING:
            log_color = 'yellow'
            level_string = "WARNING "
        elif entry.level == syslog.LOG_NOTICE:
            log_color = 'green'
            level_string = "NOTICE  "
        elif entry.level == syslog.LOG_INFO:
            log_color = 'green'
            level_string = "INFO    "
        elif entry.level == syslog.LOG_DEBUG:
            log_color = 'blue'
            level_string = "DEBUG   "

        if message_text:
            message_text = " " + message_text + " #"

        local_fields = list(fields)
        if "message" in local_fields:
            local_fields.remove("message")

        field_text = map(lambda f: "{}:{}".format(f, entry.message_dict.get(f, "")), local_fields)

        log = "{level_string}[{timestamp}]{message_text} {field_text}".format(
            timestamp=timestamp.format("YYYY-MM-DD HH:mm:ss.SS"),
            level_string=level_string,
            message_text=message_text,
            field_text="; ".join(field_text))
        if color:
            return colored(log, log_color, log_background)
        else:
            return log

    return format 
開發者ID:blue-yonder,項目名稱:bonfire,代碼行數:51,代碼來源:formats.py


注:本文中的syslog.LOG_NOTICE屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。