datadog agent接收指标数据,自己实现server

datadog agent配置datadog.yaml

dd_url: http://192.168.2.133:31636

重启datadog,service datadog-agent restart

spring boot启动类:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@EnableAutoConfiguration
@EnableConfigurationProperties
@ComponentScan
public class StartApplication {
	public static void main(String[] args) throws Exception {
		SpringApplication.run(StartApplication.class, args);
	}
}

  

实现controller:

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.zip.InflaterInputStream;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.context.annotation.Description;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
@Description("A controller for handling requests for hello messages")
public class SampleController {

	@RequestMapping("/metrics")
	public String foo() {
		return "test";
	}

	@RequestMapping(value = { "/api/v1/series" }, method = RequestMethod.POST)
	public void dataDogRev(HttpServletRequest request, HttpServletResponse response) {
		try {
			InflaterInputStream iis = new InflaterInputStream(request.getInputStream());
			ByteArrayOutputStream baos = new ByteArrayOutputStream();
			byte[] data = new byte[2048];
			int len = 0;
			while ((len = iis.read(data)) > -1) {
				baos.write(data, 0, len);
			}
			String dataStr = new String(baos.toByteArray(), "UTF-8");
			System.out.println(dataStr);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}

  打印出的agent上报的监控数据,json格式内容如下:

{
	"series": [{
		"metric": "datadog.trace_agent.stats_writer.stats_buckets",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.receiver.tcp_connections",
		"points": [
			[1580960310, 0]
		],
		"tags": ["status:accepted", "version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.events.max_eps.sample_rate",
		"points": [
			[1580960310, 1]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.trace_writer.traces",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.stats_writer.retries",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.process.agent",
		"points": [
			[1580960310, 1]
		],
		"tags": ["revision:02e0969", "version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.stats_writer.encode_ms.count",
		"points": [
			[1580960310, 0.1]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.events.max_eps.current_rate",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.receiver.ratelimit",
		"points": [
			[1580960310, 1]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.trace_writer.bytes",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.events.max_eps.max_rate",
		"points": [
			[1580960310, 200]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.heartbeat",
		"points": [
			[1580960310, 1]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.cpu_percent",
		"points": [
			[1580960310, 0.033333]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.trace_writer.payloads",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.trace_writer.bytes_estimated",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.stats_writer.bytes",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.receiver.tcp_connections",
		"points": [
			[1580960310, 0]
		],
		"tags": ["status:timedout", "version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.trace_writer.errors",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.trace_writer.spans",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.stats_writer.encode_ms.avg",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.events.max_eps.reached_max",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.heap_alloc",
		"points": [
			[1580960310, 3628592]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.trace_writer.events",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.stats_writer.payloads",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.stats_writer.errors",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.stats_writer.encode_ms.max",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.receiver.tcp_connections",
		"points": [
			[1580960310, 0]
		],
		"tags": ["status:errored", "version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.receiver.out_chan_fill",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.trace_writer.bytes_uncompressed",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.trace_writer.retries",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.stats_writer.splits",
		"points": [
			[1580960310, 0]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "datadog.trace_agent.receiver.tcp_connections",
		"points": [
			[1580960310, 0]
		],
		"tags": ["status:rejected", "version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "rate",
		"interval": 10
	}, {
		"metric": "system.fs.file_handles.max",
		"points": [
			[1580960319, 1610441]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.file_handles.allocated",
		"points": [
			[1580960319, 2848]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.file_handles.allocated_unused",
		"points": [
			[1580960319, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.file_handles.in_use",
		"points": [
			[1580960319, 0.0017684596952015008]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.file_handles.used",
		"points": [
			[1580960319, 2848]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.cpu.guest",
		"points": [
			[1580960320, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.cpu.user",
		"points": [
			[1580960320, 15.498247370108741]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.cpu.system",
		"points": [
			[1580960320, 1.9445835419160638]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.cpu.iowait",
		"points": [
			[1580960320, 0.9347354364267672]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.cpu.idle",
		"points": [
			[1580960320, 81.62243364892818]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.cpu.stolen",
		"points": [
			[1580960320, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.uptime",
		"points": [
			[1580960324, 5516966]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.mem.slab",
		"points": [
			[1580960325, 746.6484375]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.mem.commit_limit",
		"points": [
			[1580960325, 7942.77734375]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.mem.committed_as",
		"points": [
			[1580960325, 9290.0078125]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.mem.used",
		"points": [
			[1580960325, 12142.98046875]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.mem.usable",
		"points": [
			[1580960325, 12114.66015625]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.mem.buffered",
		"points": [
			[1580960325, 219.8515625]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.mem.shared",
		"points": [
			[1580960325, 892.36328125]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.mem.page_tables",
		"points": [
			[1580960325, 22.08984375]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.swap.free",
		"points": [
			[1580960325, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.swap.used",
		"points": [
			[1580960325, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.mem.total",
		"points": [
			[1580960325, 15885.55859375]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.mem.cached",
		"points": [
			[1580960325, 9384.34375]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.swap.pct_free",
		"points": [
			[1580960325, 1]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.mem.free",
		"points": [
			[1580960325, 3742.578125]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.mem.pct_usable",
		"points": [
			[1580960325, 0.7626209733044188]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.swap.cached",
		"points": [
			[1580960325, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.swap.total",
		"points": [
			[1580960325, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.in_use",
		"points": [
			[1580960312, 0.31299999356269836]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "rootfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.free",
		"points": [
			[1580960312, 2030499]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "devtmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.in_use",
		"points": [
			[1580960312, 0.1599999964237213]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.used",
		"points": [
			[1580960312, 343]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 1.2332275433691093]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.free",
		"points": [
			[1580960312, 8123864]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "devtmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.free",
		"points": [
			[1580960312, 1626684]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "tmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.in_use",
		"points": [
			[1580960312, 0.033219557255506516]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 5.753671727635226]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.total",
		"points": [
			[1580960312, 40120608]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "rootfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.used",
		"points": [
			[1580960312, 467]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "devtmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.total",
		"points": [
			[1580960312, 1626684]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "tmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.total",
		"points": [
			[1580960312, 2555904]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.used",
		"points": [
			[1580960312, 149172]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 37.975912600440516]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.total",
		"points": [
			[1580960312, 2033351]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "tmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 2.133149870650767]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0.06666098854958794]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.free",
		"points": [
			[1580960312, 2033350]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "tmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.free",
		"points": [
			[1580960312, 65193]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.used",
		"points": [
			[1580960312, 11906776]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.free",
		"points": [
			[1580960312, 26152776]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.free",
		"points": [
			[1580960312, 781336]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.in_use",
		"points": [
			[1580960312, 0.31299999356269836]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.total",
		"points": [
			[1580960312, 2555904]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "rootfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.free",
		"points": [
			[1580960312, 2470998]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.free",
		"points": [
			[1580960312, 26152776]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "rootfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.used",
		"points": [
			[1580960312, 1]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "tmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.total",
		"points": [
			[1580960312, 999320]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 1.1131859168097216]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 5.75367364796581]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.in_use",
		"points": [
			[1580960312, 0.033219557255506516]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "rootfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.in_use",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "tmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.in_use",
		"points": [
			[1580960312, 4.91799028168316e-07]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "tmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.total",
		"points": [
			[1580960312, 40120608]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.total",
		"points": [
			[1580960312, 65536]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 2.1331508199236606]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.free",
		"points": [
			[1580960312, 2470998]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "rootfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.used",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "devtmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.in_use",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "devtmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.used",
		"points": [
			[1580960312, 84906]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.total",
		"points": [
			[1580960312, 8123864]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "devtmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.used",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "tmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.in_use",
		"points": [
			[1580960312, 0.0052337646484375]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "/dev/vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 37.984244012388245]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.used",
		"points": [
			[1580960312, 11906776]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "rootfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.used",
		"points": [
			[1580960312, 84906]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "rootfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.total",
		"points": [
			[1580960312, 2030966]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "devtmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 32.13682194297435]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.fs.inodes.in_use",
		"points": [
			[1580960312, 0.00022993984748609364]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "devtmpfs",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 1.1131854391232674]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 2.9789117421973548]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.read_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.disk.write_time_pct",
		"points": [
			[1580960312, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.mem.used",
		"points": [
			[1580960313, 812536]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.mem.peak",
		"points": [
			[1580960313, 813432]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.aof.last_rewrite_time",
		"points": [
			[1580960313, -1]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.cpu.sys_children",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.clients.biggest_input_buf",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.mem.fragmentation_ratio",
		"points": [
			[1580960313, 3.190000057220459]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.aof.rewrite",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.stats.keyspace_hits",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.pubsub.channels",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.pubsub.patterns",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.cpu.user_children",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.mem.rss",
		"points": [
			[1580960313, 2588672]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.rdb.last_bgsave_time",
		"points": [
			[1580960313, -1]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.keys.evicted",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.net.slaves",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.replication.backlog_histlen",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.cpu.sys",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.net.clients",
		"points": [
			[1580960313, 1]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.clients.longest_output_list",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.perf.latest_fork_usec",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.info.latency_ms",
		"points": [
			[1580960313, 0.46000000834465027]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.rdb.changes_since_last",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.net.rejected",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.replication.master_repl_offset",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.net.commands",
		"points": [
			[1580960313, 0.20000069300573786]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.mem.maxmemory",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.net.instantaneous_ops_per_sec",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.clients.blocked",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.mem.lua",
		"points": [
			[1580960313, 37888]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.rdb.bgsave",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.keys.expired",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.stats.keyspace_misses",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "redis.cpu.user",
		"points": [
			[1580960313, 0]
		],
		"tags": ["redis_host:localhost", "redis_port:6379", "redis_role:master"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "overlay_br_int",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.udp.snd_buf_errors",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_monitor",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_495d8d3d",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_3964dfb0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_84fbcffc",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.tcp.listen_drops",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.tcp.failed_retransmits",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 61.86677483471603]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_72eb7a8f",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_495d8d3d",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 136.53362630271198]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_e3c317d5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.tcp.in_segs",
		"points": [
			[1580960317, 50.133066390717175]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_495d8d3d",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "lo",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.tcp.listen_overflows",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 57.600039367702685]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vxlan_sys_4789",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_e3c317d5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_tun_b0345198",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 48059.642430727494]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "eth0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.udp.in_datagrams",
		"points": [
			[1580960317, 51.19973632948286]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 750.9348014351618]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_72eb7a8f",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_72eb7a8f",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_84fbcffc",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_72eb7a8f",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_770ee7ac",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_e3c317d5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 4.8666730096687765]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_3964dfb0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_72eb7a8f",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.udp.no_ports",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.udp.in_errors",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_72eb7a8f",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 29.866579793546958]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "lo",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_3964dfb0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_495d8d3d",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_770ee7ac",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "overlay_br_int",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_e3c317d5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.udp.out_datagrams",
		"points": [
			[1580960317, 8.533288438821264]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "eth0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "gw_00bc543c",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_495d8d3d",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_72eb7a8f",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_770ee7ac",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_e3c317d5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_495d8d3d",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0.333334037994179]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_72eb7a8f",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 121.33349147393388]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_3964dfb0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_84fbcffc",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_84fbcffc",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_770ee7ac",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 4915.202734376521]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vxlan_sys_4789",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_e3c317d5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_tun_b0345198",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_84fbcffc",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 28398.86111129478]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "lo",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_3964dfb0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_3964dfb0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "gw_00bc543c",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_72eb7a8f",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "overlay_br_int",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 26214.334166831995]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "eth0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_770ee7ac",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "docker0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_tun_b0345198",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "eth0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_e3c317d5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_84fbcffc",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 119.46642930819728]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "eth0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_770ee7ac",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_770ee7ac",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "docker0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_e3c317d5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0.5333346896735882]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_e3c317d5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_495d8d3d",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "docker0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 4369.051527830234]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "gw_00bc543c",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_72eb7a8f",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_3964dfb0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "lo",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "docker0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 42.66669040257397]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vxlan_sys_4789",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vxlan_sys_4789",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 10922.63159733482]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "gw_00bc543c",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.conntrack.tcp_max_retrans",
		"points": [
			[1580960317, 3]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 59.73311496390594]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "gw_00bc543c",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "docker0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "docker0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_tun_b0345198",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 119.4664369036537]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "eth0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.udp.in_csum_errors",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 1.6666682031433706]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_3964dfb0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_84fbcffc",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "overlay_br_int",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 264.26700269953756]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_3964dfb0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_tun_b0345198",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_monitor",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_monitor",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_monitor",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vxlan_sys_4789",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "overlay_br_int",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_495d8d3d",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_495d8d3d",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_84fbcffc",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_84fbcffc",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_84fbcffc",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_monitor",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.conntrack.expect_max",
		"points": [
			[1580960317, 1024]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_3964dfb0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_3964dfb0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_monitor",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_495d8d3d",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_84fbcffc",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 34.133216688766666]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "gw_00bc543c",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "overlay_br_int",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_e3c317d5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_3964dfb0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_770ee7ac",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.conntrack.tcp_timeout_max_retrans",
		"points": [
			[1580960317, 300]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0.5333345455621086]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_72eb7a8f",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_e3c317d5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_84fbcffc",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_770ee7ac",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.conntrack.count",
		"points": [
			[1580960317, 512]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_e3c317d5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_tun_b0345198",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_770ee7ac",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.tcp.retrans_segs",
		"points": [
			[1580960317, 0.3999977302680062]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 9284.27168403049]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vxlan_sys_4789",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_770ee7ac",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 29.866589762567813]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "lo",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_rcvd",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "veth_495d8d3d",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.tcp.out_segs",
		"points": [
			[1580960317, 58.666353354537854]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.tcp.backlog_drops",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.udp.rcv_buf_errors",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.conntrack.max",
		"points": [
			[1580960317, 262144]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_495d8d3d",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.bytes_sent",
		"points": [
			[1580960317, 28398.862465454626]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "lo",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_out.count",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_770ee7ac",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.net.packets_in.error",
		"points": [
			[1580960317, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "br_plc_72eb7a8f",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.load.15",
		"points": [
			[1580960318, 0.22]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.load.norm.1",
		"points": [
			[1580960318, 0.015]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.load.norm.5",
		"points": [
			[1580960318, 0.0325]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.load.norm.15",
		"points": [
			[1580960318, 0.0275]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.load.1",
		"points": [
			[1580960318, 0.12]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.load.5",
		"points": [
			[1580960318, 0.26]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0.01]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 1464.33]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0.33]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 1.29]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 143.94]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 10.599367723034787]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 22.799060707642965]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0.83]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 2.17]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 23.598592664088]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0.02]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0.02]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 16.799308423855816]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0.97]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 1.32]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 570.07]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 189.87]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 1.32]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 1464.33]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 4.28]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0.02]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 7.066382841278077]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0.08]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 23.600211565006934]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 117.57]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0.58]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 117.57]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 22.78]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0.18]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0.33]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 22.6]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 8]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 17.599283883305528]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 5.86643961619591]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 189.87]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 1.31]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 1.12]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 4.28]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 546.07]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 546.07]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 1.31]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 1464.33]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 5.73]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 5.28]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72647278be443c04afed9c08b1e42cea2e5b15c8849de745466867438570a634"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-12",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 3.2]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-41b0477bdaadcb666331cb6cb4942b830c527576db55608678a87c29436f77a1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-14",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0.18]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 1.57]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0.15]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 4.8]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0.83]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 10.6000926661645]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0.46]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-a3095a15f653681780240962051b45108f4469f0bae2c198b794bc28552dda7f"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-5",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 1.199963380023803]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 22.799189710804725]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 5.28]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0.25]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_q_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 10.666237742400355]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 16.66607646912935]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 2.82]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-27b9bf5a786084222191b165faeaefa23bc8a0e5527ab08977fbce3fa145bfce"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-11",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0.58]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6d57774c34bff23b77ce9ad980a90e25984fae700dc9fa7001f4f26543cfe573"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-22",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-beeb7353d99de984b31dc0cf49692f9902e555ff39e0a671cdd0de72744b9ecf"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-16",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 6.55]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-03b6accf51796e2522175c7dd817cb9dfe490e5dfee3d14d4eb6a3d3f647b188"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-21",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 5.999759111539272]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vdb",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-d408dbe0b1795046a50d14f53269dca057008d201efb4e66083fcd248c135420"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-6",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0.17]
		],
		"tags": ["device_label:vgpaas-kubernetes"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 1.12]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-e22ea916347839d410833810428b326b2e71852ee60a1e7d60ea55e341499243"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-10",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.avg_rq_sz",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.svctm",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-6a5582435dd2ccf59a901935da1619e377ec504531734d2d5c59c03348cded78"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-4",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-90e8f348d4cd23d53134d9bd87fdedbd68a5de621c49c19e4a5e9538ddda66f6"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-8",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.util",
		"points": [
			[1580960326, 0.96]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "vda2",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-72b5287fb3edc3ffe100b18872e4af4fedb687661559d206b0715daaa378a8da"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-9",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 5.73]
		],
		"tags": ["device_label:vgpaas-thinpool_tdata"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-1",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wkb_s",
		"points": [
			[1580960326, 19.2]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.w_await",
		"points": [
			[1580960326, 1.57]
		],
		"tags": ["device_label:vgpaas-thinpool_tmeta"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-0",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.r_await",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-137cacb4a804cf6d8341b119a79d57283f1316964ee7bc2610ec870744b0d940"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-7",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.wrqm_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:vgpaas-thinpool"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-3",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "system.io.rkb_s",
		"points": [
			[1580960326, 0]
		],
		"tags": ["device_label:docker-253:2-1705961-cf0b3d703d2c96f1d99cf30e54a295ce184af5899e45cee054ecd560c42ebc5e"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"device": "dm-13",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "datadog.agent.python.version",
		"points": [
			[1580960327, 1]
		],
		"tags": ["python_version:3", "agent_version_major:7", "agent_version_minor:16", "agent_version_patch:1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "datadog.agent.running",
		"points": [
			[1580960327, 1]
		],
		"tags": ["version:7.16.1"],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}, {
		"metric": "n_o_i_n_d_e_x.datadog.agent.payload.dropped",
		"points": [
			[1580960327, 0]
		],
		"tags": [],
		"host": "feiyongguanli-cmp-monitor-6a063.novalocal",
		"type": "gauge",
		"interval": 0,
		"source_type_name": "System"
	}]
}

  

原文地址:https://www.cnblogs.com/yaoyu1983/p/12268106.html

时间: 2024-09-19 04:26:43

datadog agent接收指标数据,自己实现server的相关文章

【python】-- Socket接收大数据

Socket接收大数据 上一篇博客,就是说当服务器发送至客户端的数据,大于客户端设置的数据,则就会把数据服务端发过来的数据剩余数据存在IO缓冲区中,这样就会造成我们想要获取数据的完整性. 解决思路: 1.改大客户端接收的数据的大小,因为官方建议最多只能接收8k的数据,那服务端发送过来的数据很容易就会大于8K,这个思路并不能从根本上解决问题(不建议使用) 2.客户端可以多收几次,服务端给客户端发数据之前,先计算一下要发给客户端数据大小(len()判断文件长度) ,比如说要发给客户端数据是5k大小,

TCP通信实现对接硬件发送与接收十六进制数据 & int与byte的转换原理 & java中正负数的表示

今天收到的一份需求任务是对接硬件,TCP通信,并给出通信端口与数据包格式,如下: 1.首先编写了一个简单的十六进制转byte[]数组与byte[]转换16进制字符串的两个方法,如下: /** * 将十六进制的字符串转换成字节数组 * * @param hexString * @return */ public static byte[] hexStrToByteArrs(String hexString) { if (StringUtils.isEmpty(hexString)) { retur

DE2-115 以太网通信之一88E1111网卡接收PC数据

想利用手头上的DE2-115 写一个关于以太网通信的驱动,经过了这么多天的实验调试终于有了一些认识. 1.我在观察网卡发送数据与接收数据的过程中发现,我从fpga上的一个网卡发送数据,然后另一个网卡接收数据,接收到的数据前面会有55h这8bit的数据.我从PC上发送数据,用fpga上的网卡接收数据,那么在接收到的数据前面会有55h,55h,55h,55h,55h,55h,55h,5dh这64bit的数据.那么如果55h这8bit数据是PHY发送时自动添加那么从PC上接收到的最后应该是55而不应该

C#串口通信—向串口发送数据,同步接收返回数据

最近写C#串口通信程序,系统是B/S架构.SerialPort类有一个DataReceived事件,用来接收串口返回的数据,但这种方式在C/S架构下很好用,但B/S就不好处理了.所以写了一个同步模式接收返回数据的方法,不使用DataReceived事件.经过测试,可以正常使用(不支持多线程调用). 一.Machine类 1.Machine类有一个静态变量,定义如下: private static SerialPort serialPort = null; 2.向串口发送数据,同步接收返回数据的方

用普通IO接收串口数据

<pre name="code" class="cpp">//文件urece.h #ifndef _URECE_H_ #define _URECE_H_ #define V_BATOU 0x80 //电池充满 #define V_BATLV 0x40 //电池低电压 #define V_BATOI 0X20 //电池放电过流 #define V_BATOTP 0x10 //电池过温 #define V_BATOTIM 0x08 //电池充电超时 #def

恢复数据:Xen Server服务器中一台VPS不可用

故障描述 1.硬件架构概述 服务器:Dell 720服务器配戴一张H710P的RAID卡. 存储阵列:由4块希捷2T STAT硬盘组成的RAID 10. 操作系统:Xen Server 6.2版本. 2.故障虚拟机概述 操作系统:Windows Server 2003. 应用:Web服务器(ASP + SQL 2005的网站架构). 虚拟磁盘:10G系统盘 + 5G数据盘. 故障描述:因特殊原因导致Xen Server服务器中一台VPS(即Xen Server虚拟机)不可用,虚拟磁盘中数据丢失.

通过ArcGIS Desktop数据发布ArcGIS Server

原文:通过ArcGIS Desktop数据发布ArcGIS Server 1.双击GIS Servers--->Add ArcGIS Server 2.选择Publish GIS Services 3.输入Server URL:http://localhost:6080/arcgis/manager/ 4.输入User Name:ospdemo01 5.输入:Password:******** 6.选择需要发布的mxd文件,可以提前在Folder Connections中关联上 7.右键选择**

Struts2初学 Struts2的action接收用户数据方式

一.简介    开发Web应用程序,首先应会遇到对用户输入数据的接收,传统的Web应用程序是由开发人员调用HttpServletRequest的getparameter(String name)方法从请求中获取数据,而Web框架都提供了数据绑定机制,由框架从请求中获取数据然后绑定到一个JavaBean对象中. Struts2提供了多种方式用于接收用户输入的数据. Struts2的action完全与Web解耦,要获取Web层的数据,需要使用ActionContext,它为action提供了一个执行

Excel表数据导入Sql Server数据库中

Excel表数据导入Sql Server数据库的方法很多,这里只是介绍了其中一种: 1.首先,我们要先在test数据库中新建一个my_test表,该表具有三个字段tid int类型, tname nvarchar类型, tt nvarchar类型(注意:my_test表中的数据类型必须与Excel中相应字段的类型一致) 2. 我们用SELECT * FROM  OPENROWSET( 'Microsoft.Jet.OLEDB.4.0 ', 'Excel  5.0;DatabASE=[Excel表