zabbixデータベースitems vlaue_によるtype選択的history関連テーブルの格納
1312 ワード
今日zabbixはデータを監視して分析処理を行い、zabbixのデータがどのように保存されているかをよく知っているリーダーたちがまた出かけたので、自分で分析処理するしかありません.関連するテーブルはitems、history、history_です.str、history_uint. itemsは、監視装置の各監視指標である.history、history_str、history_uintの3つのテーブルはいずれも監視指標の格納データであるが,それらの指標がそのテーブルに格納されているのかは不明である.
結論itemsのvalue_type対応history関連テーブルデータは以下の通りです:value_typeが0のデータはhistory value_へtypeが1のデータはhistory_str ...... それからzabbixの辞書を見て01234の対応する説明を見ればいいです.history→0、history_str→1、history_log→2、history_uint→3、history_text→4
:
1: items value_type , value , value_type 。
2: 。( items value_type !!!)
3: :
history :
history、history_str、history_log、history_uint、history_text。
SELECT DISTINCT
(i.`value_type`)
FROM
zabbix.`items` i
RIGHT JOIN zabbix.`history_sync` h
ON h.`itemid` = i.`itemid`
結論itemsのvalue_type対応history関連テーブルデータは以下の通りです:value_typeが0のデータはhistory value_へtypeが1のデータはhistory_str ...... それからzabbixの辞書を見て01234の対応する説明を見ればいいです.history→0、history_str→1、history_log→2、history_uint→3、history_text→4