diff --git a/src/main/resources/common/init.meta.sql b/src/main/resources/common/init.meta.sql index cf23fca..fb80c4f 100644 --- a/src/main/resources/common/init.meta.sql +++ b/src/main/resources/common/init.meta.sql @@ -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