Skip to content

Instantly share code, notes, and snippets.

@yasu47b
Last active December 1, 2016 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yasu47b/15a566e479c6f2a770a0e7bb39d9b4fd to your computer and use it in GitHub Desktop.
Save yasu47b/15a566e479c6f2a770a0e7bb39d9b4fd to your computer and use it in GitHub Desktop.

登録テンプレートの確認

select * from hosts where status=3;
select hostid, host, name from hosts where status=3;

テンプレートのアイテムを確認

確認したいテンプレートのhostidが10105の場合

select * from items where hostid=10105
select itemid, name, key_, description from items where hostid=10105

ヒストリのclockをタイムスタンプに変換

select * from history_uint where itemid=27977;
select to_timestamp(1480575497);

メモ

  • 無効ホストはhostsテーブルのstatusが1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment