Authored by zhengyouwei

pid tag

... ... @@ -18,9 +18,9 @@ public class NodeHostMapperImpl extends InfluxDBQuery implements NodeHostMapper
Point point = Point.measurement(InfluxDBContants.NODE_MEM_INFO)
.tag("ip", ip)
.tag("name", name)
.tag("pid",String.valueOf(pid))
.addField("useMem", useMem)
.addField("totalMem", totalMem)
.addField("pid", pid)
.addField("projectMem", projectMem)
.addField("projectCpu", projectCpu)
.time(System.currentTimeMillis() * 1000000 + random.nextInt(999999), TimeUnit.NANOSECONDS)
... ...