5

nagios3 の status.dat ファイルを解析し、python スクリプトで xml として出力したいと思います。xml 部分は簡単ですが、ファイルを解析するにはどうすればよいですか? 複数行の正規表現を使用しますか? 多くのホストとサービスが監視されているため、ファイルが大きくなる可能性があります。ファイル全体をメモリにロードするのが賢明ですか?
重要な状態にあるサービスとそれらが属するホストを抽出するだけで済みます。

正しい方向への助けと指摘は高く評価されます。

LEファイルは次のようになります。

########################################
#          NAGIOS STATUS FILE
#
# THIS FILE IS AUTOMATICALLY GENERATED
# BY NAGIOS.  DO NOT MODIFY THIS FILE!
########################################

info {
    created=1233491098
    version=2.11
    }

program {
    modified_host_attributes=0
    modified_service_attributes=0
    nagios_pid=15015
    daemon_mode=1
    program_start=1233490393
    last_command_check=0
    last_log_rotation=0
    enable_notifications=1
    active_service_checks_enabled=1
    passive_service_checks_enabled=1
    active_host_checks_enabled=1
    passive_host_checks_enabled=1
    enable_event_handlers=1
    obsess_over_services=0
    obsess_over_hosts=0
    check_service_freshness=1
    check_host_freshness=0
    enable_flap_detection=0
    enable_failure_prediction=1
    process_performance_data=0
    global_host_event_handler=
    global_service_event_handler=
    total_external_command_buffer_slots=4096
    used_external_command_buffer_slots=0
    high_external_command_buffer_slots=0
    total_check_result_buffer_slots=4096
    used_check_result_buffer_slots=0
    high_check_result_buffer_slots=2
    }

host {
    host_name=localhost
    modified_attributes=0
    check_command=check-host-alive
    event_handler=
    has_been_checked=1
    should_be_scheduled=0
    check_execution_time=0.019
    check_latency=0.000
    check_type=0
    current_state=0
    last_hard_state=0
    plugin_output=PING OK - Packet loss = 0%, RTA = 3.57 ms
    performance_data=
    last_check=1233490883
    next_check=0
    current_attempt=1
    max_attempts=10
    state_type=1
    last_state_change=1233489475
    last_hard_state_change=1233489475
    last_time_up=1233490883
    last_time_down=0
    last_time_unreachable=0
    last_notification=0
    next_notification=0
    no_more_notifications=0
    current_notification_number=0
    notifications_enabled=1
    problem_has_been_acknowledged=0
    acknowledgement_type=0
    active_checks_enabled=1
    passive_checks_enabled=1
    event_handler_enabled=1
    flap_detection_enabled=1
    failure_prediction_enabled=1
    process_performance_data=1
    obsess_over_host=1
    last_update=1233491098
    is_flapping=0
    percent_state_change=0.00
    scheduled_downtime_depth=0
    }

service {
    host_name=gateway
    service_description=PING
    modified_attributes=0
    check_command=check_ping!100.0,20%!500.0,60%
    event_handler=
    has_been_checked=1
    should_be_scheduled=1
    check_execution_time=4.017
    check_latency=0.210
    check_type=0
    current_state=0
    last_hard_state=0
    current_attempt=1
    max_attempts=4
    state_type=1
    last_state_change=1233489432
    last_hard_state_change=1233489432
    last_time_ok=1233491078
    last_time_warning=0
    last_time_unknown=0
    last_time_critical=0
    plugin_output=PING OK - Packet loss = 0%, RTA = 2.98 ms
    performance_data=
    last_check=1233491078
    next_check=1233491378
    current_notification_number=0
    last_notification=0
    next_notification=0
    no_more_notifications=0
    notifications_enabled=1
    active_checks_enabled=1
    passive_checks_enabled=1
    event_handler_enabled=1
    problem_has_been_acknowledged=0
    acknowledgement_type=0
    flap_detection_enabled=1
    failure_prediction_enabled=1
    process_performance_data=1
    obsess_over_service=1
    last_update=1233491098
    is_flapping=0
    percent_state_change=0.00
    scheduled_downtime_depth=0
    }

任意の数のホストを持つことができ、ホストは任意の数のサービスを持つことができます。

4

7 に答える 7

9

ふぅ、自分で mk_livestatus を取得します。http://mathias-kettner.de/checkmk_livestatus.html

于 2010-04-03T02:46:05.447 に答える
5

Nagiosity はまさにあなたが望むことを行います:

http://code.google.com/p/nagiosity/

于 2009-02-23T04:11:04.360 に答える
3

上記の例から恥知らずに盗んだものとして、nagios セクションの配列を含む dict を返す Python 2.4 用のバージョン ビルドがあります。

