meta data

This commit is contained in:
insanity 2018-07-05 15:58:39 +09:00
parent 97352b8eab
commit 7f86007bef

View File

@ -1202,6 +1202,10 @@ INSERT INTO public.meta_item_unit
(id,mark,unit)
VALUES
(9, 'PPS', 'Packet Per Second');
INSERT INTO public.meta_item_unit
(id,mark,unit)
VALUES
(10, 'ms', 'Millisecond');
INSERT INTO public.meta_display_item_category
@ -1218,10 +1222,7 @@ VALUES
INSERT INTO public.meta_display_item_mapping ( id , meta_crawler_mapping_id , meta_display_item_id , is_default , priority , is_required , meta_display_item_category_id ) VALUES ( 1 , 252 , 1 , 'true' , 1 , 'true' , 1 );
INSERT INTO public.meta_collection_item
( id , key , item , item_class )
VALUES
( 1 , 'ssh.response_time' , '' , '' );
INSERT INTO public.meta_collection_item ( id , key , item , item_class , meta_item_unit_id ) VALUES ( 1 , 'ssh.response_time' , '' , '' , 10 );
INSERT INTO public.meta_collection_item_mapping