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"
}]
}
datadog agent接收指标数据,自己实现server
原文:https://www.cnblogs.com/yaoyu1983/p/12268106.html