def parseConf(source):
    conf = {}
    patID=re.compile(r"(?:\s*define)?\s*(\w+)\s+{")
    patAttr=re.compile(r"\s*(\w+)(?:=|\s+)(.*)")
    patEndID=re.compile(r"\s*}")
    for line in source.splitlines():
        line=line.strip()
        matchID = patID.match(line)
        matchAttr = patAttr.match(line)
        matchEndID = patEndID.match( line)
        if len(line) == 0 or line[0]=='#':
            pass
        elif matchID:
            identifier = matchID.group(1)
            cur = [identifier, {}]
        elif matchAttr:
            attribute = matchAttr.group(1)
            value = matchAttr.group(2).strip()
            cur[1][attribute] = value
        elif matchEndID and cur:
            conf.setdefault(cur[0],[]).append(cur[1])              
            del cur
    return conf

「devops」で始まる連絡先グループを持つホストのすべての名前を取得するには:

nagcfg=parseConf(stringcontaingcompleteconfig)
hostlist=[host['host_name'] for host in nagcfg['host'] 
          if host['contact_groups'].startswith('devops')]
于 2016-02-10T09:57:58.120 に答える
2

nagiosとその設定ファイルはわかりませんが、構造は非常に単純なようです。

# comment
identifier {
  attribute=
  attribute=value
}

簡単に翻訳することができます

<identifier>
    <attribute name="attribute-name">attribute-value</attribute>
</identifier>

すべてルートレベルの<nagios>タグ内に含まれています。

値に改行がありません。nagiosには複数行の値がありますか?

属性値内の等号に注意する必要があるため、正規表現を欲張りでないものに設定します。

于 2009-02-02T15:12:37.633 に答える
2

Andreaのソリューションを少し調整すると、そのコードを使用してstatus.datとobjects.cacheの両方を解析できます。

def parseConf(source):
conf = []
for line in source.splitlines():
    line=line.strip()
    matchID = re.match(r"(?:\s*define)?\s*(\w+)\s+{", line)
    matchAttr = re.match(r"\s*(\w+)(?:=|\s+)(.*)", line)
    matchEndID = re.match(r"\s*}", line)
    if len(line) == 0 or line[0]=='#':
        pass
    elif matchID:
        identifier = matchID.group(1)
        cur = [identifier, {}]
    elif matchAttr:
        attribute = matchAttr.group(1)
        value = matchAttr.group(2).strip()
        cur[1][attribute] = value
    elif matchEndID and cur:
        conf.append(cur)
        del cur
return conf

nagiosがこれらのファイルに2つの異なる形式を使用することを選択した理由は少し不可解ですが、両方を使用可能なpythonオブジェクトに解析すると、外部コマンドファイルを介してかなりの魔法をかけることができます。

誰かがこれを実際のxmldomに組み込むための解決策を持っているなら、それは素晴らしいことです。

于 2010-06-04T21:08:35.600 に答える
2

過去数か月間、Nagios の status.dat と objects.cache を解析し、Nagios データの非常に便利な操作を可能にするモデルを構築するツールを作成してリリースしました。これを使用して、簡素化された「ミニ」Nagios である内部操作ダッシュボードを駆動します。継続的な開発が行われており、テストとドキュメンテーションを怠っていますが、コードはそれほどクレイジーではなく、かなり簡単に理解できます。

ご意見をお聞かせください... https://github.com/zebpalmer/NagParser

于 2012-02-16T19:55:52.590 に答える
2

次のようなことができます。

def parseConf(filename):
    conf = []
    with open(filename, 'r') as f:
        for i in f.readlines():
            if i[0] == '#': continue
            matchID = re.search(r"([\w]+) {", i)
            matchAttr = re.search(r"[ ]*([\w]+)=([\w\d]*)", i)
            matchEndID = re.search(r"[ ]*}", i)
            if matchID:
                identifier = matchID.group(1)
                cur = [identifier, {}]
            elif matchAttr:
                attribute = matchAttr.group(1)
                value = matchAttr.group(2)
                cur[1][attribute] = value
            elif matchEndID:
                conf.append(cur)
    return conf

def conf2xml(filename):
    conf = parseConf(filename)
    xml = ''
    for ID in conf:
        xml += '<%s>\n' % ID[0]
        for attr in ID[1]:
            xml += '\t<attribute name="%s">%s</attribute>\n' % \
                    (attr, ID[1][attr])
        xml += '</%s>\n' % ID[0]
    return xml

次に、次のことを試してください。

print   conf2xml('conf.dat')
于 2009-02-02T16:45:17.353 に答える