-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest-metadata.json
2001 lines (2001 loc) · 151 KB
/
test-metadata.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{"endpoint": "laiwei-test0", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test1", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test2", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test3", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test4", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test5", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test6", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test7", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test8", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test9", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test10", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test11", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test12", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test13", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test14", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test15", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test16", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test17", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test18", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test19", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test20", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test21", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test22", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test23", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test24", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test25", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test26", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test27", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test28", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test29", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test30", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test31", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test32", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test33", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test34", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test35", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test36", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test37", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test38", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test39", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test40", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test41", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test42", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test43", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test44", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test45", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test46", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test47", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test48", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test49", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test50", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test51", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test52", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test53", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test54", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test55", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test56", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test57", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test58", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test59", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test60", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test61", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test62", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test63", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test64", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test65", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test66", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test67", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test68", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test69", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test70", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test71", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test72", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test73", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test74", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test75", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test76", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test77", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test78", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test79", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test80", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test81", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test82", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test83", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test84", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test85", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test86", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test87", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test88", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test89", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test90", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test91", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test92", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test93", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test94", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test95", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test96", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test97", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test98", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test99", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test100", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test101", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test102", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test103", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test104", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test105", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test106", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test107", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test108", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test109", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test110", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test111", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test112", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test113", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test114", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test115", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test116", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test117", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test118", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test119", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test120", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test121", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test122", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test123", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test124", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test125", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test126", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test127", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test128", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test129", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test130", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test131", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test132", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test133", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test134", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test135", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test136", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test137", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test138", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test139", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test140", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test141", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test142", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test143", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test144", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test145", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test146", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test147", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test148", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test149", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test150", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test151", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test152", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test153", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test154", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test155", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test156", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test157", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test158", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test159", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test160", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test161", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test162", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test163", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test164", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test165", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test166", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test167", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test168", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test169", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test170", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test171", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test172", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test173", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test174", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test175", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test176", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test177", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test178", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test179", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test180", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test181", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test182", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test183", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test184", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test185", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test186", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test187", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test188", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test189", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test190", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test191", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test192", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test193", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test194", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test195", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test196", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test197", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test198", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test199", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test200", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test201", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test202", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test203", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test204", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test205", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test206", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test207", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test208", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test209", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test210", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test211", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test212", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test213", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test214", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test215", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test216", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test217", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test218", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test219", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test220", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test221", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test222", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test223", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test224", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test225", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test226", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test227", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test228", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test229", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test230", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test231", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test232", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test233", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test234", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test235", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test236", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test237", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test238", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test239", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test240", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test241", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test242", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test243", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test244", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test245", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test246", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test247", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test248", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test249", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test250", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test251", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test252", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test253", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test254", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test255", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test256", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test257", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test258", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test259", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test260", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test261", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test262", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test263", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test264", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test265", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test266", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test267", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test268", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test269", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test270", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test271", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test272", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test273", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test274", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test275", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test276", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test277", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test278", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test279", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test280", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test281", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test282", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test283", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test284", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test285", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test286", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test287", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test288", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test289", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test290", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test291", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test292", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test293", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test294", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test295", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test296", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test297", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test298", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test299", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test300", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test301", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test302", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test303", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test304", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test305", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test306", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test307", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test308", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test309", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test310", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test311", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test312", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test313", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test314", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test315", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test316", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test317", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test318", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test319", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test320", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test321", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test322", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test323", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test324", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test325", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test326", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test327", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test328", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test329", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test330", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test331", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test332", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test333", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test334", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test335", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test336", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test337", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test338", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test339", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test340", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test341", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test342", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test343", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test344", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test345", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test346", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test347", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test348", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test349", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test350", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test351", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test352", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test353", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test354", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test355", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test356", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test357", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test358", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test359", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test360", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test361", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test362", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test363", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test364", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test365", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test366", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test367", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test368", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test369", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test370", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test371", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test372", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test373", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test374", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test375", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test376", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test377", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test378", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test379", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test380", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test381", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test382", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test383", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test384", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test385", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test386", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test387", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test388", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test389", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test390", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test391", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test392", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test393", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test394", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test395", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test396", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test397", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test398", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test399", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test400", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test401", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test402", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test403", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test404", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test405", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test406", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test407", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test408", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test409", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test410", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test411", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test412", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test413", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test414", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test415", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test416", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test417", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test418", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test419", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test420", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test421", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test422", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test423", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test424", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test425", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test426", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test427", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test428", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test429", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test430", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test431", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test432", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test433", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test434", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test435", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test436", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test437", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test438", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test439", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test440", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test441", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test442", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test443", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test444", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test445", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test446", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test447", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test448", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test449", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test450", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test451", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test452", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test453", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test454", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test455", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test456", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test457", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test458", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test459", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test460", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test461", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test462", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test463", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test464", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test465", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test466", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test467", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test468", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test469", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test470", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test471", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test472", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test473", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test474", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test475", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test476", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test477", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test478", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test479", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test480", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test481", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test482", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test483", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test484", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test485", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test486", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test487", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test488", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test489", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test490", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test491", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test492", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test493", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test494", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test495", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test496", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test497", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test498", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}
,
{"endpoint": "laiwei-test499", "tags": "home=bj,srv=falcon", "timestamp": 1234567, "metric": "cpu.idle", "value": 1, "counterType": "GAUGE", "step": 30}