From 0daa8d1aacac1c352009378735290b377fd2c99f Mon Sep 17 00:00:00 2001 From: root Date: Fri, 12 Feb 2016 15:04:30 -0500 Subject: [PATCH 1/7] Adds tool script for performance co-pilot --- agent/tool-scripts/pcp | 152 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100755 agent/tool-scripts/pcp diff --git a/agent/tool-scripts/pcp b/agent/tool-scripts/pcp new file mode 100755 index 0000000000..8f1fdcff72 --- /dev/null +++ b/agent/tool-scripts/pcp @@ -0,0 +1,152 @@ +#!/bin/bash +# -*- mode: shell-script; indent-tabs-mode: t; sh-basic-offset: 8; sh-indentation: 8; sh-indent-for-case-alt: + -*- + +script_path="`dirname $0`" +script_name="`basename $0`" +pbench_bin="`cd ${script_path}/..; /bin/pwd`" + +# source the base script +. "$pbench_bin"/base + +# Perftool scripts must provide the following functions +# 1) Install the tool +# 2) Start data collection +# 3) Stop data collection +# 4) post-process the data + +# Defaults +tool="$script_name" +tool_package_name="pcp-gui" # this package should have appropriate deps for the remaining (90+!) pcp packages +tool_daemon="pmcd" +group="default" +dir="/tmp" +mode="" +interval="3" +iteration="1" +options="none" +tool_bin="/usr/bin/pmlogger" +pmlogger_conf="$pbench_bin/config/pmlogger.conf" + +# Process options and arguments +opts=$(getopt -q -o idp --longoptions "dir:,group:,iteration:,interval:,start,stop,install,postprocess" -n "getopt.sh" -- "$@"); +if [ $? -ne 0 ]; then + printf "\n" + printf "$script_name: you specified an invalid option\n\n" + printf "The following options are available: \n\n" + printf -- "\t--install, install this perf tool\n" + printf "\n" + printf -- "\t--start|stop|postprocess start/stop/post-process the data collection\n" + printf -- "\t--iteration=int the iteration (required)\n" + printf -- "\t--group=str the perftool group (required)\n" + printf -- "\t--dir=str directory to store data collection (required)\n" + printf -- "\t--interval=int number of seconds between each data collection\n" + exit 1 +fi +eval set -- "$opts"; +while true; do + case "$1" in + --install) + mode="install" + shift; + ;; + --start) + mode="start" + shift; + ;; + --stop) + mode="stop" + shift; + ;; + --postprocess) + mode="postprocess" + shift; + ;; + -d|--dir) + shift; + if [ -n "$1" ]; then + dir="$1" + shift + fi + ;; + -g|--group) + shift; + if [ -n "$1" ]; then + group="$1" + shift + fi + ;; + -i|--iteration) + shift; + if [ -n "$1" ]; then + iteration="$1" + shift + fi + ;; + --interval) + shift; + if [ -n "$1" ]; then + interval="$1" + shift + fi + ;; + --) + shift; + break; + ;; + esac +done + +tool_dir="$dir/tools-$group" +tool_output_dir="$tool_dir/$tool" # all tools keep data in their tool specific dir +tool_cmd_file="$tool_output_dir/$tool.cmd" +tool_pid_file="$pbench_tmp/$group.$iteration.$tool.pid" +tool_stdout_file="$tool_output_dir/$tool-stdout.txt" +tool_stderr_file="$tool_output_dir/$tool-stderr.txt" +tool_cmd="$tool_bin -c pmlogger.conf -t $interval archive >$tool_stdout_file 2>$tool_stderr_file & echo \$! >$tool_pid_file" + +case "$mode" in + install) + # pcp package are not maintained by pbench + check_install_rpm "$tool_package_name" || error_log "$script_name: installation of $tool_package_name failed" + ;; + start) + # TODO: write start_service() in $pbench_bin/base script + if ! pgrep pmcd; then + if [ -x /usr/bin/systemctl ]; then + systemctl start pmcd + else if [-x /usr/bin/service ]; then + service pmcd start + else + error_log "$script_name: could not start PCP service (pmcd)" + fi + fi + fi + if pgrep pmcd; then + mkdir -p "$tool_output_dir" + pushd "$tool_output_dir" >/dev/null + /bin/rm -f archive* + echo "$tool_cmd" >"$tool_cmd_file" + chmod +x "$tool_cmd_file" + if [ -e "$pmlogger_conf" ]; then + /bin/cp "$pmlogger_conf" "$tool_output_dir" + else + error_log "$script_name: could not find $pmlogger_conf" + fi + debug_log "$script_name: running $tool_cmd" + . $tool_cmd_file + popd >/dev/null + wait + else + error_log "$script_name: could not get pmcd running" + fi + ;; + stop) + pid=`cat "$tool_pid_file"` + debug_log "stopping $script_name" + kill $pid && /bin/rm "$tool_pid_file" + ;; + postprocess) + debug_log "postprocessing $script_name" + $script_path/postprocess/$script_name-postprocess "$tool_output_dir" >>"$tool_stdout_file" 2>>"$tool_stderr_file" + ;; +esac From 30db9075bded3d2bcdae07f5e78bc8a57e0688ad Mon Sep 17 00:00:00 2001 From: root Date: Fri, 12 Feb 2016 15:05:33 -0500 Subject: [PATCH 2/7] Post-process script for performance co-pilot The post-processing is done by a pcp-native binary, so there is no unit test for this. We assume pcp untility "pmlogger" is good. --- .../tool-scripts/postprocess/pcp-postprocess | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100755 agent/tool-scripts/postprocess/pcp-postprocess diff --git a/agent/tool-scripts/postprocess/pcp-postprocess b/agent/tool-scripts/postprocess/pcp-postprocess new file mode 100755 index 0000000000..b9a7f82184 --- /dev/null +++ b/agent/tool-scripts/postprocess/pcp-postprocess @@ -0,0 +1,45 @@ +#!/bin/bash +dir=$1 + +pushd $dir >/dev/null +mkdir -p csv + +html_pages=`pminfo -a archive | awk -F. '{print $1}' | sort | uniq` + +for html_page in $html_pages; do + echo '' >${html_page}.html + echo '' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + + chart_count=1 + for graph in `pminfo -a archive $html_page`; do + pmdumptext $graph -a archive -f %s000 -m -d, | grep -v "?" | sed -e s/^Time/timestamp_ms/ >./csv/$graph.csv + echo '
' >>${html_page}.html + echo '

'$graph >>${html_page}.html + echo ' ' >>${html_page}.html + echo '
' >>${html_page}.html + echo '

' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html + echo '
' >>${html_page}.html + ((chart_count++)) + done + echo ' ' >>${html_page}.html + echo ' ' >>${html_page}.html +done +popd >/dev/null From f38c80834c0827dd29a751017cef4f8e87ec654a Mon Sep 17 00:00:00 2001 From: root Date: Fri, 12 Feb 2016 15:07:18 -0500 Subject: [PATCH 3/7] Default config file for pcp's pmlogger --- agent/config/pmlogger.conf | 945 +++++++++++++++++++++++++++++++++++++ 1 file changed, 945 insertions(+) create mode 100644 agent/config/pmlogger.conf diff --git a/agent/config/pmlogger.conf b/agent/config/pmlogger.conf new file mode 100644 index 0000000000..dd18a59e7d --- /dev/null +++ b/agent/config/pmlogger.conf @@ -0,0 +1,945 @@ +#pmlogconf 2.0 +# +# pmlogger(1) config file created and updated by pmlogconf +# +# DO NOT UPDATE THE INITIAL SECTION OF THIS FILE. +# Any changes may be lost the next time pmlogconf is used +# on this file. +# +#+ groupdir /var/lib/pcp/config/pmlogconf +# +#+ apache/processes:x:: +#---- +#+ apache/summary:x:: +#---- +#+ apache/uptime:x:: +#---- +#+ cpu/percpu:y:3sec: +## utilization per CPU +log advisory on 3sec { + kernel.percpu.cpu +} +#---- +#+ cpu/summary:y:3sec: +## utilization (usr, sys, idle, ...) over all CPUs +log advisory on 3sec { + kernel.all.cpu +} +#---- +#+ disk/percontroller:x:: +#---- +#+ disk/perdisk:y:3sec: +## per spindle disk activity +log advisory on 3sec { + disk.dev.read + disk.dev.write + disk.dev.total + disk.dev.read_bytes + disk.dev.write_bytes + disk.dev.total_bytes + disk.dev.avactive +} +#---- +#+ disk/perpartition:y:3sec: +## per logical block device activity +log advisory on 3sec { + disk.partitions.read + disk.partitions.write + disk.partitions.read_bytes + disk.partitions.write_bytes +} +#---- +#+ disk/summary:y:3sec: +## summary disk activity (IOPs and bytes for both reads and writes over +## all disks). +log advisory on 3sec { + disk.all.read + disk.all.write + disk.all.total + disk.all.read_bytes + disk.all.write_bytes + disk.all.total_bytes + disk.all.avactive +} +#---- +#+ filesystem/all:y:3sec: +## generic filesystem size, fullness and mount information +log advisory on 3sec { + filesys +} +#---- +#+ filesystem/summary:y:3sec: +## filesystem size and fullness +log advisory on 3sec { + filesys.full + filesys.used + filesys.free + filesys.avail # for Linux +} +#---- +#+ filesystem/xfs-all:y:3sec: +## all available XFS information +log advisory on 3sec { + xfs +} +#---- +#+ filesystem/xfs-io-irix:x:: +#---- +#+ filesystem/xfs-io-linux:y:3sec: +## XFS data and log I/O traffic [Linux] +log advisory on 3sec { + xfs.log.writes + xfs.log.blocks + xfs.log.noiclogs + xfs.read + xfs.write + xfs.read_bytes + xfs.write_bytes + xfs.buffer +} +#---- +#+ kernel/bufcache-activity:x:: +#---- +#+ kernel/bufcache-all:x:: +#---- +#+ kernel/inode-cache:x:: +#---- +#+ kernel/interrupts-irix:x:: +#---- +#+ kernel/load:y:3sec: +## load average +log advisory on 3sec { + kernel.all.load +} +#---- +#+ kernel/memory-irix:x:: +#---- +#+ kernel/memory-linux:y:3sec: +## kernel memory allocation [Linux] +log advisory on 3sec { + mem.util +} +#---- +#+ kernel/queues-irix:x:: +#---- +#+ kernel/read-write-data:x:: +#---- +#+ kernel/summary-linux:y:3sec: +## summary kernel performance data [Linux] +log advisory on 3sec { + mem.util + swap.pagesin + swap.pagesout + swap.free + swap.used + kernel.all.pswitch + kernel.all.intr + kernel.all.load + kernel.all.runnable + network.interface.collisions + network.interface.in.drops + network.interface.out.drops + disk.dev.avactive + filesys.full +} +#---- +#+ kernel/summary-windows:x:: +#---- +#+ kernel/syscalls-irix:x:: +#---- +#+ kernel/syscalls-linux:y:3sec: +## context switches and fork system calls over all CPUs [Linux] +log advisory on 3sec { + kernel.all.pswitch + kernel.all.sysfork +} +#---- +#+ kernel/syscalls-percpu-irix:x:: +#---- +#+ kernel/vnodes:x:: +#---- +#+ mailq/summary:x:: +#---- +#+ memory/proc-linux:y:3sec: +## System process memory-usage information +log advisory on 3sec { + proc.memory.size + proc.memory.rss + proc.psinfo.maj_flt +} +#---- +#+ memory/swap-activity:y:3sec: +## pages in and out (severe VM demand) +log advisory on 3sec { + swap.pagesin + swap.pagesout +} +#---- +#+ memory/swap-all:y:3sec: +## current swap allocation and all swap activity +log advisory on 3sec { + swap +} +#---- +#+ memory/swap-config:y:3sec: +## swap configuration +log advisory on 3sec { + swapdev +} +#---- +#+ memory/tlb-irix:x:: +#---- +#+ mysql/summary:x:: +#---- +#+ netfilter/config:x:: +#---- +#+ netfilter/summary:x:: +#---- +#+ networking/interface-all:y:3sec: +## all available data per network interface +log advisory on 3sec { + network.interface +} +#---- +#+ networking/interface-summary:y:3sec: +## bytes, packets and errors (in and out) per network interface +log advisory on 3sec { + network.interface.in.bytes + network.interface.in.packets + network.interface.in.errors + network.interface.out.bytes + network.interface.out.packets + network.interface.out.errors + network.interface.collisions +} +#---- +#+ networking/mbufs:x:: +#---- +#+ networking/multicast:x:: +#---- +#+ networking/nfs2-client:y:3sec: +## NFS v2 client stats +log advisory on 3sec { + nfs.client +} +#---- +#+ networking/nfs2-server:y:3sec: +## NFS v2 server stats +log advisory on 3sec { + nfs.server +} +#---- +#+ networking/nfs3-client:y:3sec: +## NFS v3 client stats +log advisory on 3sec { + nfs3.client +} +#---- +#+ networking/nfs3-server:y:3sec: +## NFS v3 server stats +log advisory on 3sec { + nfs3.server +} +#---- +#+ networking/nfs4-client:y:3sec: +## NFS v4 client stats +log advisory on 3sec { + nfs4.client +} +#---- +#+ networking/nfs4-server:y:3sec: +## NFS v4 server stats +log advisory on 3sec { + nfs4.server +} +#---- +#+ networking/other-protocols:y:3sec: +## all available data for other protocols (ip, icmp, igmp, udplite) +log advisory on 3sec { + network.ip + network.icmp + network.igmp # for Irix + network.udplite # for Linux +} +#---- +#+ networking/rpc:y:3sec: +## RPC stats +log advisory on 3sec { + rpc +} +#---- +#+ networking/socket-irix:x:: +#---- +#+ networking/socket-linux:y:3sec: +## socket stats (in use, high-water mark, etc.) [Linux] +log advisory on 3sec { + network.sockstat +} +#---- +#+ networking/streams:x:: +#---- +#+ networking/tcp-activity-irix:x:: +#---- +#+ networking/tcp-activity-linux:y:3sec: +## TCP packets (in and out), errors and retransmits [Linux] +log advisory on 3sec { + network.tcp.insegs + network.tcp.outsegs + network.tcp.retranssegs + network.tcp.inerrs +} +#---- +#+ networking/tcp-all:y:3sec: +## all available TCP data +log advisory on 3sec { + network.tcp +} +#---- +#+ networking/udp-all:y:3sec: +## all available UDP data +log advisory on 3sec { + network.udp +} +#---- +#+ networking/udp-packets-irix:x:: +#---- +#+ networking/udp-packets-linux:y:3sec: +## UDP packets in and out [Linux] +log advisory on 3sec { + network.udp.indatagrams + network.udp.outdatagrams +} +#---- +#+ platform/hinv:y:once: +## platform, filesystem and hardware configuration +log advisory on once { + hinv + kernel.uname + filesys.mountdir + filesys.blocksize + filesys.capacity +} +#---- +#+ platform/linux:y:once: +## Linux swap, cache and networking configuration +log advisory on once { + swap.length + mem.slabinfo.objects.size + network.interface.mtu + network.interface.speed + network.interface.duplex + network.interface.inet_addr +} +#---- +#+ postgresql/summary:x:: +#---- +#+ sgi/cpu-evctr:x:: +#---- +#+ sgi/craylink:x:: +#---- +#+ sgi/efs:x:: +#---- +#+ sgi/hub:x:: +#---- +#+ sgi/kaio:x:: +#---- +#+ sgi/node-memory:x:: +#---- +#+ sgi/numa:x:: +#---- +#+ sgi/numa-summary:x:: +#---- +#+ sgi/xbow:x:: +#---- +#+ sgi/xlv-activity:x:: +#---- +#+ sgi/xlv-stripe-io:x:: +#---- +#+ sgi/xvm-all:x:: +#---- +#+ sgi/xvm-ops:x:: +#---- +#+ sgi/xvm-stats:x:: +#---- +#+ shping/summary:x:: +#---- +#+ sqlserver/summary:x:: +#---- +#+ tools/atop:y:3sec: +## metrics used by the atop command +log advisory on 3sec { + disk.dev.read + disk.dev.write + disk.dev.blkread + disk.dev.blkwrite + disk.dev.aveq + disk.dev.avactive + disk.dm.read + disk.dm.write + disk.dm.blkread + disk.dm.blkwrite + kernel.all.pswitch + kernel.all.intr + kernel.all.sysfork + kernel.all.load + kernel.all.cpu.user + kernel.all.cpu.nice + kernel.all.cpu.sys + kernel.all.cpu.idle + kernel.all.cpu.wait.total + kernel.all.cpu.irq.hard + kernel.all.cpu.irq.soft + kernel.all.cpu.steal + kernel.all.cpu.guest + kernel.percpu.cpu.sys + kernel.percpu.cpu.user + kernel.percpu.cpu.nice + kernel.percpu.cpu.idle + kernel.percpu.cpu.wait.total + kernel.percpu.cpu.irq.hard + kernel.percpu.cpu.irq.soft + kernel.percpu.cpu.steal + kernel.percpu.cpu.guest + hinv.cpu.clock + mem.vmstat.pgscan_direct_dma + mem.vmstat.pgscan_direct_dma32 + mem.vmstat.pgscan_direct_high + mem.vmstat.pgscan_direct_movable + mem.vmstat.pgscan_direct_normal + mem.vmstat.pgscan_kswapd_dma + mem.vmstat.pgscan_kswapd_dma32 + mem.vmstat.pgscan_kswapd_high + mem.vmstat.pgscan_kswapd_movable + mem.vmstat.pgscan_kswapd_normal + mem.vmstat.pgsteal_dma + mem.vmstat.pgsteal_dma32 + mem.vmstat.pgsteal_high + mem.vmstat.pgsteal_movable + mem.vmstat.pgsteal_normal + mem.vmstat.allocstall + mem.util.cached + mem.util.dirty + mem.physmem + mem.freemem + mem.util.bufmem + mem.util.shmem + mem.util.slab + mem.util.slabReclaimable + mem.util.committed_AS + mem.util.commitLimit + mem.util.hugepagesTotal + mem.util.hugepagesFree + hinv.hugepagesize + swap.pagesin + swap.pagesout + swap.length + swap.free + network.interface.baudrate + network.interface.duplex + network.interface.in.bytes + network.interface.in.packets + network.interface.in.errors + network.interface.in.drops + network.interface.in.fifo + network.interface.in.frame + network.interface.in.compressed + network.interface.in.mcasts + network.interface.out.bytes + network.interface.out.packets + network.interface.out.errors + network.interface.out.drops + network.interface.out.fifo + network.interface.collisions + network.interface.out.carrier + network.interface.out.compressed + network.ip.forwarding + network.ip.defaultttl + network.ip.inreceives + network.ip.inhdrerrors + network.ip.inaddrerrors + network.ip.forwdatagrams + network.ip.inunknownprotos + network.ip.indiscards + network.ip.indelivers + network.ip.outrequests + network.ip.outdiscards + network.ip.outnoroutes + network.ip.reasmtimeout + network.ip.reasmreqds + network.ip.reasmoks + network.ip.reasmfails + network.ip.fragoks + network.ip.fragfails + network.ip.fragcreates + network.icmp.inmsgs + network.icmp.inerrors + network.icmp.indestunreachs + network.icmp.intimeexcds + network.icmp.inparmprobs + network.icmp.insrcquenchs + network.icmp.inredirects + network.icmp.inechos + network.icmp.inechoreps + network.icmp.intimestamps + network.icmp.intimestampreps + network.icmp.inaddrmasks + network.icmp.inaddrmaskreps + network.icmp.outmsgs + network.icmp.outerrors + network.icmp.outdestunreachs + network.icmp.outtimeexcds + network.icmp.outparmprobs + network.icmp.outsrcquenchs + network.icmp.outredirects + network.icmp.outechos + network.icmp.outechoreps + network.icmp.outtimestamps + network.icmp.outtimestampreps + network.icmp.outaddrmasks + network.icmp.outaddrmaskreps + network.tcp.rtoalgorithm + network.tcp.rtomin + network.tcp.rtomax + network.tcp.maxconn + network.tcp.activeopens + network.tcp.passiveopens + network.tcp.attemptfails + network.tcp.estabresets + network.tcp.currestab + network.tcp.insegs + network.tcp.outsegs + network.tcp.retranssegs + network.tcp.inerrs + network.tcp.outrsts + network.udp.indatagrams + network.udp.noports + network.udp.inerrors + network.udp.outdatagrams +} +#---- +#+ tools/atop-httpstats:x:: +#---- +#+ tools/atop-proc:y:3sec: +## per-process metrics used by the atop command +log advisory on 3sec { + proc.psinfo.cmd + proc.psinfo.sname + proc.psinfo.ppid + proc.psinfo.minflt + proc.psinfo.maj_flt + proc.psinfo.utime + proc.psinfo.stime + proc.psinfo.priority + proc.psinfo.nice + proc.psinfo.start_time + proc.psinfo.vsize + proc.psinfo.rss + proc.psinfo.processor + proc.psinfo.rt_priority + proc.psinfo.policy + proc.psinfo.threads + proc.psinfo.tgid + proc.psinfo.pid + proc.namespaces.envid + proc.id.uid + proc.id.euid + proc.id.suid + proc.id.fsuid + proc.id.gid + proc.id.egid + proc.id.sgid + proc.id.fsgid + proc.memory.vmdata + proc.memory.vmstack + proc.memory.vmexe + proc.memory.vmlib + proc.memory.vmswap + proc.io.read_bytes + proc.io.write_bytes + proc.io.cancelled_write_bytes + proc.id.uid_nm + proc.id.euid_nm + proc.id.suid_nm + proc.id.fsuid_nm +} +#---- +#+ tools/atop-summary:y:once: +## metrics sampled once by the atop command +log advisory on once { + hinv.ncpu + hinv.ndisk + hinv.ninterface + hinv.pagesize + kernel.all.hz + kernel.uname.release + kernel.uname.version + kernel.uname.machine + kernel.uname.nodename + mem.physmem +} +#---- +#+ tools/collectl:y:3sec: +## metrics used by the collectl command +log advisory on 3sec { + disk.all.read + disk.all.read_bytes + disk.all.read_merge + disk.all.write + disk.all.write_bytes + disk.all.write_merge + disk.dev.blkread + disk.dev.blkwrite + disk.dev.read + disk.dev.read_bytes + disk.dev.read_merge + disk.dev.write + disk.dev.write_bytes + disk.dev.write_merge + hinv.ncpu + kernel.all.cpu.idle + kernel.all.cpu.intr + kernel.all.cpu.irq.hard + kernel.all.cpu.irq.soft + kernel.all.cpu.nice + kernel.all.cpu.steal + kernel.all.cpu.sys + kernel.all.cpu.user + kernel.all.cpu.wait.total + kernel.all.intr + kernel.all.load + kernel.all.nprocs + kernel.all.pswitch + kernel.all.runnable + kernel.percpu.cpu.idle + kernel.percpu.cpu.intr + kernel.percpu.cpu.irq.hard + kernel.percpu.cpu.irq.soft + kernel.percpu.cpu.nice + kernel.percpu.cpu.steal + kernel.percpu.cpu.sys + kernel.percpu.cpu.user + kernel.percpu.cpu.wait.total + mem.freemem + mem.physmem + mem.util.anonpages + mem.util.bufmem + mem.util.cached + mem.util.committed_AS + mem.util.inactive + mem.util.mapped + mem.util.mlocked + mem.util.slab + mem.util.swapTotal + mem.util.used + mem.vmstat.pgfault + mem.vmstat.pgmajfault + mem.vmstat.pgpgin + mem.vmstat.pgpgout + network.interface.in.bytes + network.interface.in.compressed + network.interface.in.errors + network.interface.in.mcasts + network.interface.in.packets + network.interface.out.bytes + network.interface.out.errors + network.interface.out.packets + network.interface.total.mcasts + proc.runq.blocked + proc.runq.runnable + swap.free + swap.pagesin + swap.pagesout + swap.used +} +#---- +#+ tools/collectl-interrupts:y:3sec: +## percpu interrupt metrics for collectl +log advisory on 3sec { + kernel.percpu.interrupts +} +#---- +#+ tools/collectl-summary:y:once: +## metrics sampled once by the collectl command +log advisory on once { + hinv.ncpu + mem.physmem +} +#---- +#+ tools/dmcache:x:: +#---- +#+ tools/iostat:y:3sec: +## metrics used by the iostat(1) command +log advisory on 3sec { + disk.dev.read_bytes # kB_read + disk.dm.read_bytes + disk.dev.write_bytes # kB_wrtn + disk.dm.write_bytes + kernel.all.cpu.user # %user + kernel.all.cpu.nice # %nice + kernel.all.cpu.sys # %system + kernel.all.cpu.wait.total # %iowait + kernel.all.cpu.steal # %steal + kernel.all.cpu.idle # %idle + disk.all.read # total: Total reads completed successfully + disk.all.read_merge # merged: grouped reads (resulting in one I/O) + disk.all.blkread # sectors: Sectors read successfully + disk.all.read_rawactive # ms: milliseconds spent reading + disk.all.write # total: Total writes completed successfully + disk.all.write_merge # merged: grouped writes (resulting in one I/O) + disk.all.blkwrite # sectors: Sectors written successfully + disk.all.write_rawactive # ms: milliseconds spent writing + disk.all.avactive # s: seconds spent for I/O + disk.dev.read # total: Total reads completed successfully + disk.dm.read + disk.dev.read_merge # merged: grouped reads (resulting in one I/O) + disk.dm.read_merge + disk.dev.blkread # sectors: Sectors read successfully + disk.dm.blkread + disk.dev.read_rawactive # ms: milliseconds spent reading + disk.dm.read_rawactive + disk.dev.write # total: Total writes completed successfully + disk.dm.write + disk.dev.write_merge # merged: grouped writes (resulting in one I/O) + disk.dm.write_merge + disk.dev.blkwrite # sectors: Sectors written successfully + disk.dm.blkwrite + disk.dev.write_rawactive # ms: milliseconds spent writing + disk.dm.write_rawactive + disk.all.read_merge # rrqm/s + disk.all.write_merge # wrqm/s + disk.all.read # r/s + disk.all.write # w/s + disk.all.read_bytes # rkB/s + disk.all.write_bytes # wkB/s + # avgqu-sz + # - avgrq-sz + disk.dev.avactive # await + disk.dm.avactive + disk.all.read_rawactive # r_await + disk.all.write_rawactive # w_await + # - svctm + # - %util (r/s + w/s) * (svctm / 1000) +} +#---- +#+ tools/ip:y:3sec: +## metrics used by the ip(1) command +log advisory on 3sec { + network.interface.mtu + network.interface.out.bytes + network.interface.out.packets + network.interface.out.errors + network.interface.out.drops + network.interface.out.fifo + network.interface.out.carrier + network.interface.collisions + network.interface.in.bytes + network.interface.in.packets + network.interface.in.errors + network.interface.in.drops + network.interface.in.fifo + network.interface.total.mcasts +} +#---- +#+ tools/mpstat:y:3sec: +## metrics used by the mpstat(1) command +log advisory on 3sec { + kernel.all.cpu.user # %usr + kernel.percpu.cpu.user + kernel.all.cpu.nice # %nice + kernel.percpu.cpu.nice + kernel.all.cpu.sys # %sys + kernel.percpu.cpu.sys + kernel.all.cpu.wait.total # %iowait + kernel.percpu.cpu.wait.total + kernel.all.cpu.intr # %irq + kernel.percpu.cpu.intr + kernel.all.cpu.irq.soft # %soft + kernel.percpu.cpu.irq.soft + kernel.all.cpu.steal # %steal + kernel.percpu.cpu.steal + kernel.all.cpu.guest # %guest + kernel.percpu.cpu.guest + kernel.all.cpu.idle # %idle + kernel.percpu.cpu.idle +} +#---- +#+ tools/mpstat-interrupts:y:3sec: +## percpu interrupt metrics for the mpstat(1) command +log advisory on 3sec { + kernel.percpu.interrupts +} +#---- +#+ tools/numastat:y:3sec: +## metrics used by the pcp-numastat(1) command +log advisory on 3sec { + mem.numa.alloc +} +#---- +#+ tools/sar:y:3sec: +## metrics used by the sar(1) command +log advisory on 3sec { + disk.all.read + disk.all.read_bytes + disk.all.total + disk.all.total_bytes + disk.all.write + disk.all.write_bytes + disk.dev.avactive + #disk.dev.avqsz + #disk.dev.avrqsz + #disk.dev.await + disk.dev.read_bytes + #disk.dev.svctm + disk.dev.total + disk.dev.total_bytes + disk.dev.write_bytes + kernel.all.cpu.guest + kernel.all.cpu.idle + kernel.all.cpu.intr + kernel.all.cpu.nice + kernel.all.cpu.steal + kernel.all.cpu.sys + kernel.all.cpu.user + kernel.all.cpu.wait.total + kernel.all.intr + kernel.all.load + kernel.all.pswitch + kernel.percpu.cpu.guest + kernel.percpu.cpu.idle + kernel.percpu.cpu.intr + kernel.percpu.cpu.nice + kernel.percpu.cpu.steal + kernel.percpu.cpu.sys + kernel.percpu.cpu.user + kernel.percpu.cpu.wait.total + mem.vmstat.pgfault + mem.vmstat.pgfree + mem.vmstat.pgmajfault + mem.vmstat.pgpgin + mem.vmstat.pgpgout + mem.util + network.interface.collisions + network.interface.in.bytes + network.interface.in.drops + network.interface.in.errors + network.interface.in.fifo + network.interface.in.frame + network.interface.in.packets + network.interface.out.bytes + network.interface.out.carrier + network.interface.out.drops + network.interface.out.errors + network.interface.out.fifo + network.interface.out.packets + proc.nprocs + proc.runq.runnable + swap.pagesin + swap.pagesout + vfs.dentry.count + vfs.files.count + vfs.inodes.count +} +#---- +#+ tools/sar-summary:y:once: +## metrics sampled once by the sar(1) command +log advisory on once { + hinv.ncpu +} +#---- +#+ tools/vmstat:y:3sec: +## metrics used by the vmstat(1) command +log advisory on 3sec { + mem.util.active # K active memory + mem.util.inactive # K inactive memory + mem.freemem # K free memory + mem.util.bufmem # K buffer memory + mem.util.cached # K swap cache + mem.util.swapTotal # K total swap + #- K used swap + mem.util.swapFree # K free swap + kernel.all.cpu.user # non-nice user cpu ticks + kernel.all.cpu.nice # nice user cpu ticks + kernel.all.cpu.sys # system cpu ticks + kernel.all.cpu.idle # idle cpu ticks + kernel.all.cpu.wait.total # IO-wait cpu ticks + kernel.all.cpu.irq.hard # IRQ cpu ticks + kernel.all.cpu.irq.soft # softirq cpu ticks + kernel.all.cpu.steal # stolen cpu ticks + mem.vmstat.pgpgin # pages paged in + mem.vmstat.pgpgout # pages paged out + mem.vmstat.pswpin # pages swapped in + mem.vmstat.pswpout # pages swapped out + kernel.all.intr # interrupts + kernel.all.pswitch # CPU context switches + # - boot time + kernel.all.sysfork # forks + proc.runq.runnable # r: The number of processes waiting for run time. + proc.runq.blocked # b: The number of processes in uninterruptible sleep. + mem.vmstat.nr_mapped # swpd: the amount of virtual memory used. + mem.util.free # free: the amount of idle memory. + mem.util.bufmem # buff: the amount of memory used as buffers. + mem.util.cached # cache: the amount of memory used as cache. + mem.util.inactive # inact: the amount of inactive memory. (-a option) + mem.util.active # active: the amount of active memory. (-a option) + swap.in # si: Amount of memory swapped in from disk (/s). + swap.pagesout # so: Amount of memory swapped to disk (/s). + # - bi: Blocks received from a block device (blocks/s). + # - bo: Blocks sent to a block device (blocks/s). + kernel.all.intr # in: The number of interrupts per second, including the clock. + kernel.all.pswitch # cs: The number of context switches per second. + kernel.all.cpu.user # us: Time spent running non-kernel code. (user time, including nice time) + kernel.all.cpu.sys # sy: Time spent running kernel code. (system time) + kernel.all.idletime # id: Time spent idle. + kernel.all.cpu.wait.total # wa: Time spent waiting for IO. + kernel.all.cpu.steal # st: Time stolen from a virtual machine. + disk.partitions.read # total: Total reads completed successfully + # - merged: grouped reads (resulting in one I/O) + disk.partitions.blkread # sectors: Sectors read successfully + # - ms: milliseconds spent reading + disk.partitions.write # total: Total writes completed successfully + # - merged: grouped writes (resulting in one I/O) + disk.partitions.blkwrite # sectors: Sectors written successfully + # - ms: milliseconds spent writing + # cur: I/O in progress + # - s: seconds spent for I/O + disk.all.read # total: Total reads completed successfully + disk.all.read_merge # merged: grouped reads (resulting in one I/O) + disk.all.blkread # sectors: Sectors read successfully + disk.all.read_rawactive # ms: milliseconds spent reading + disk.all.write # total: Total writes completed successfully + disk.all.write_merge # merged: grouped writes (resulting in one I/O) + disk.all.blkwrite # sectors: Sectors written successfully + disk.all.read_rawactive # ms: milliseconds spent writing + # cur: I/O in progress + disk.all.avactive # s: seconds spent for I/O + disk.dev.read # total: Total reads completed successfully + disk.dev.read_merge # merged: grouped reads (resulting in one I/O) + disk.dev.blkread # sectors: Sectors read successfully + disk.dev.read_rawactive # ms: milliseconds spent reading + disk.dev.write # total: Total writes completed successfully + disk.dev.write_merge # merged: grouped writes (resulting in one I/O) + disk.dev.blkwrite # sectors: Sectors written successfully + disk.dev.read_rawactive # ms: milliseconds spent writing + # cur: I/O in progress + disk.dev.avactive # s: seconds spent for I/O +} +#---- +#+ tools/vmstat-summary:y:once: +## metrics sampled once by the vmstat(1) command +log advisory on once { + mem.physmem # K total memory +} +#---- +#+ zimbra/all:x:: +#---- +# DO NOT UPDATE THE FILE ABOVE THIS LINE +# Otherwise any changes may be lost the next time pmlogconf is +# used on this file. +# +# It is safe to make additions from here on ... +# + +[access] +disallow .* : all; +disallow :* : all; +allow local:* : enquire; From f37ad369384a3d53cb565701f1642c43b7eb0464 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 12 Feb 2016 15:29:55 -0500 Subject: [PATCH 4/7] Update pcp to support sample interval --- agent/tool-scripts/pcp | 4 ++-- agent/tool-scripts/postprocess/pcp-postprocess | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/agent/tool-scripts/pcp b/agent/tool-scripts/pcp index 8f1fdcff72..3e70a44835 100755 --- a/agent/tool-scripts/pcp +++ b/agent/tool-scripts/pcp @@ -102,7 +102,7 @@ tool_cmd_file="$tool_output_dir/$tool.cmd" tool_pid_file="$pbench_tmp/$group.$iteration.$tool.pid" tool_stdout_file="$tool_output_dir/$tool-stdout.txt" tool_stderr_file="$tool_output_dir/$tool-stderr.txt" -tool_cmd="$tool_bin -c pmlogger.conf -t $interval archive >$tool_stdout_file 2>$tool_stderr_file & echo \$! >$tool_pid_file" +tool_cmd="$tool_bin -c pmlogger.conf -t ${interval} archive >$tool_stdout_file 2>$tool_stderr_file & echo \$! >$tool_pid_file" case "$mode" in install) @@ -147,6 +147,6 @@ case "$mode" in ;; postprocess) debug_log "postprocessing $script_name" - $script_path/postprocess/$script_name-postprocess "$tool_output_dir" >>"$tool_stdout_file" 2>>"$tool_stderr_file" + $script_path/postprocess/$script_name-postprocess "$tool_output_dir" "$interval" >>"$tool_stdout_file" 2>>"$tool_stderr_file" ;; esac diff --git a/agent/tool-scripts/postprocess/pcp-postprocess b/agent/tool-scripts/postprocess/pcp-postprocess index b9a7f82184..55dd8c2df0 100755 --- a/agent/tool-scripts/postprocess/pcp-postprocess +++ b/agent/tool-scripts/postprocess/pcp-postprocess @@ -1,5 +1,10 @@ #!/bin/bash dir=$1 +interval=$2 + +if [ -z "$interval"]; then + interval=3 +fi pushd $dir >/dev/null mkdir -p csv @@ -25,7 +30,7 @@ for html_page in $html_pages; do chart_count=1 for graph in `pminfo -a archive $html_page`; do - pmdumptext $graph -a archive -f %s000 -m -d, | grep -v "?" | sed -e s/^Time/timestamp_ms/ >./csv/$graph.csv + pmdumptext $graph -a archive -t $interval -f %s000 -m -d, | grep -v "?" | sed -e s/^Time/timestamp_ms/ >./csv/$graph.csv echo '
' >>${html_page}.html echo '

'$graph >>${html_page}.html echo ' ' >>${html_page}.html From d5918f5c184047bd09f10ea4c0ad0301f7ef2918 Mon Sep 17 00:00:00 2001 From: Andrew Theurer Date: Fri, 12 Feb 2016 17:21:27 -0500 Subject: [PATCH 5/7] Update how pcp creates/uses pmlogger config --- agent/config/pmlogger.conf | 945 ------------------------------------- agent/tool-scripts/pcp | 11 +- 2 files changed, 6 insertions(+), 950 deletions(-) delete mode 100644 agent/config/pmlogger.conf diff --git a/agent/config/pmlogger.conf b/agent/config/pmlogger.conf deleted file mode 100644 index dd18a59e7d..0000000000 --- a/agent/config/pmlogger.conf +++ /dev/null @@ -1,945 +0,0 @@ -#pmlogconf 2.0 -# -# pmlogger(1) config file created and updated by pmlogconf -# -# DO NOT UPDATE THE INITIAL SECTION OF THIS FILE. -# Any changes may be lost the next time pmlogconf is used -# on this file. -# -#+ groupdir /var/lib/pcp/config/pmlogconf -# -#+ apache/processes:x:: -#---- -#+ apache/summary:x:: -#---- -#+ apache/uptime:x:: -#---- -#+ cpu/percpu:y:3sec: -## utilization per CPU -log advisory on 3sec { - kernel.percpu.cpu -} -#---- -#+ cpu/summary:y:3sec: -## utilization (usr, sys, idle, ...) over all CPUs -log advisory on 3sec { - kernel.all.cpu -} -#---- -#+ disk/percontroller:x:: -#---- -#+ disk/perdisk:y:3sec: -## per spindle disk activity -log advisory on 3sec { - disk.dev.read - disk.dev.write - disk.dev.total - disk.dev.read_bytes - disk.dev.write_bytes - disk.dev.total_bytes - disk.dev.avactive -} -#---- -#+ disk/perpartition:y:3sec: -## per logical block device activity -log advisory on 3sec { - disk.partitions.read - disk.partitions.write - disk.partitions.read_bytes - disk.partitions.write_bytes -} -#---- -#+ disk/summary:y:3sec: -## summary disk activity (IOPs and bytes for both reads and writes over -## all disks). -log advisory on 3sec { - disk.all.read - disk.all.write - disk.all.total - disk.all.read_bytes - disk.all.write_bytes - disk.all.total_bytes - disk.all.avactive -} -#---- -#+ filesystem/all:y:3sec: -## generic filesystem size, fullness and mount information -log advisory on 3sec { - filesys -} -#---- -#+ filesystem/summary:y:3sec: -## filesystem size and fullness -log advisory on 3sec { - filesys.full - filesys.used - filesys.free - filesys.avail # for Linux -} -#---- -#+ filesystem/xfs-all:y:3sec: -## all available XFS information -log advisory on 3sec { - xfs -} -#---- -#+ filesystem/xfs-io-irix:x:: -#---- -#+ filesystem/xfs-io-linux:y:3sec: -## XFS data and log I/O traffic [Linux] -log advisory on 3sec { - xfs.log.writes - xfs.log.blocks - xfs.log.noiclogs - xfs.read - xfs.write - xfs.read_bytes - xfs.write_bytes - xfs.buffer -} -#---- -#+ kernel/bufcache-activity:x:: -#---- -#+ kernel/bufcache-all:x:: -#---- -#+ kernel/inode-cache:x:: -#---- -#+ kernel/interrupts-irix:x:: -#---- -#+ kernel/load:y:3sec: -## load average -log advisory on 3sec { - kernel.all.load -} -#---- -#+ kernel/memory-irix:x:: -#---- -#+ kernel/memory-linux:y:3sec: -## kernel memory allocation [Linux] -log advisory on 3sec { - mem.util -} -#---- -#+ kernel/queues-irix:x:: -#---- -#+ kernel/read-write-data:x:: -#---- -#+ kernel/summary-linux:y:3sec: -## summary kernel performance data [Linux] -log advisory on 3sec { - mem.util - swap.pagesin - swap.pagesout - swap.free - swap.used - kernel.all.pswitch - kernel.all.intr - kernel.all.load - kernel.all.runnable - network.interface.collisions - network.interface.in.drops - network.interface.out.drops - disk.dev.avactive - filesys.full -} -#---- -#+ kernel/summary-windows:x:: -#---- -#+ kernel/syscalls-irix:x:: -#---- -#+ kernel/syscalls-linux:y:3sec: -## context switches and fork system calls over all CPUs [Linux] -log advisory on 3sec { - kernel.all.pswitch - kernel.all.sysfork -} -#---- -#+ kernel/syscalls-percpu-irix:x:: -#---- -#+ kernel/vnodes:x:: -#---- -#+ mailq/summary:x:: -#---- -#+ memory/proc-linux:y:3sec: -## System process memory-usage information -log advisory on 3sec { - proc.memory.size - proc.memory.rss - proc.psinfo.maj_flt -} -#---- -#+ memory/swap-activity:y:3sec: -## pages in and out (severe VM demand) -log advisory on 3sec { - swap.pagesin - swap.pagesout -} -#---- -#+ memory/swap-all:y:3sec: -## current swap allocation and all swap activity -log advisory on 3sec { - swap -} -#---- -#+ memory/swap-config:y:3sec: -## swap configuration -log advisory on 3sec { - swapdev -} -#---- -#+ memory/tlb-irix:x:: -#---- -#+ mysql/summary:x:: -#---- -#+ netfilter/config:x:: -#---- -#+ netfilter/summary:x:: -#---- -#+ networking/interface-all:y:3sec: -## all available data per network interface -log advisory on 3sec { - network.interface -} -#---- -#+ networking/interface-summary:y:3sec: -## bytes, packets and errors (in and out) per network interface -log advisory on 3sec { - network.interface.in.bytes - network.interface.in.packets - network.interface.in.errors - network.interface.out.bytes - network.interface.out.packets - network.interface.out.errors - network.interface.collisions -} -#---- -#+ networking/mbufs:x:: -#---- -#+ networking/multicast:x:: -#---- -#+ networking/nfs2-client:y:3sec: -## NFS v2 client stats -log advisory on 3sec { - nfs.client -} -#---- -#+ networking/nfs2-server:y:3sec: -## NFS v2 server stats -log advisory on 3sec { - nfs.server -} -#---- -#+ networking/nfs3-client:y:3sec: -## NFS v3 client stats -log advisory on 3sec { - nfs3.client -} -#---- -#+ networking/nfs3-server:y:3sec: -## NFS v3 server stats -log advisory on 3sec { - nfs3.server -} -#---- -#+ networking/nfs4-client:y:3sec: -## NFS v4 client stats -log advisory on 3sec { - nfs4.client -} -#---- -#+ networking/nfs4-server:y:3sec: -## NFS v4 server stats -log advisory on 3sec { - nfs4.server -} -#---- -#+ networking/other-protocols:y:3sec: -## all available data for other protocols (ip, icmp, igmp, udplite) -log advisory on 3sec { - network.ip - network.icmp - network.igmp # for Irix - network.udplite # for Linux -} -#---- -#+ networking/rpc:y:3sec: -## RPC stats -log advisory on 3sec { - rpc -} -#---- -#+ networking/socket-irix:x:: -#---- -#+ networking/socket-linux:y:3sec: -## socket stats (in use, high-water mark, etc.) [Linux] -log advisory on 3sec { - network.sockstat -} -#---- -#+ networking/streams:x:: -#---- -#+ networking/tcp-activity-irix:x:: -#---- -#+ networking/tcp-activity-linux:y:3sec: -## TCP packets (in and out), errors and retransmits [Linux] -log advisory on 3sec { - network.tcp.insegs - network.tcp.outsegs - network.tcp.retranssegs - network.tcp.inerrs -} -#---- -#+ networking/tcp-all:y:3sec: -## all available TCP data -log advisory on 3sec { - network.tcp -} -#---- -#+ networking/udp-all:y:3sec: -## all available UDP data -log advisory on 3sec { - network.udp -} -#---- -#+ networking/udp-packets-irix:x:: -#---- -#+ networking/udp-packets-linux:y:3sec: -## UDP packets in and out [Linux] -log advisory on 3sec { - network.udp.indatagrams - network.udp.outdatagrams -} -#---- -#+ platform/hinv:y:once: -## platform, filesystem and hardware configuration -log advisory on once { - hinv - kernel.uname - filesys.mountdir - filesys.blocksize - filesys.capacity -} -#---- -#+ platform/linux:y:once: -## Linux swap, cache and networking configuration -log advisory on once { - swap.length - mem.slabinfo.objects.size - network.interface.mtu - network.interface.speed - network.interface.duplex - network.interface.inet_addr -} -#---- -#+ postgresql/summary:x:: -#---- -#+ sgi/cpu-evctr:x:: -#---- -#+ sgi/craylink:x:: -#---- -#+ sgi/efs:x:: -#---- -#+ sgi/hub:x:: -#---- -#+ sgi/kaio:x:: -#---- -#+ sgi/node-memory:x:: -#---- -#+ sgi/numa:x:: -#---- -#+ sgi/numa-summary:x:: -#---- -#+ sgi/xbow:x:: -#---- -#+ sgi/xlv-activity:x:: -#---- -#+ sgi/xlv-stripe-io:x:: -#---- -#+ sgi/xvm-all:x:: -#---- -#+ sgi/xvm-ops:x:: -#---- -#+ sgi/xvm-stats:x:: -#---- -#+ shping/summary:x:: -#---- -#+ sqlserver/summary:x:: -#---- -#+ tools/atop:y:3sec: -## metrics used by the atop command -log advisory on 3sec { - disk.dev.read - disk.dev.write - disk.dev.blkread - disk.dev.blkwrite - disk.dev.aveq - disk.dev.avactive - disk.dm.read - disk.dm.write - disk.dm.blkread - disk.dm.blkwrite - kernel.all.pswitch - kernel.all.intr - kernel.all.sysfork - kernel.all.load - kernel.all.cpu.user - kernel.all.cpu.nice - kernel.all.cpu.sys - kernel.all.cpu.idle - kernel.all.cpu.wait.total - kernel.all.cpu.irq.hard - kernel.all.cpu.irq.soft - kernel.all.cpu.steal - kernel.all.cpu.guest - kernel.percpu.cpu.sys - kernel.percpu.cpu.user - kernel.percpu.cpu.nice - kernel.percpu.cpu.idle - kernel.percpu.cpu.wait.total - kernel.percpu.cpu.irq.hard - kernel.percpu.cpu.irq.soft - kernel.percpu.cpu.steal - kernel.percpu.cpu.guest - hinv.cpu.clock - mem.vmstat.pgscan_direct_dma - mem.vmstat.pgscan_direct_dma32 - mem.vmstat.pgscan_direct_high - mem.vmstat.pgscan_direct_movable - mem.vmstat.pgscan_direct_normal - mem.vmstat.pgscan_kswapd_dma - mem.vmstat.pgscan_kswapd_dma32 - mem.vmstat.pgscan_kswapd_high - mem.vmstat.pgscan_kswapd_movable - mem.vmstat.pgscan_kswapd_normal - mem.vmstat.pgsteal_dma - mem.vmstat.pgsteal_dma32 - mem.vmstat.pgsteal_high - mem.vmstat.pgsteal_movable - mem.vmstat.pgsteal_normal - mem.vmstat.allocstall - mem.util.cached - mem.util.dirty - mem.physmem - mem.freemem - mem.util.bufmem - mem.util.shmem - mem.util.slab - mem.util.slabReclaimable - mem.util.committed_AS - mem.util.commitLimit - mem.util.hugepagesTotal - mem.util.hugepagesFree - hinv.hugepagesize - swap.pagesin - swap.pagesout - swap.length - swap.free - network.interface.baudrate - network.interface.duplex - network.interface.in.bytes - network.interface.in.packets - network.interface.in.errors - network.interface.in.drops - network.interface.in.fifo - network.interface.in.frame - network.interface.in.compressed - network.interface.in.mcasts - network.interface.out.bytes - network.interface.out.packets - network.interface.out.errors - network.interface.out.drops - network.interface.out.fifo - network.interface.collisions - network.interface.out.carrier - network.interface.out.compressed - network.ip.forwarding - network.ip.defaultttl - network.ip.inreceives - network.ip.inhdrerrors - network.ip.inaddrerrors - network.ip.forwdatagrams - network.ip.inunknownprotos - network.ip.indiscards - network.ip.indelivers - network.ip.outrequests - network.ip.outdiscards - network.ip.outnoroutes - network.ip.reasmtimeout - network.ip.reasmreqds - network.ip.reasmoks - network.ip.reasmfails - network.ip.fragoks - network.ip.fragfails - network.ip.fragcreates - network.icmp.inmsgs - network.icmp.inerrors - network.icmp.indestunreachs - network.icmp.intimeexcds - network.icmp.inparmprobs - network.icmp.insrcquenchs - network.icmp.inredirects - network.icmp.inechos - network.icmp.inechoreps - network.icmp.intimestamps - network.icmp.intimestampreps - network.icmp.inaddrmasks - network.icmp.inaddrmaskreps - network.icmp.outmsgs - network.icmp.outerrors - network.icmp.outdestunreachs - network.icmp.outtimeexcds - network.icmp.outparmprobs - network.icmp.outsrcquenchs - network.icmp.outredirects - network.icmp.outechos - network.icmp.outechoreps - network.icmp.outtimestamps - network.icmp.outtimestampreps - network.icmp.outaddrmasks - network.icmp.outaddrmaskreps - network.tcp.rtoalgorithm - network.tcp.rtomin - network.tcp.rtomax - network.tcp.maxconn - network.tcp.activeopens - network.tcp.passiveopens - network.tcp.attemptfails - network.tcp.estabresets - network.tcp.currestab - network.tcp.insegs - network.tcp.outsegs - network.tcp.retranssegs - network.tcp.inerrs - network.tcp.outrsts - network.udp.indatagrams - network.udp.noports - network.udp.inerrors - network.udp.outdatagrams -} -#---- -#+ tools/atop-httpstats:x:: -#---- -#+ tools/atop-proc:y:3sec: -## per-process metrics used by the atop command -log advisory on 3sec { - proc.psinfo.cmd - proc.psinfo.sname - proc.psinfo.ppid - proc.psinfo.minflt - proc.psinfo.maj_flt - proc.psinfo.utime - proc.psinfo.stime - proc.psinfo.priority - proc.psinfo.nice - proc.psinfo.start_time - proc.psinfo.vsize - proc.psinfo.rss - proc.psinfo.processor - proc.psinfo.rt_priority - proc.psinfo.policy - proc.psinfo.threads - proc.psinfo.tgid - proc.psinfo.pid - proc.namespaces.envid - proc.id.uid - proc.id.euid - proc.id.suid - proc.id.fsuid - proc.id.gid - proc.id.egid - proc.id.sgid - proc.id.fsgid - proc.memory.vmdata - proc.memory.vmstack - proc.memory.vmexe - proc.memory.vmlib - proc.memory.vmswap - proc.io.read_bytes - proc.io.write_bytes - proc.io.cancelled_write_bytes - proc.id.uid_nm - proc.id.euid_nm - proc.id.suid_nm - proc.id.fsuid_nm -} -#---- -#+ tools/atop-summary:y:once: -## metrics sampled once by the atop command -log advisory on once { - hinv.ncpu - hinv.ndisk - hinv.ninterface - hinv.pagesize - kernel.all.hz - kernel.uname.release - kernel.uname.version - kernel.uname.machine - kernel.uname.nodename - mem.physmem -} -#---- -#+ tools/collectl:y:3sec: -## metrics used by the collectl command -log advisory on 3sec { - disk.all.read - disk.all.read_bytes - disk.all.read_merge - disk.all.write - disk.all.write_bytes - disk.all.write_merge - disk.dev.blkread - disk.dev.blkwrite - disk.dev.read - disk.dev.read_bytes - disk.dev.read_merge - disk.dev.write - disk.dev.write_bytes - disk.dev.write_merge - hinv.ncpu - kernel.all.cpu.idle - kernel.all.cpu.intr - kernel.all.cpu.irq.hard - kernel.all.cpu.irq.soft - kernel.all.cpu.nice - kernel.all.cpu.steal - kernel.all.cpu.sys - kernel.all.cpu.user - kernel.all.cpu.wait.total - kernel.all.intr - kernel.all.load - kernel.all.nprocs - kernel.all.pswitch - kernel.all.runnable - kernel.percpu.cpu.idle - kernel.percpu.cpu.intr - kernel.percpu.cpu.irq.hard - kernel.percpu.cpu.irq.soft - kernel.percpu.cpu.nice - kernel.percpu.cpu.steal - kernel.percpu.cpu.sys - kernel.percpu.cpu.user - kernel.percpu.cpu.wait.total - mem.freemem - mem.physmem - mem.util.anonpages - mem.util.bufmem - mem.util.cached - mem.util.committed_AS - mem.util.inactive - mem.util.mapped - mem.util.mlocked - mem.util.slab - mem.util.swapTotal - mem.util.used - mem.vmstat.pgfault - mem.vmstat.pgmajfault - mem.vmstat.pgpgin - mem.vmstat.pgpgout - network.interface.in.bytes - network.interface.in.compressed - network.interface.in.errors - network.interface.in.mcasts - network.interface.in.packets - network.interface.out.bytes - network.interface.out.errors - network.interface.out.packets - network.interface.total.mcasts - proc.runq.blocked - proc.runq.runnable - swap.free - swap.pagesin - swap.pagesout - swap.used -} -#---- -#+ tools/collectl-interrupts:y:3sec: -## percpu interrupt metrics for collectl -log advisory on 3sec { - kernel.percpu.interrupts -} -#---- -#+ tools/collectl-summary:y:once: -## metrics sampled once by the collectl command -log advisory on once { - hinv.ncpu - mem.physmem -} -#---- -#+ tools/dmcache:x:: -#---- -#+ tools/iostat:y:3sec: -## metrics used by the iostat(1) command -log advisory on 3sec { - disk.dev.read_bytes # kB_read - disk.dm.read_bytes - disk.dev.write_bytes # kB_wrtn - disk.dm.write_bytes - kernel.all.cpu.user # %user - kernel.all.cpu.nice # %nice - kernel.all.cpu.sys # %system - kernel.all.cpu.wait.total # %iowait - kernel.all.cpu.steal # %steal - kernel.all.cpu.idle # %idle - disk.all.read # total: Total reads completed successfully - disk.all.read_merge # merged: grouped reads (resulting in one I/O) - disk.all.blkread # sectors: Sectors read successfully - disk.all.read_rawactive # ms: milliseconds spent reading - disk.all.write # total: Total writes completed successfully - disk.all.write_merge # merged: grouped writes (resulting in one I/O) - disk.all.blkwrite # sectors: Sectors written successfully - disk.all.write_rawactive # ms: milliseconds spent writing - disk.all.avactive # s: seconds spent for I/O - disk.dev.read # total: Total reads completed successfully - disk.dm.read - disk.dev.read_merge # merged: grouped reads (resulting in one I/O) - disk.dm.read_merge - disk.dev.blkread # sectors: Sectors read successfully - disk.dm.blkread - disk.dev.read_rawactive # ms: milliseconds spent reading - disk.dm.read_rawactive - disk.dev.write # total: Total writes completed successfully - disk.dm.write - disk.dev.write_merge # merged: grouped writes (resulting in one I/O) - disk.dm.write_merge - disk.dev.blkwrite # sectors: Sectors written successfully - disk.dm.blkwrite - disk.dev.write_rawactive # ms: milliseconds spent writing - disk.dm.write_rawactive - disk.all.read_merge # rrqm/s - disk.all.write_merge # wrqm/s - disk.all.read # r/s - disk.all.write # w/s - disk.all.read_bytes # rkB/s - disk.all.write_bytes # wkB/s - # avgqu-sz - # - avgrq-sz - disk.dev.avactive # await - disk.dm.avactive - disk.all.read_rawactive # r_await - disk.all.write_rawactive # w_await - # - svctm - # - %util (r/s + w/s) * (svctm / 1000) -} -#---- -#+ tools/ip:y:3sec: -## metrics used by the ip(1) command -log advisory on 3sec { - network.interface.mtu - network.interface.out.bytes - network.interface.out.packets - network.interface.out.errors - network.interface.out.drops - network.interface.out.fifo - network.interface.out.carrier - network.interface.collisions - network.interface.in.bytes - network.interface.in.packets - network.interface.in.errors - network.interface.in.drops - network.interface.in.fifo - network.interface.total.mcasts -} -#---- -#+ tools/mpstat:y:3sec: -## metrics used by the mpstat(1) command -log advisory on 3sec { - kernel.all.cpu.user # %usr - kernel.percpu.cpu.user - kernel.all.cpu.nice # %nice - kernel.percpu.cpu.nice - kernel.all.cpu.sys # %sys - kernel.percpu.cpu.sys - kernel.all.cpu.wait.total # %iowait - kernel.percpu.cpu.wait.total - kernel.all.cpu.intr # %irq - kernel.percpu.cpu.intr - kernel.all.cpu.irq.soft # %soft - kernel.percpu.cpu.irq.soft - kernel.all.cpu.steal # %steal - kernel.percpu.cpu.steal - kernel.all.cpu.guest # %guest - kernel.percpu.cpu.guest - kernel.all.cpu.idle # %idle - kernel.percpu.cpu.idle -} -#---- -#+ tools/mpstat-interrupts:y:3sec: -## percpu interrupt metrics for the mpstat(1) command -log advisory on 3sec { - kernel.percpu.interrupts -} -#---- -#+ tools/numastat:y:3sec: -## metrics used by the pcp-numastat(1) command -log advisory on 3sec { - mem.numa.alloc -} -#---- -#+ tools/sar:y:3sec: -## metrics used by the sar(1) command -log advisory on 3sec { - disk.all.read - disk.all.read_bytes - disk.all.total - disk.all.total_bytes - disk.all.write - disk.all.write_bytes - disk.dev.avactive - #disk.dev.avqsz - #disk.dev.avrqsz - #disk.dev.await - disk.dev.read_bytes - #disk.dev.svctm - disk.dev.total - disk.dev.total_bytes - disk.dev.write_bytes - kernel.all.cpu.guest - kernel.all.cpu.idle - kernel.all.cpu.intr - kernel.all.cpu.nice - kernel.all.cpu.steal - kernel.all.cpu.sys - kernel.all.cpu.user - kernel.all.cpu.wait.total - kernel.all.intr - kernel.all.load - kernel.all.pswitch - kernel.percpu.cpu.guest - kernel.percpu.cpu.idle - kernel.percpu.cpu.intr - kernel.percpu.cpu.nice - kernel.percpu.cpu.steal - kernel.percpu.cpu.sys - kernel.percpu.cpu.user - kernel.percpu.cpu.wait.total - mem.vmstat.pgfault - mem.vmstat.pgfree - mem.vmstat.pgmajfault - mem.vmstat.pgpgin - mem.vmstat.pgpgout - mem.util - network.interface.collisions - network.interface.in.bytes - network.interface.in.drops - network.interface.in.errors - network.interface.in.fifo - network.interface.in.frame - network.interface.in.packets - network.interface.out.bytes - network.interface.out.carrier - network.interface.out.drops - network.interface.out.errors - network.interface.out.fifo - network.interface.out.packets - proc.nprocs - proc.runq.runnable - swap.pagesin - swap.pagesout - vfs.dentry.count - vfs.files.count - vfs.inodes.count -} -#---- -#+ tools/sar-summary:y:once: -## metrics sampled once by the sar(1) command -log advisory on once { - hinv.ncpu -} -#---- -#+ tools/vmstat:y:3sec: -## metrics used by the vmstat(1) command -log advisory on 3sec { - mem.util.active # K active memory - mem.util.inactive # K inactive memory - mem.freemem # K free memory - mem.util.bufmem # K buffer memory - mem.util.cached # K swap cache - mem.util.swapTotal # K total swap - #- K used swap - mem.util.swapFree # K free swap - kernel.all.cpu.user # non-nice user cpu ticks - kernel.all.cpu.nice # nice user cpu ticks - kernel.all.cpu.sys # system cpu ticks - kernel.all.cpu.idle # idle cpu ticks - kernel.all.cpu.wait.total # IO-wait cpu ticks - kernel.all.cpu.irq.hard # IRQ cpu ticks - kernel.all.cpu.irq.soft # softirq cpu ticks - kernel.all.cpu.steal # stolen cpu ticks - mem.vmstat.pgpgin # pages paged in - mem.vmstat.pgpgout # pages paged out - mem.vmstat.pswpin # pages swapped in - mem.vmstat.pswpout # pages swapped out - kernel.all.intr # interrupts - kernel.all.pswitch # CPU context switches - # - boot time - kernel.all.sysfork # forks - proc.runq.runnable # r: The number of processes waiting for run time. - proc.runq.blocked # b: The number of processes in uninterruptible sleep. - mem.vmstat.nr_mapped # swpd: the amount of virtual memory used. - mem.util.free # free: the amount of idle memory. - mem.util.bufmem # buff: the amount of memory used as buffers. - mem.util.cached # cache: the amount of memory used as cache. - mem.util.inactive # inact: the amount of inactive memory. (-a option) - mem.util.active # active: the amount of active memory. (-a option) - swap.in # si: Amount of memory swapped in from disk (/s). - swap.pagesout # so: Amount of memory swapped to disk (/s). - # - bi: Blocks received from a block device (blocks/s). - # - bo: Blocks sent to a block device (blocks/s). - kernel.all.intr # in: The number of interrupts per second, including the clock. - kernel.all.pswitch # cs: The number of context switches per second. - kernel.all.cpu.user # us: Time spent running non-kernel code. (user time, including nice time) - kernel.all.cpu.sys # sy: Time spent running kernel code. (system time) - kernel.all.idletime # id: Time spent idle. - kernel.all.cpu.wait.total # wa: Time spent waiting for IO. - kernel.all.cpu.steal # st: Time stolen from a virtual machine. - disk.partitions.read # total: Total reads completed successfully - # - merged: grouped reads (resulting in one I/O) - disk.partitions.blkread # sectors: Sectors read successfully - # - ms: milliseconds spent reading - disk.partitions.write # total: Total writes completed successfully - # - merged: grouped writes (resulting in one I/O) - disk.partitions.blkwrite # sectors: Sectors written successfully - # - ms: milliseconds spent writing - # cur: I/O in progress - # - s: seconds spent for I/O - disk.all.read # total: Total reads completed successfully - disk.all.read_merge # merged: grouped reads (resulting in one I/O) - disk.all.blkread # sectors: Sectors read successfully - disk.all.read_rawactive # ms: milliseconds spent reading - disk.all.write # total: Total writes completed successfully - disk.all.write_merge # merged: grouped writes (resulting in one I/O) - disk.all.blkwrite # sectors: Sectors written successfully - disk.all.read_rawactive # ms: milliseconds spent writing - # cur: I/O in progress - disk.all.avactive # s: seconds spent for I/O - disk.dev.read # total: Total reads completed successfully - disk.dev.read_merge # merged: grouped reads (resulting in one I/O) - disk.dev.blkread # sectors: Sectors read successfully - disk.dev.read_rawactive # ms: milliseconds spent reading - disk.dev.write # total: Total writes completed successfully - disk.dev.write_merge # merged: grouped writes (resulting in one I/O) - disk.dev.blkwrite # sectors: Sectors written successfully - disk.dev.read_rawactive # ms: milliseconds spent writing - # cur: I/O in progress - disk.dev.avactive # s: seconds spent for I/O -} -#---- -#+ tools/vmstat-summary:y:once: -## metrics sampled once by the vmstat(1) command -log advisory on once { - mem.physmem # K total memory -} -#---- -#+ zimbra/all:x:: -#---- -# DO NOT UPDATE THE FILE ABOVE THIS LINE -# Otherwise any changes may be lost the next time pmlogconf is -# used on this file. -# -# It is safe to make additions from here on ... -# - -[access] -disallow .* : all; -disallow :* : all; -allow local:* : enquire; diff --git a/agent/tool-scripts/pcp b/agent/tool-scripts/pcp index 3e70a44835..1ecb589997 100755 --- a/agent/tool-scripts/pcp +++ b/agent/tool-scripts/pcp @@ -108,6 +108,10 @@ case "$mode" in install) # pcp package are not maintained by pbench check_install_rpm "$tool_package_name" || error_log "$script_name: installation of $tool_package_name failed" + # if a user does not create their own pmlogger config, we create one + if [ ! -e $pmlogger_conf ]; then + /usr/libexec/pcp/bin/pmlogconf -c -r $pmlogger_conf + fi ;; start) # TODO: write start_service() in $pbench_bin/base script @@ -127,11 +131,8 @@ case "$mode" in /bin/rm -f archive* echo "$tool_cmd" >"$tool_cmd_file" chmod +x "$tool_cmd_file" - if [ -e "$pmlogger_conf" ]; then - /bin/cp "$pmlogger_conf" "$tool_output_dir" - else - error_log "$script_name: could not find $pmlogger_conf" - fi + # pmlogger config is kept with tool data for debug purposes + /bin/cp "$pmlogger_conf" "$tool_output_dir" debug_log "$script_name: running $tool_cmd" . $tool_cmd_file popd >/dev/null From e0f9d266b572d99a6fe0fd6f1d12acd6357896fb Mon Sep 17 00:00:00 2001 From: Andrew Theurer Date: Tue, 8 Mar 2016 15:25:46 -0500 Subject: [PATCH 6/7] Add more robust checks for pcp install & start New function to start pcp More error logging Exit if check_install_rpm fails --- agent/tool-scripts/pcp | 54 +++++++++++++++++++++++++++++------------- 1 file changed, 38 insertions(+), 16 deletions(-) diff --git a/agent/tool-scripts/pcp b/agent/tool-scripts/pcp index 1ecb589997..96a82f0073 100755 --- a/agent/tool-scripts/pcp +++ b/agent/tool-scripts/pcp @@ -27,6 +27,27 @@ options="none" tool_bin="/usr/bin/pmlogger" pmlogger_conf="$pbench_bin/config/pmlogger.conf" +# TODO: implement a generic start_service function in $pbench_run/base +function start_pmcd { + if ! pgrep pmcd; then + if [ -x /usr/bin/systemctl ]; then + systemctl start pmcd + else if [-x /usr/bin/service ]; then + service pmcd start + else + error_log "$script_name: could not start pmcd service" + fi + fi + fi + if pgrep pmcd; then + debug_log "$script_name: service pmcd started" + return 0 + else + error_log "$script_name: could not start pmcd service" + return 1 + fi +} + # Process options and arguments opts=$(getopt -q -o idp --longoptions "dir:,group:,iteration:,interval:,start,stop,install,postprocess" -n "getopt.sh" -- "$@"); if [ $? -ne 0 ]; then @@ -107,25 +128,26 @@ tool_cmd="$tool_bin -c pmlogger.conf -t ${interval} archive >$tool_stdout_file 2 case "$mode" in install) # pcp package are not maintained by pbench - check_install_rpm "$tool_package_name" || error_log "$script_name: installation of $tool_package_name failed" - # if a user does not create their own pmlogger config, we create one - if [ ! -e $pmlogger_conf ]; then - /usr/libexec/pcp/bin/pmlogconf -c -r $pmlogger_conf - fi - ;; - start) - # TODO: write start_service() in $pbench_bin/base script - if ! pgrep pmcd; then - if [ -x /usr/bin/systemctl ]; then - systemctl start pmcd - else if [-x /usr/bin/service ]; then - service pmcd start + if check_install_rpm $tool_package_name; then + # if a user does not create their own pmlogger config, we create one + if [ ! -e $pmlogger_conf ]; then + if start_pmcd; then + if /usr/libexec/pcp/bin/pmlogconf -c -r $pmlogger_conf; then + debug_log "$script_name: created pmlogger config" + else + error_log "$script_name: could not create pmlogger config" + fi else - error_log "$script_name: could not start PCP service (pmcd)" + error_log "$script_name: creating pmlogger config not possible because pmcd could not be started" fi fi + else + error_log "$script_name: installation of $tool_package_name failed" + exit 1 fi - if pgrep pmcd; then + ;; + start) + if start_pmcd; then mkdir -p "$tool_output_dir" pushd "$tool_output_dir" >/dev/null /bin/rm -f archive* @@ -138,7 +160,7 @@ case "$mode" in popd >/dev/null wait else - error_log "$script_name: could not get pmcd running" + error_log "$script_name: could not not run pmlogger because pmcd is not running" fi ;; stop) From a4634d829f4e461e4b52b49b90d5e6f05b67a1c9 Mon Sep 17 00:00:00 2001 From: Nick Dokos Date: Thu, 10 Mar 2016 11:31:29 -0500 Subject: [PATCH 7/7] Unit test case for pcp. --- .../gold/pcp-0/csv/disk.all.avactive.csv | 19 + .../gold/pcp-0/csv/disk.all.blkread.csv | 19 + .../gold/pcp-0/csv/disk.all.blkwrite.csv | 19 + .../gold/pcp-0/csv/disk.all.read.csv | 19 + .../gold/pcp-0/csv/disk.all.read_bytes.csv | 19 + .../gold/pcp-0/csv/disk.all.total.csv | 19 + .../gold/pcp-0/csv/disk.all.total_bytes.csv | 19 + .../gold/pcp-0/csv/disk.all.write.csv | 19 + .../gold/pcp-0/csv/disk.all.write_bytes.csv | 19 + .../gold/pcp-0/csv/event.flags.csv | 1 + .../gold/pcp-0/csv/event.missed.csv | 1 + .../gold/pcp-0/csv/filesys.blocksize.csv | 1 + .../gold/pcp-0/csv/filesys.capacity.csv | 20 ++ .../gold/pcp-0/csv/filesys.mountdir.csv | 20 ++ .../gold/pcp-0/csv/hinv.cpu.bogomips.csv | 20 ++ .../gold/pcp-0/csv/hinv.cpu.cache.csv | 20 ++ .../pcp-0/csv/hinv.cpu.cache_alignment.csv | 20 ++ .../gold/pcp-0/csv/hinv.cpu.clock.csv | 20 ++ .../gold/pcp-0/csv/hinv.cpu.flags.csv | 20 ++ .../gold/pcp-0/csv/hinv.cpu.model.csv | 20 ++ .../gold/pcp-0/csv/hinv.cpu.model_name.csv | 20 ++ .../gold/pcp-0/csv/hinv.cpu.online.csv | 1 + .../gold/pcp-0/csv/hinv.cpu.stepping.csv | 20 ++ .../gold/pcp-0/csv/hinv.cpu.vendor.csv | 20 ++ .../gold/pcp-0/csv/hinv.hugepagesize.csv | 20 ++ .../gold/pcp-0/csv/hinv.machine.csv | 20 ++ .../gold/pcp-0/csv/hinv.map.cpu_node.csv | 20 ++ .../gold/pcp-0/csv/hinv.map.cpu_num.csv | 20 ++ .../gold/pcp-0/csv/hinv.map.dmname.csv | 20 ++ .../gold/pcp-0/csv/hinv.map.scsi.csv | 20 ++ .../postprocess/gold/pcp-0/csv/hinv.ncpu.csv | 20 ++ .../postprocess/gold/pcp-0/csv/hinv.ndisk.csv | 20 ++ .../gold/pcp-0/csv/hinv.nfilesys.csv | 20 ++ .../gold/pcp-0/csv/hinv.ninterface.csv | 20 ++ .../postprocess/gold/pcp-0/csv/hinv.nnode.csv | 20 ++ .../gold/pcp-0/csv/hinv.node.online.csv | 1 + .../gold/pcp-0/csv/hinv.pagesize.csv | 20 ++ .../gold/pcp-0/csv/hinv.physmem.csv | 20 ++ .../gold/pcp-0/csv/kernel.all.cpu.guest.csv | 19 + .../pcp-0/csv/kernel.all.cpu.guest_nice.csv | 19 + .../gold/pcp-0/csv/kernel.all.cpu.idle.csv | 19 + .../gold/pcp-0/csv/kernel.all.cpu.intr.csv | 19 + .../pcp-0/csv/kernel.all.cpu.irq.hard.csv | 19 + .../pcp-0/csv/kernel.all.cpu.irq.soft.csv | 19 + .../gold/pcp-0/csv/kernel.all.cpu.nice.csv | 19 + .../gold/pcp-0/csv/kernel.all.cpu.steal.csv | 19 + .../gold/pcp-0/csv/kernel.all.cpu.sys.csv | 19 + .../gold/pcp-0/csv/kernel.all.cpu.user.csv | 19 + .../gold/pcp-0/csv/kernel.all.cpu.vnice.csv | 19 + .../gold/pcp-0/csv/kernel.all.cpu.vuser.csv | 19 + .../pcp-0/csv/kernel.all.cpu.wait.total.csv | 19 + .../gold/pcp-0/csv/kernel.all.intr.csv | 19 + .../gold/pcp-0/csv/kernel.all.load.csv | 20 ++ .../gold/pcp-0/csv/kernel.all.nusers.csv | 20 ++ .../gold/pcp-0/csv/kernel.all.pswitch.csv | 19 + .../gold/pcp-0/csv/kernel.all.uptime.csv | 20 ++ .../gold/pcp-0/csv/kernel.uname.distro.csv | 1 + .../gold/pcp-0/csv/kernel.uname.machine.csv | 20 ++ .../gold/pcp-0/csv/kernel.uname.nodename.csv | 1 + .../gold/pcp-0/csv/kernel.uname.release.csv | 1 + .../gold/pcp-0/csv/kernel.uname.sysname.csv | 1 + .../gold/pcp-0/csv/kernel.uname.version.csv | 1 + .../gold/pcp-0/csv/mem.util.bufmem.csv | 20 ++ .../gold/pcp-0/csv/mem.util.cached.csv | 20 ++ .../gold/pcp-0/csv/mem.util.free.csv | 20 ++ .../csv/network.interface.collisions.csv | 19 + .../pcp-0/csv/network.interface.in.bytes.csv | 19 + .../pcp-0/csv/network.interface.in.errors.csv | 19 + .../csv/network.interface.in.packets.csv | 19 + .../pcp-0/csv/network.interface.out.bytes.csv | 19 + .../csv/network.interface.out.errors.csv | 19 + .../csv/network.interface.out.packets.csv | 19 + .../gold/pcp-0/csv/pmcd.agent.status.csv | 20 ++ .../postprocess/gold/pcp-0/csv/pmcd.build.csv | 20 ++ .../gold/pcp-0/csv/pmcd.numagents.csv | 1 + .../gold/pcp-0/csv/pmcd.numclients.csv | 1 + .../gold/pcp-0/csv/pmcd.pmie.actions.csv | 0 .../gold/pcp-0/csv/pmcd.pmie.configfile.csv | 0 .../gold/pcp-0/csv/pmcd.pmie.eval.actual.csv | 0 .../pcp-0/csv/pmcd.pmie.eval.expected.csv | 0 .../gold/pcp-0/csv/pmcd.pmie.eval.false.csv | 0 .../gold/pcp-0/csv/pmcd.pmie.eval.true.csv | 0 .../gold/pcp-0/csv/pmcd.pmie.eval.unknown.csv | 0 .../gold/pcp-0/csv/pmcd.pmie.logfile.csv | 0 .../gold/pcp-0/csv/pmcd.pmie.numrules.csv | 0 .../gold/pcp-0/csv/pmcd.pmie.pmcd_host.csv | 0 .../gold/pcp-0/csv/pmcd.pmlogger.archive.csv | 21 ++ .../gold/pcp-0/csv/pmcd.pmlogger.host.csv | 21 ++ .../pcp-0/csv/pmcd.pmlogger.pmcd_host.csv | 20 ++ .../gold/pcp-0/csv/pmcd.pmlogger.port.csv | 21 ++ .../gold/pcp-0/csv/pmcd.services.csv | 1 + .../gold/pcp-0/csv/pmcd.version.csv | 20 ++ .../postprocess/gold/pcp-0/csv/pmda.uname.csv | 1 + .../postprocess/gold/pcp-0/csv/swap.in.csv | 1 + .../postprocess/gold/pcp-0/csv/swap.out.csv | 1 + .../gold/pcp-0/csv/swap.pagesin.csv | 19 + .../gold/pcp-0/csv/swap.pagesout.csv | 19 + .../postprocess/gold/pcp-0/csv/swap.used.csv | 20 ++ .../postprocess/gold/pcp-0/disk.html | 116 ++++++ .../postprocess/gold/pcp-0/event.html | 39 ++ .../postprocess/gold/pcp-0/filesys.html | 50 +++ .../postprocess/gold/pcp-0/hinv.html | 281 +++++++++++++++ .../postprocess/gold/pcp-0/kernel.html | 281 +++++++++++++++ .../postprocess/gold/pcp-0/mem.html | 50 +++ .../postprocess/gold/pcp-0/network.html | 94 +++++ .../postprocess/gold/pcp-0/pmcd.html | 237 +++++++++++++ .../postprocess/gold/pcp-0/pmda.html | 28 ++ .../postprocess/gold/pcp-0/stderr | 20 ++ .../postprocess/gold/pcp-0/stdout | 0 .../postprocess/gold/pcp-0/swap.html | 72 ++++ .../postprocess/samples/pcp-0/archive.0 | Bin 0 -> 43904 bytes .../postprocess/samples/pcp-0/archive.index | Bin 0 -> 192 bytes .../postprocess/samples/pcp-0/archive.meta | Bin 0 -> 6469 bytes .../postprocess/samples/pcp-0/pcp-stderr.txt | 21 ++ .../postprocess/samples/pcp-0/pcp-stdout.txt | 0 .../postprocess/samples/pcp-0/pcp.cmd | 1 + .../postprocess/samples/pcp-0/pmlogger.conf | 332 ++++++++++++++++++ .../postprocess/samples/pcp-0/pmlogger.log | 14 + agent/tool-scripts/postprocess/unittests | 49 ++- 119 files changed, 3096 insertions(+), 15 deletions(-) create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.avactive.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.blkread.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.blkwrite.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.read.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.read_bytes.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.total.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.total_bytes.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.write.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.write_bytes.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/event.flags.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/event.missed.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/filesys.blocksize.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/filesys.capacity.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/filesys.mountdir.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.bogomips.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.cache.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.cache_alignment.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.clock.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.flags.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.model.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.model_name.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.online.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.stepping.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.vendor.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.hugepagesize.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.machine.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.cpu_node.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.cpu_num.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.dmname.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.scsi.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.ncpu.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.ndisk.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.nfilesys.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.ninterface.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.nnode.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.node.online.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.pagesize.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.physmem.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.guest.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.guest_nice.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.idle.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.intr.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.irq.hard.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.irq.soft.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.nice.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.steal.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.sys.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.user.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.vnice.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.vuser.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.wait.total.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.intr.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.load.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.nusers.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.pswitch.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.uptime.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.distro.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.machine.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.nodename.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.release.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.sysname.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.version.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/mem.util.bufmem.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/mem.util.cached.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/mem.util.free.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.collisions.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.in.bytes.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.in.errors.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.in.packets.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.out.bytes.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.out.errors.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.out.packets.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.agent.status.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.build.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.numagents.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.numclients.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.actions.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.configfile.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.actual.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.expected.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.false.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.true.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.unknown.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.logfile.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.numrules.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.pmcd_host.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.archive.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.host.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.pmcd_host.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.port.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.services.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.version.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/pmda.uname.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.in.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.out.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.pagesin.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.pagesout.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.used.csv create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/disk.html create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/event.html create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/filesys.html create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/hinv.html create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/kernel.html create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/mem.html create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/network.html create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/pmcd.html create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/pmda.html create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/stderr create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/stdout create mode 100644 agent/tool-scripts/postprocess/gold/pcp-0/swap.html create mode 100644 agent/tool-scripts/postprocess/samples/pcp-0/archive.0 create mode 100644 agent/tool-scripts/postprocess/samples/pcp-0/archive.index create mode 100644 agent/tool-scripts/postprocess/samples/pcp-0/archive.meta create mode 100644 agent/tool-scripts/postprocess/samples/pcp-0/pcp-stderr.txt create mode 100644 agent/tool-scripts/postprocess/samples/pcp-0/pcp-stdout.txt create mode 100755 agent/tool-scripts/postprocess/samples/pcp-0/pcp.cmd create mode 100644 agent/tool-scripts/postprocess/samples/pcp-0/pmlogger.conf create mode 100644 agent/tool-scripts/postprocess/samples/pcp-0/pmlogger.log diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.avactive.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.avactive.csv new file mode 100644 index 0000000000..1ba11ab8cc --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.avactive.csv @@ -0,0 +1,19 @@ +timestamp_ms,disk.all.avactive +1457460327000,123.667 +1457460330000,27.333 +1457460333000,29.333 +1457460336000,25.667 +1457460339000,28.000 +1457460342000,39.000 +1457460345000,28.000 +1457460348000,44.000 +1457460351000,57.333 +1457460354000,155.667 +1457460357000,32.000 +1457460360000,25.000 +1457460363000,30.333 +1457460366000,0.333 +1457460369000,71.667 +1457460372000,0.667 +1457460375000,45.000 +1457460378000,0.333 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.blkread.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.blkread.csv new file mode 100644 index 0000000000..d780eaaa84 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.blkread.csv @@ -0,0 +1,19 @@ +timestamp_ms,disk.all.blkread +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.blkwrite.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.blkwrite.csv new file mode 100644 index 0000000000..0ba77c6ab2 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.blkwrite.csv @@ -0,0 +1,19 @@ +timestamp_ms,disk.all.blkwrite +1457460327000,1111.000 +1457460330000,19.000 +1457460333000,23.667 +1457460336000,13.667 +1457460339000,18.667 +1457460342000,177.333 +1457460345000,20.000 +1457460348000,137.667 +1457460351000,30.000 +1457460354000,2967.667 +1457460357000,109.333 +1457460360000,14.000 +1457460363000,45.000 +1457460366000,3.000 +1457460369000,106.000 +1457460372000,11.333 +1457460375000,63.667 +1457460378000,0.333 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.read.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.read.csv new file mode 100644 index 0000000000..7d75b8e8c4 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.read.csv @@ -0,0 +1,19 @@ +timestamp_ms,disk.all.read +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.read_bytes.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.read_bytes.csv new file mode 100644 index 0000000000..ade295475a --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.read_bytes.csv @@ -0,0 +1,19 @@ +timestamp_ms,disk.all.read_bytes +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.total.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.total.csv new file mode 100644 index 0000000000..a0bc724571 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.total.csv @@ -0,0 +1,19 @@ +timestamp_ms,disk.all.total +1457460327000,53.000 +1457460330000,1.667 +1457460333000,1.333 +1457460336000,1.000 +1457460339000,1.333 +1457460342000,3.667 +1457460345000,1.333 +1457460348000,4.333 +1457460351000,2.667 +1457460354000,45.000 +1457460357000,5.000 +1457460360000,1.000 +1457460363000,1.333 +1457460366000,0.333 +1457460369000,10.333 +1457460372000,0.333 +1457460375000,3.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.total_bytes.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.total_bytes.csv new file mode 100644 index 0000000000..b9d94fe1c4 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.total_bytes.csv @@ -0,0 +1,19 @@ +timestamp_ms,disk.all.total_bytes +1457460327000,555.667 +1457460330000,9.333 +1457460333000,12.000 +1457460336000,6.667 +1457460339000,9.333 +1457460342000,88.667 +1457460345000,10.000 +1457460348000,68.667 +1457460351000,15.333 +1457460354000,1483.667 +1457460357000,54.667 +1457460360000,7.000 +1457460363000,22.667 +1457460366000,1.333 +1457460369000,53.000 +1457460372000,5.667 +1457460375000,31.667 +1457460378000,0.333 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.write.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.write.csv new file mode 100644 index 0000000000..76db7abae2 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.write.csv @@ -0,0 +1,19 @@ +timestamp_ms,disk.all.write +1457460327000,53.000 +1457460330000,1.667 +1457460333000,1.333 +1457460336000,1.000 +1457460339000,1.333 +1457460342000,3.667 +1457460345000,1.333 +1457460348000,4.333 +1457460351000,2.667 +1457460354000,45.000 +1457460357000,5.000 +1457460360000,1.000 +1457460363000,1.333 +1457460366000,0.333 +1457460369000,10.333 +1457460372000,0.333 +1457460375000,3.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.write_bytes.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.write_bytes.csv new file mode 100644 index 0000000000..5fc1402000 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/disk.all.write_bytes.csv @@ -0,0 +1,19 @@ +timestamp_ms,disk.all.write_bytes +1457460327000,555.667 +1457460330000,9.333 +1457460333000,12.000 +1457460336000,6.667 +1457460339000,9.333 +1457460342000,88.667 +1457460345000,10.000 +1457460348000,68.667 +1457460351000,15.333 +1457460354000,1483.667 +1457460357000,54.667 +1457460360000,7.000 +1457460363000,22.667 +1457460366000,1.333 +1457460369000,53.000 +1457460372000,5.667 +1457460375000,31.667 +1457460378000,0.333 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/event.flags.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/event.flags.csv new file mode 100644 index 0000000000..4ef97189dc --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/event.flags.csv @@ -0,0 +1 @@ +timestamp_ms,event.flags diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/event.missed.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/event.missed.csv new file mode 100644 index 0000000000..b6d5425625 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/event.missed.csv @@ -0,0 +1 @@ +timestamp_ms,event.missed diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/filesys.blocksize.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/filesys.blocksize.csv new file mode 100644 index 0000000000..2d4ebd9dd8 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/filesys.blocksize.csv @@ -0,0 +1 @@ +timestamp_ms,filesys.blocksize["/dev/dm-2"],filesys.blocksize["/dev/sda3"],filesys.blocksize["/dev/dm-3"] diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/filesys.capacity.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/filesys.capacity.csv new file mode 100644 index 0000000000..0e1c7e4621 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/filesys.capacity.csv @@ -0,0 +1,20 @@ +timestamp_ms,filesys.capacity["/dev/dm-2"],filesys.capacity["/dev/sda3"],filesys.capacity["/dev/dm-3"] +1457460324000,51475068.000,487652.000,177465896.000 +1457460327000,51475068.000,487652.000,177465896.000 +1457460330000,51475068.000,487652.000,177465896.000 +1457460333000,51475068.000,487652.000,177465896.000 +1457460336000,51475068.000,487652.000,177465896.000 +1457460339000,51475068.000,487652.000,177465896.000 +1457460342000,51475068.000,487652.000,177465896.000 +1457460345000,51475068.000,487652.000,177465896.000 +1457460348000,51475068.000,487652.000,177465896.000 +1457460351000,51475068.000,487652.000,177465896.000 +1457460354000,51475068.000,487652.000,177465896.000 +1457460357000,51475068.000,487652.000,177465896.000 +1457460360000,51475068.000,487652.000,177465896.000 +1457460363000,51475068.000,487652.000,177465896.000 +1457460366000,51475068.000,487652.000,177465896.000 +1457460369000,51475068.000,487652.000,177465896.000 +1457460372000,51475068.000,487652.000,177465896.000 +1457460375000,51475068.000,487652.000,177465896.000 +1457460378000,51475068.000,487652.000,177465896.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/filesys.mountdir.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/filesys.mountdir.csv new file mode 100644 index 0000000000..10544b961f --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/filesys.mountdir.csv @@ -0,0 +1,20 @@ +timestamp_ms,filesys.mountdir["/dev/dm-2"],filesys.mountdir["/dev/sda3"],filesys.mountdir["/dev/dm-3"] +1457460324000,"/","/boot","/home" +1457460327000,"/","/boot","/home" +1457460330000,"/","/boot","/home" +1457460333000,"/","/boot","/home" +1457460336000,"/","/boot","/home" +1457460339000,"/","/boot","/home" +1457460342000,"/","/boot","/home" +1457460345000,"/","/boot","/home" +1457460348000,"/","/boot","/home" +1457460351000,"/","/boot","/home" +1457460354000,"/","/boot","/home" +1457460357000,"/","/boot","/home" +1457460360000,"/","/boot","/home" +1457460363000,"/","/boot","/home" +1457460366000,"/","/boot","/home" +1457460369000,"/","/boot","/home" +1457460372000,"/","/boot","/home" +1457460375000,"/","/boot","/home" +1457460378000,"/","/boot","/home" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.bogomips.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.bogomips.csv new file mode 100644 index 0000000000..cd99c3e265 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.bogomips.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.cpu.bogomips["cpu0"],hinv.cpu.bogomips["cpu1"],hinv.cpu.bogomips["cpu2"],hinv.cpu.bogomips["cpu3"],hinv.cpu.bogomips["cpu4"],hinv.cpu.bogomips["cpu5"],hinv.cpu.bogomips["cpu6"],hinv.cpu.bogomips["cpu7"] +1457460324000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460327000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460330000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460333000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460336000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460339000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460342000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460345000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460348000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460351000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460354000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460357000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460360000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460363000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460366000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460369000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460372000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460375000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 +1457460378000,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280,5387.280 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.cache.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.cache.csv new file mode 100644 index 0000000000..d7478396c0 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.cache.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.cpu.cache["cpu0"],hinv.cpu.cache["cpu1"],hinv.cpu.cache["cpu2"],hinv.cpu.cache["cpu3"],hinv.cpu.cache["cpu4"],hinv.cpu.cache["cpu5"],hinv.cpu.cache["cpu6"],hinv.cpu.cache["cpu7"] +1457460324000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460327000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460330000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460333000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460336000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460339000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460342000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460345000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460348000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460351000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460354000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460357000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460360000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460363000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460366000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460369000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460372000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460375000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 +1457460378000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000,6144.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.cache_alignment.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.cache_alignment.csv new file mode 100644 index 0000000000..72d7bc2e5b --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.cache_alignment.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.cpu.cache_alignment["cpu0"],hinv.cpu.cache_alignment["cpu1"],hinv.cpu.cache_alignment["cpu2"],hinv.cpu.cache_alignment["cpu3"],hinv.cpu.cache_alignment["cpu4"],hinv.cpu.cache_alignment["cpu5"],hinv.cpu.cache_alignment["cpu6"],hinv.cpu.cache_alignment["cpu7"] +1457460324000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460327000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460330000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460333000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460336000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460339000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460342000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460345000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460348000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460351000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460354000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460357000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460360000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460363000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460366000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460369000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460372000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460375000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 +1457460378000,64.000,64.000,64.000,64.000,64.000,64.000,64.000,64.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.clock.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.clock.csv new file mode 100644 index 0000000000..e4be031226 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.clock.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.cpu.clock["cpu0"],hinv.cpu.clock["cpu1"],hinv.cpu.clock["cpu2"],hinv.cpu.clock["cpu3"],hinv.cpu.clock["cpu4"],hinv.cpu.clock["cpu5"],hinv.cpu.clock["cpu6"],hinv.cpu.clock["cpu7"] +1457460324000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460327000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460330000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460333000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460336000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460339000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460342000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460345000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460348000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460351000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460354000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460357000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460360000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460363000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460366000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460369000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460372000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460375000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 +1457460378000,3502.722,3494.601,3502.828,3217.007,3502.617,3499.980,3499.347,2747.566 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.flags.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.flags.csv new file mode 100644 index 0000000000..ba118f9fb7 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.flags.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.cpu.flags["cpu0"],hinv.cpu.flags["cpu1"],hinv.cpu.flags["cpu2"],hinv.cpu.flags["cpu3"],hinv.cpu.flags["cpu4"],hinv.cpu.flags["cpu5"],hinv.cpu.flags["cpu6"],hinv.cpu.flags["cpu7"] +1457460324000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460327000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460330000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460333000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460336000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460339000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460342000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460345000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460348000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460351000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460354000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460357000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460360000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460363000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460366000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460369000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460372000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460375000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" +1457460378000,"fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt","fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.model.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.model.csv new file mode 100644 index 0000000000..fa853f651f --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.model.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.cpu.model["cpu0"],hinv.cpu.model["cpu1"],hinv.cpu.model["cpu2"],hinv.cpu.model["cpu3"],hinv.cpu.model["cpu4"],hinv.cpu.model["cpu5"],hinv.cpu.model["cpu6"],hinv.cpu.model["cpu7"] +1457460324000,"58","58","58","58","58","58","58","58" +1457460327000,"58","58","58","58","58","58","58","58" +1457460330000,"58","58","58","58","58","58","58","58" +1457460333000,"58","58","58","58","58","58","58","58" +1457460336000,"58","58","58","58","58","58","58","58" +1457460339000,"58","58","58","58","58","58","58","58" +1457460342000,"58","58","58","58","58","58","58","58" +1457460345000,"58","58","58","58","58","58","58","58" +1457460348000,"58","58","58","58","58","58","58","58" +1457460351000,"58","58","58","58","58","58","58","58" +1457460354000,"58","58","58","58","58","58","58","58" +1457460357000,"58","58","58","58","58","58","58","58" +1457460360000,"58","58","58","58","58","58","58","58" +1457460363000,"58","58","58","58","58","58","58","58" +1457460366000,"58","58","58","58","58","58","58","58" +1457460369000,"58","58","58","58","58","58","58","58" +1457460372000,"58","58","58","58","58","58","58","58" +1457460375000,"58","58","58","58","58","58","58","58" +1457460378000,"58","58","58","58","58","58","58","58" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.model_name.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.model_name.csv new file mode 100644 index 0000000000..ccc9d803f8 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.model_name.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.cpu.model_name["cpu0"],hinv.cpu.model_name["cpu1"],hinv.cpu.model_name["cpu2"],hinv.cpu.model_name["cpu3"],hinv.cpu.model_name["cpu4"],hinv.cpu.model_name["cpu5"],hinv.cpu.model_name["cpu6"],hinv.cpu.model_name["cpu7"] +1457460324000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460327000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460330000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460333000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460336000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460339000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460342000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460345000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460348000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460351000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460354000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460357000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460360000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460363000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460366000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460369000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460372000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460375000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" +1457460378000,"Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz","Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.online.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.online.csv new file mode 100644 index 0000000000..f5d2d4aee3 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.online.csv @@ -0,0 +1 @@ +timestamp_ms,hinv.cpu.online["cpu0"],hinv.cpu.online["cpu1"],hinv.cpu.online["cpu2"],hinv.cpu.online["cpu3"],hinv.cpu.online["cpu4"],hinv.cpu.online["cpu5"],hinv.cpu.online["cpu6"],hinv.cpu.online["cpu7"] diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.stepping.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.stepping.csv new file mode 100644 index 0000000000..bb24c87c2e --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.stepping.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.cpu.stepping["cpu0"],hinv.cpu.stepping["cpu1"],hinv.cpu.stepping["cpu2"],hinv.cpu.stepping["cpu3"],hinv.cpu.stepping["cpu4"],hinv.cpu.stepping["cpu5"],hinv.cpu.stepping["cpu6"],hinv.cpu.stepping["cpu7"] +1457460324000,"9","9","9","9","9","9","9","9" +1457460327000,"9","9","9","9","9","9","9","9" +1457460330000,"9","9","9","9","9","9","9","9" +1457460333000,"9","9","9","9","9","9","9","9" +1457460336000,"9","9","9","9","9","9","9","9" +1457460339000,"9","9","9","9","9","9","9","9" +1457460342000,"9","9","9","9","9","9","9","9" +1457460345000,"9","9","9","9","9","9","9","9" +1457460348000,"9","9","9","9","9","9","9","9" +1457460351000,"9","9","9","9","9","9","9","9" +1457460354000,"9","9","9","9","9","9","9","9" +1457460357000,"9","9","9","9","9","9","9","9" +1457460360000,"9","9","9","9","9","9","9","9" +1457460363000,"9","9","9","9","9","9","9","9" +1457460366000,"9","9","9","9","9","9","9","9" +1457460369000,"9","9","9","9","9","9","9","9" +1457460372000,"9","9","9","9","9","9","9","9" +1457460375000,"9","9","9","9","9","9","9","9" +1457460378000,"9","9","9","9","9","9","9","9" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.vendor.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.vendor.csv new file mode 100644 index 0000000000..1ae87b0bdd --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.cpu.vendor.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.cpu.vendor["cpu0"],hinv.cpu.vendor["cpu1"],hinv.cpu.vendor["cpu2"],hinv.cpu.vendor["cpu3"],hinv.cpu.vendor["cpu4"],hinv.cpu.vendor["cpu5"],hinv.cpu.vendor["cpu6"],hinv.cpu.vendor["cpu7"] +1457460324000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460327000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460330000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460333000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460336000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460339000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460342000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460345000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460348000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460351000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460354000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460357000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460360000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460363000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460366000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460369000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460372000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460375000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" +1457460378000,"GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel","GenuineIntel" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.hugepagesize.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.hugepagesize.csv new file mode 100644 index 0000000000..7031def491 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.hugepagesize.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.hugepagesize +1457460324000,2097152.000 +1457460327000,2097152.000 +1457460330000,2097152.000 +1457460333000,2097152.000 +1457460336000,2097152.000 +1457460339000,2097152.000 +1457460342000,2097152.000 +1457460345000,2097152.000 +1457460348000,2097152.000 +1457460351000,2097152.000 +1457460354000,2097152.000 +1457460357000,2097152.000 +1457460360000,2097152.000 +1457460363000,2097152.000 +1457460366000,2097152.000 +1457460369000,2097152.000 +1457460372000,2097152.000 +1457460375000,2097152.000 +1457460378000,2097152.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.machine.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.machine.csv new file mode 100644 index 0000000000..f7ebdd32ca --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.machine.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.machine +1457460324000,"linux" +1457460327000,"linux" +1457460330000,"linux" +1457460333000,"linux" +1457460336000,"linux" +1457460339000,"linux" +1457460342000,"linux" +1457460345000,"linux" +1457460348000,"linux" +1457460351000,"linux" +1457460354000,"linux" +1457460357000,"linux" +1457460360000,"linux" +1457460363000,"linux" +1457460366000,"linux" +1457460369000,"linux" +1457460372000,"linux" +1457460375000,"linux" +1457460378000,"linux" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.cpu_node.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.cpu_node.csv new file mode 100644 index 0000000000..db023d4e2a --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.cpu_node.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.map.cpu_node["cpu0"],hinv.map.cpu_node["cpu1"],hinv.map.cpu_node["cpu2"],hinv.map.cpu_node["cpu3"],hinv.map.cpu_node["cpu4"],hinv.map.cpu_node["cpu5"],hinv.map.cpu_node["cpu6"],hinv.map.cpu_node["cpu7"] +1457460324000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460327000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460330000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460333000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460336000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460339000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460342000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460345000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460348000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460351000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460354000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460357000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460360000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460363000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460366000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460369000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460372000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460375000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460378000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.cpu_num.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.cpu_num.csv new file mode 100644 index 0000000000..6590e89183 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.cpu_num.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.map.cpu_num["cpu0"],hinv.map.cpu_num["cpu1"],hinv.map.cpu_num["cpu2"],hinv.map.cpu_num["cpu3"],hinv.map.cpu_num["cpu4"],hinv.map.cpu_num["cpu5"],hinv.map.cpu_num["cpu6"],hinv.map.cpu_num["cpu7"] +1457460324000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460327000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460330000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460333000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460336000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460339000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460342000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460345000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460348000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460351000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460354000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460357000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460360000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460363000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460366000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460369000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460372000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460375000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 +1457460378000,0.000,1.000,2.000,3.000,4.000,5.000,6.000,7.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.dmname.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.dmname.csv new file mode 100644 index 0000000000..eeba5e3ee1 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.dmname.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.map.dmname["luks-ea06d19b-489f-4236-8918-c95c91e3417c"],hinv.map.dmname["fedora-swap"],hinv.map.dmname["fedora-root"],hinv.map.dmname["fedora-home"] +1457460324000,"dm-0","dm-1","dm-2","dm-3" +1457460327000,"dm-0","dm-1","dm-2","dm-3" +1457460330000,"dm-0","dm-1","dm-2","dm-3" +1457460333000,"dm-0","dm-1","dm-2","dm-3" +1457460336000,"dm-0","dm-1","dm-2","dm-3" +1457460339000,"dm-0","dm-1","dm-2","dm-3" +1457460342000,"dm-0","dm-1","dm-2","dm-3" +1457460345000,"dm-0","dm-1","dm-2","dm-3" +1457460348000,"dm-0","dm-1","dm-2","dm-3" +1457460351000,"dm-0","dm-1","dm-2","dm-3" +1457460354000,"dm-0","dm-1","dm-2","dm-3" +1457460357000,"dm-0","dm-1","dm-2","dm-3" +1457460360000,"dm-0","dm-1","dm-2","dm-3" +1457460363000,"dm-0","dm-1","dm-2","dm-3" +1457460366000,"dm-0","dm-1","dm-2","dm-3" +1457460369000,"dm-0","dm-1","dm-2","dm-3" +1457460372000,"dm-0","dm-1","dm-2","dm-3" +1457460375000,"dm-0","dm-1","dm-2","dm-3" +1457460378000,"dm-0","dm-1","dm-2","dm-3" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.scsi.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.scsi.csv new file mode 100644 index 0000000000..e3c5c4e155 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.map.scsi.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.map.scsi["scsi0:0:0:0 Direct-Access"],hinv.map.scsi["scsi1:0:0:0 CD-ROM"] +1457460324000,"sda","sr0" +1457460327000,"sda","sr0" +1457460330000,"sda","sr0" +1457460333000,"sda","sr0" +1457460336000,"sda","sr0" +1457460339000,"sda","sr0" +1457460342000,"sda","sr0" +1457460345000,"sda","sr0" +1457460348000,"sda","sr0" +1457460351000,"sda","sr0" +1457460354000,"sda","sr0" +1457460357000,"sda","sr0" +1457460360000,"sda","sr0" +1457460363000,"sda","sr0" +1457460366000,"sda","sr0" +1457460369000,"sda","sr0" +1457460372000,"sda","sr0" +1457460375000,"sda","sr0" +1457460378000,"sda","sr0" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.ncpu.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.ncpu.csv new file mode 100644 index 0000000000..f6035852b7 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.ncpu.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.ncpu +1457460324000,8.000 +1457460327000,8.000 +1457460330000,8.000 +1457460333000,8.000 +1457460336000,8.000 +1457460339000,8.000 +1457460342000,8.000 +1457460345000,8.000 +1457460348000,8.000 +1457460351000,8.000 +1457460354000,8.000 +1457460357000,8.000 +1457460360000,8.000 +1457460363000,8.000 +1457460366000,8.000 +1457460369000,8.000 +1457460372000,8.000 +1457460375000,8.000 +1457460378000,8.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.ndisk.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.ndisk.csv new file mode 100644 index 0000000000..efe29913a6 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.ndisk.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.ndisk +1457460324000,1.000 +1457460327000,1.000 +1457460330000,1.000 +1457460333000,1.000 +1457460336000,1.000 +1457460339000,1.000 +1457460342000,1.000 +1457460345000,1.000 +1457460348000,1.000 +1457460351000,1.000 +1457460354000,1.000 +1457460357000,1.000 +1457460360000,1.000 +1457460363000,1.000 +1457460366000,1.000 +1457460369000,1.000 +1457460372000,1.000 +1457460375000,1.000 +1457460378000,1.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.nfilesys.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.nfilesys.csv new file mode 100644 index 0000000000..9a6ab4c8cd --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.nfilesys.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.nfilesys +1457460324000,3.000 +1457460327000,3.000 +1457460330000,3.000 +1457460333000,3.000 +1457460336000,3.000 +1457460339000,3.000 +1457460342000,3.000 +1457460345000,3.000 +1457460348000,3.000 +1457460351000,3.000 +1457460354000,3.000 +1457460357000,3.000 +1457460360000,3.000 +1457460363000,3.000 +1457460366000,3.000 +1457460369000,3.000 +1457460372000,3.000 +1457460375000,3.000 +1457460378000,3.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.ninterface.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.ninterface.csv new file mode 100644 index 0000000000..de2089ce98 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.ninterface.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.ninterface +1457460324000,5.000 +1457460327000,5.000 +1457460330000,5.000 +1457460333000,5.000 +1457460336000,5.000 +1457460339000,5.000 +1457460342000,5.000 +1457460345000,5.000 +1457460348000,5.000 +1457460351000,5.000 +1457460354000,5.000 +1457460357000,5.000 +1457460360000,5.000 +1457460363000,5.000 +1457460366000,5.000 +1457460369000,5.000 +1457460372000,5.000 +1457460375000,5.000 +1457460378000,5.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.nnode.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.nnode.csv new file mode 100644 index 0000000000..a54215d095 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.nnode.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.nnode +1457460324000,1.000 +1457460327000,1.000 +1457460330000,1.000 +1457460333000,1.000 +1457460336000,1.000 +1457460339000,1.000 +1457460342000,1.000 +1457460345000,1.000 +1457460348000,1.000 +1457460351000,1.000 +1457460354000,1.000 +1457460357000,1.000 +1457460360000,1.000 +1457460363000,1.000 +1457460366000,1.000 +1457460369000,1.000 +1457460372000,1.000 +1457460375000,1.000 +1457460378000,1.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.node.online.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.node.online.csv new file mode 100644 index 0000000000..48975907f4 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.node.online.csv @@ -0,0 +1 @@ +timestamp_ms,hinv.node.online["node0"] diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.pagesize.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.pagesize.csv new file mode 100644 index 0000000000..a23ed637f9 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.pagesize.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.pagesize +1457460324000,4096.000 +1457460327000,4096.000 +1457460330000,4096.000 +1457460333000,4096.000 +1457460336000,4096.000 +1457460339000,4096.000 +1457460342000,4096.000 +1457460345000,4096.000 +1457460348000,4096.000 +1457460351000,4096.000 +1457460354000,4096.000 +1457460357000,4096.000 +1457460360000,4096.000 +1457460363000,4096.000 +1457460366000,4096.000 +1457460369000,4096.000 +1457460372000,4096.000 +1457460375000,4096.000 +1457460378000,4096.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.physmem.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.physmem.csv new file mode 100644 index 0000000000..e9296c7a61 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/hinv.physmem.csv @@ -0,0 +1,20 @@ +timestamp_ms,hinv.physmem +1457460324000,7685.000 +1457460327000,7685.000 +1457460330000,7685.000 +1457460333000,7685.000 +1457460336000,7685.000 +1457460339000,7685.000 +1457460342000,7685.000 +1457460345000,7685.000 +1457460348000,7685.000 +1457460351000,7685.000 +1457460354000,7685.000 +1457460357000,7685.000 +1457460360000,7685.000 +1457460363000,7685.000 +1457460366000,7685.000 +1457460369000,7685.000 +1457460372000,7685.000 +1457460375000,7685.000 +1457460378000,7685.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.guest.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.guest.csv new file mode 100644 index 0000000000..0c5fd36d17 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.guest.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.guest +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.guest_nice.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.guest_nice.csv new file mode 100644 index 0000000000..55381624cc --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.guest_nice.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.guest_nice +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.idle.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.idle.csv new file mode 100644 index 0000000000..16b6a10dbd --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.idle.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.idle +1457460327000,7824.333 +1457460330000,7830.000 +1457460333000,7821.000 +1457460336000,7806.000 +1457460339000,7790.667 +1457460342000,7793.333 +1457460345000,7839.000 +1457460348000,7754.000 +1457460351000,7763.667 +1457460354000,7796.000 +1457460357000,7836.333 +1457460360000,7836.667 +1457460363000,7811.000 +1457460366000,7796.667 +1457460369000,7785.667 +1457460372000,7843.333 +1457460375000,7824.333 +1457460378000,7849.333 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.intr.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.intr.csv new file mode 100644 index 0000000000..5a820d2ffc --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.intr.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.intr +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.irq.hard.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.irq.hard.csv new file mode 100644 index 0000000000..9faa506e88 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.irq.hard.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.irq.hard +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.irq.soft.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.irq.soft.csv new file mode 100644 index 0000000000..78b179c9a1 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.irq.soft.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.irq.soft +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.nice.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.nice.csv new file mode 100644 index 0000000000..03a396b85c --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.nice.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.nice +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.steal.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.steal.csv new file mode 100644 index 0000000000..8b157ff172 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.steal.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.steal +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.sys.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.sys.csv new file mode 100644 index 0000000000..49d165c08e --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.sys.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.sys +1457460327000,43.667 +1457460330000,30.000 +1457460333000,30.000 +1457460336000,30.000 +1457460339000,33.333 +1457460342000,36.667 +1457460345000,23.333 +1457460348000,40.000 +1457460351000,33.333 +1457460354000,33.333 +1457460357000,30.000 +1457460360000,33.333 +1457460363000,33.333 +1457460366000,36.667 +1457460369000,33.333 +1457460372000,30.000 +1457460375000,26.667 +1457460378000,30.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.user.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.user.csv new file mode 100644 index 0000000000..74df430cd5 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.user.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.user +1457460327000,100.667 +1457460330000,103.333 +1457460333000,106.667 +1457460336000,123.000 +1457460339000,143.333 +1457460342000,133.333 +1457460345000,97.000 +1457460348000,149.667 +1457460351000,123.333 +1457460354000,150.000 +1457460357000,97.000 +1457460360000,90.000 +1457460363000,113.333 +1457460366000,153.000 +1457460369000,107.000 +1457460372000,110.000 +1457460375000,96.667 +1457460378000,113.333 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.vnice.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.vnice.csv new file mode 100644 index 0000000000..6144196c69 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.vnice.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.vnice +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.vuser.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.vuser.csv new file mode 100644 index 0000000000..dc607dd92a --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.vuser.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.vuser +1457460327000,100.667 +1457460330000,103.333 +1457460333000,106.667 +1457460336000,123.000 +1457460339000,143.333 +1457460342000,133.333 +1457460345000,97.000 +1457460348000,149.667 +1457460351000,123.333 +1457460354000,150.000 +1457460357000,97.000 +1457460360000,90.000 +1457460363000,113.333 +1457460366000,153.000 +1457460369000,107.000 +1457460372000,110.000 +1457460375000,96.667 +1457460378000,113.333 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.wait.total.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.wait.total.csv new file mode 100644 index 0000000000..47496631ba --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.cpu.wait.total.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.cpu.wait.total +1457460327000,17.000 +1457460330000,23.000 +1457460333000,30.000 +1457460336000,30.000 +1457460339000,17.000 +1457460342000,23.000 +1457460345000,26.667 +1457460348000,46.667 +1457460351000,63.333 +1457460354000,3.667 +1457460357000,23.000 +1457460360000,26.667 +1457460363000,33.333 +1457460366000,3.667 +1457460369000,56.333 +1457460372000,3.667 +1457460375000,39.667 +1457460378000,3.667 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.intr.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.intr.csv new file mode 100644 index 0000000000..cde7711853 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.intr.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.intr +1457460327000,460.000 +1457460330000,379.667 +1457460333000,420.000 +1457460336000,422.667 +1457460339000,468.000 +1457460342000,450.333 +1457460345000,390.333 +1457460348000,489.333 +1457460351000,431.000 +1457460354000,495.000 +1457460357000,379.667 +1457460360000,380.333 +1457460363000,402.000 +1457460366000,472.000 +1457460369000,428.667 +1457460372000,382.667 +1457460375000,364.333 +1457460378000,412.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.load.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.load.csv new file mode 100644 index 0000000000..34cbbb1368 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.load.csv @@ -0,0 +1,20 @@ +timestamp_ms,kernel.all.load["1 minute"],kernel.all.load["5 minute"],kernel.all.load["15 minute"] +1457460324000,0.120,0.250,0.260 +1457460327000,0.110,0.240,0.260 +1457460330000,0.180,0.260,0.270 +1457460333000,0.180,0.260,0.270 +1457460336000,0.160,0.250,0.260 +1457460339000,0.160,0.250,0.260 +1457460342000,0.150,0.250,0.260 +1457460345000,0.140,0.240,0.260 +1457460348000,0.140,0.240,0.260 +1457460351000,0.130,0.240,0.260 +1457460354000,0.130,0.240,0.260 +1457460357000,0.120,0.240,0.260 +1457460360000,0.110,0.230,0.260 +1457460363000,0.110,0.230,0.260 +1457460366000,0.100,0.230,0.260 +1457460369000,0.100,0.230,0.260 +1457460372000,0.090,0.220,0.250 +1457460375000,0.080,0.220,0.250 +1457460378000,0.080,0.220,0.250 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.nusers.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.nusers.csv new file mode 100644 index 0000000000..d583fa84eb --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.nusers.csv @@ -0,0 +1,20 @@ +timestamp_ms,kernel.all.nusers +1457460324000,2.000 +1457460327000,2.000 +1457460330000,2.000 +1457460333000,2.000 +1457460336000,2.000 +1457460339000,2.000 +1457460342000,2.000 +1457460345000,2.000 +1457460348000,2.000 +1457460351000,2.000 +1457460354000,2.000 +1457460357000,2.000 +1457460360000,2.000 +1457460363000,2.000 +1457460366000,2.000 +1457460369000,2.000 +1457460372000,2.000 +1457460375000,2.000 +1457460378000,2.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.pswitch.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.pswitch.csv new file mode 100644 index 0000000000..d279d65441 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.pswitch.csv @@ -0,0 +1,19 @@ +timestamp_ms,kernel.all.pswitch +1457460327000,983.000 +1457460330000,786.333 +1457460333000,837.333 +1457460336000,806.333 +1457460339000,869.667 +1457460342000,879.667 +1457460345000,749.667 +1457460348000,961.000 +1457460351000,814.667 +1457460354000,820.333 +1457460357000,795.333 +1457460360000,789.000 +1457460363000,836.667 +1457460366000,845.333 +1457460369000,856.333 +1457460372000,754.333 +1457460375000,664.667 +1457460378000,911.333 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.uptime.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.uptime.csv new file mode 100644 index 0000000000..76916adeb7 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.all.uptime.csv @@ -0,0 +1,20 @@ +timestamp_ms,kernel.all.uptime +1457460324000,319366.000 +1457460327000,319369.000 +1457460330000,319372.000 +1457460333000,319375.000 +1457460336000,319378.000 +1457460339000,319381.000 +1457460342000,319384.000 +1457460345000,319387.000 +1457460348000,319390.000 +1457460351000,319393.000 +1457460354000,319396.000 +1457460357000,319399.000 +1457460360000,319402.000 +1457460363000,319405.000 +1457460366000,319408.000 +1457460369000,319411.000 +1457460372000,319414.000 +1457460375000,319417.000 +1457460378000,319420.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.distro.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.distro.csv new file mode 100644 index 0000000000..3f316d3d59 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.distro.csv @@ -0,0 +1 @@ +timestamp_ms,kernel.uname.distro diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.machine.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.machine.csv new file mode 100644 index 0000000000..3475d7e7c2 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.machine.csv @@ -0,0 +1,20 @@ +timestamp_ms,kernel.uname.machine +1457460324000,"x86_64" +1457460327000,"x86_64" +1457460330000,"x86_64" +1457460333000,"x86_64" +1457460336000,"x86_64" +1457460339000,"x86_64" +1457460342000,"x86_64" +1457460345000,"x86_64" +1457460348000,"x86_64" +1457460351000,"x86_64" +1457460354000,"x86_64" +1457460357000,"x86_64" +1457460360000,"x86_64" +1457460363000,"x86_64" +1457460366000,"x86_64" +1457460369000,"x86_64" +1457460372000,"x86_64" +1457460375000,"x86_64" +1457460378000,"x86_64" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.nodename.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.nodename.csv new file mode 100644 index 0000000000..201d7ffad1 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.nodename.csv @@ -0,0 +1 @@ +timestamp_ms,kernel.uname.nodename diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.release.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.release.csv new file mode 100644 index 0000000000..6f65aff4cd --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.release.csv @@ -0,0 +1 @@ +timestamp_ms,kernel.uname.release diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.sysname.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.sysname.csv new file mode 100644 index 0000000000..9515fa35cc --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.sysname.csv @@ -0,0 +1 @@ +timestamp_ms,kernel.uname.sysname diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.version.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.version.csv new file mode 100644 index 0000000000..d586a5d2b8 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/kernel.uname.version.csv @@ -0,0 +1 @@ +timestamp_ms,kernel.uname.version diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/mem.util.bufmem.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/mem.util.bufmem.csv new file mode 100644 index 0000000000..b74bda4095 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/mem.util.bufmem.csv @@ -0,0 +1,20 @@ +timestamp_ms,mem.util.bufmem +1457460324000,462256.000 +1457460327000,462260.000 +1457460330000,462264.000 +1457460333000,462272.000 +1457460336000,462276.000 +1457460339000,462280.000 +1457460342000,462288.000 +1457460345000,462296.000 +1457460348000,462304.000 +1457460351000,462308.000 +1457460354000,462320.000 +1457460357000,462320.000 +1457460360000,462320.000 +1457460363000,462328.000 +1457460366000,462328.000 +1457460369000,462328.000 +1457460372000,462344.000 +1457460375000,462344.000 +1457460378000,462360.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/mem.util.cached.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/mem.util.cached.csv new file mode 100644 index 0000000000..8375a285f7 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/mem.util.cached.csv @@ -0,0 +1,20 @@ +timestamp_ms,mem.util.cached +1457460324000,3066892.000 +1457460327000,3067672.000 +1457460330000,3067760.000 +1457460333000,3067864.000 +1457460336000,3067956.000 +1457460339000,3068064.000 +1457460342000,3064444.000 +1457460345000,3064540.000 +1457460348000,3064640.000 +1457460351000,3066180.000 +1457460354000,3066268.000 +1457460357000,3066372.000 +1457460360000,3066468.000 +1457460363000,3064620.000 +1457460366000,3066160.000 +1457460369000,3066256.000 +1457460372000,3065400.000 +1457460375000,3065504.000 +1457460378000,3065596.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/mem.util.free.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/mem.util.free.csv new file mode 100644 index 0000000000..332f99c7ca --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/mem.util.free.csv @@ -0,0 +1,20 @@ +timestamp_ms,mem.util.free +1457460324000,1383860.000 +1457460327000,1384372.000 +1457460330000,1383516.000 +1457460333000,1382768.000 +1457460336000,1382140.000 +1457460339000,1381380.000 +1457460342000,1379040.000 +1457460345000,1385300.000 +1457460348000,1384480.000 +1457460351000,1381504.000 +1457460354000,1380868.000 +1457460357000,1378092.000 +1457460360000,1379408.000 +1457460363000,1380384.000 +1457460366000,1379440.000 +1457460369000,1373184.000 +1457460372000,1377992.000 +1457460375000,1376008.000 +1457460378000,1375140.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.collisions.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.collisions.csv new file mode 100644 index 0000000000..a1b3d8bf9f --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.collisions.csv @@ -0,0 +1,19 @@ +timestamp_ms,network.interface.collisions["virbr0-nic"],network.interface.collisions["virbr0"],network.interface.collisions["lo"],network.interface.collisions["wlp3s0"],network.interface.collisions["em1"] +1457460327000,0.000,0.000,0.000,0.000,0.000 +1457460330000,0.000,0.000,0.000,0.000,0.000 +1457460333000,0.000,0.000,0.000,0.000,0.000 +1457460336000,0.000,0.000,0.000,0.000,0.000 +1457460339000,0.000,0.000,0.000,0.000,0.000 +1457460342000,0.000,0.000,0.000,0.000,0.000 +1457460345000,0.000,0.000,0.000,0.000,0.000 +1457460348000,0.000,0.000,0.000,0.000,0.000 +1457460351000,0.000,0.000,0.000,0.000,0.000 +1457460354000,0.000,0.000,0.000,0.000,0.000 +1457460357000,0.000,0.000,0.000,0.000,0.000 +1457460360000,0.000,0.000,0.000,0.000,0.000 +1457460363000,0.000,0.000,0.000,0.000,0.000 +1457460366000,0.000,0.000,0.000,0.000,0.000 +1457460369000,0.000,0.000,0.000,0.000,0.000 +1457460372000,0.000,0.000,0.000,0.000,0.000 +1457460375000,0.000,0.000,0.000,0.000,0.000 +1457460378000,0.000,0.000,0.000,0.000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.in.bytes.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.in.bytes.csv new file mode 100644 index 0000000000..cc14f294d9 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.in.bytes.csv @@ -0,0 +1,19 @@ +timestamp_ms,network.interface.in.bytes["virbr0-nic"],network.interface.in.bytes["virbr0"],network.interface.in.bytes["lo"],network.interface.in.bytes["wlp3s0"],network.interface.in.bytes["em1"] +1457460327000,0.000,0.000,0.000,0.000,105.000 +1457460330000,0.000,0.000,0.000,0.000,209.667 +1457460333000,0.000,0.000,0.000,0.000,184.667 +1457460336000,0.000,0.000,0.000,0.000,396.000 +1457460339000,0.000,0.000,0.000,20.000,3.000 +1457460342000,0.000,0.000,0.000,0.000,222.333 +1457460345000,0.000,0.000,0.000,0.000,1.667 +1457460348000,0.000,0.000,0.000,0.000,112.667 +1457460351000,0.000,0.000,0.000,0.000,114.333 +1457460354000,0.000,0.000,0.000,0.000,110.667 +1457460357000,0.000,0.000,0.000,0.000,146.000 +1457460360000,0.000,0.000,0.000,0.000,263.667 +1457460363000,0.000,0.000,0.000,0.000,90.333 +1457460366000,0.000,0.000,0.000,0.000,301.667 +1457460369000,0.000,0.000,493.000,0.000,1165.000 +1457460372000,0.000,0.000,3.667,0.000,231.000 +1457460375000,0.000,0.000,0.000,0.000,45.000 +1457460378000,0.000,0.000,0.000,0.000,54.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.in.errors.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.in.errors.csv new file mode 100644 index 0000000000..8edee26cd6 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.in.errors.csv @@ -0,0 +1,19 @@ +timestamp_ms,network.interface.in.errors["virbr0-nic"],network.interface.in.errors["virbr0"],network.interface.in.errors["lo"],network.interface.in.errors["wlp3s0"],network.interface.in.errors["em1"] +1457460327000,0.000,0.000,0.000,0.000,0.000 +1457460330000,0.000,0.000,0.000,0.000,0.000 +1457460333000,0.000,0.000,0.000,0.000,0.000 +1457460336000,0.000,0.000,0.000,0.000,0.000 +1457460339000,0.000,0.000,0.000,0.000,0.000 +1457460342000,0.000,0.000,0.000,0.000,0.000 +1457460345000,0.000,0.000,0.000,0.000,0.000 +1457460348000,0.000,0.000,0.000,0.000,0.000 +1457460351000,0.000,0.000,0.000,0.000,0.000 +1457460354000,0.000,0.000,0.000,0.000,0.000 +1457460357000,0.000,0.000,0.000,0.000,0.000 +1457460360000,0.000,0.000,0.000,0.000,0.000 +1457460363000,0.000,0.000,0.000,0.000,0.000 +1457460366000,0.000,0.000,0.000,0.000,0.000 +1457460369000,0.000,0.000,0.000,0.000,0.000 +1457460372000,0.000,0.000,0.000,0.000,0.000 +1457460375000,0.000,0.000,0.000,0.000,0.000 +1457460378000,0.000,0.000,0.000,0.000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.in.packets.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.in.packets.csv new file mode 100644 index 0000000000..60e5cf0b21 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.in.packets.csv @@ -0,0 +1,19 @@ +timestamp_ms,network.interface.in.packets["virbr0-nic"],network.interface.in.packets["virbr0"],network.interface.in.packets["lo"],network.interface.in.packets["wlp3s0"],network.interface.in.packets["em1"] +1457460327000,0.000,0.000,0.000,0.000,0.667 +1457460330000,0.000,0.000,0.000,0.000,1.333 +1457460333000,0.000,0.000,0.000,0.000,1.333 +1457460336000,0.000,0.000,0.000,0.000,1.667 +1457460339000,0.000,0.000,0.000,0.333,0.000 +1457460342000,0.000,0.000,0.000,0.000,1.333 +1457460345000,0.000,0.000,0.000,0.000,0.000 +1457460348000,0.000,0.000,0.000,0.000,0.667 +1457460351000,0.000,0.000,0.000,0.000,1.333 +1457460354000,0.000,0.000,0.000,0.000,0.667 +1457460357000,0.000,0.000,0.000,0.000,1.000 +1457460360000,0.000,0.000,0.000,0.000,1.667 +1457460363000,0.000,0.000,0.000,0.000,0.667 +1457460366000,0.000,0.000,0.000,0.000,2.667 +1457460369000,0.000,0.000,3.000,0.000,3.667 +1457460372000,0.000,0.000,0.000,0.000,1.333 +1457460375000,0.000,0.000,0.000,0.000,0.333 +1457460378000,0.000,0.000,0.000,0.000,0.333 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.out.bytes.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.out.bytes.csv new file mode 100644 index 0000000000..5a45c7839a --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.out.bytes.csv @@ -0,0 +1,19 @@ +timestamp_ms,network.interface.out.bytes["virbr0-nic"],network.interface.out.bytes["virbr0"],network.interface.out.bytes["lo"],network.interface.out.bytes["wlp3s0"],network.interface.out.bytes["em1"] +1457460327000,0.000,0.000,0.000,94.667,86.667 +1457460330000,0.000,0.000,0.000,0.667,0.667 +1457460333000,0.000,0.000,0.000,0.000,52.000 +1457460336000,0.000,0.000,0.000,0.000,104.333 +1457460339000,0.000,0.000,0.000,23.000,0.667 +1457460342000,0.000,0.000,0.000,0.333,0.000 +1457460345000,0.000,0.000,0.000,0.000,0.000 +1457460348000,0.000,0.000,0.000,0.000,46.333 +1457460351000,0.000,0.000,0.000,0.000,69.667 +1457460354000,0.000,0.000,0.000,0.000,47.000 +1457460357000,0.000,0.000,0.000,0.000,23.333 +1457460360000,0.000,0.000,0.000,0.000,38.000 +1457460363000,0.000,0.000,0.000,0.000,75.333 +1457460366000,0.000,0.000,0.000,0.000,184.667 +1457460369000,0.000,0.000,493.000,0.000,455.333 +1457460372000,0.000,0.000,3.667,0.000,3.333 +1457460375000,0.000,0.000,0.000,0.000,23.000 +1457460378000,0.000,0.000,0.000,0.000,38.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.out.errors.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.out.errors.csv new file mode 100644 index 0000000000..05158201ab --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.out.errors.csv @@ -0,0 +1,19 @@ +timestamp_ms,network.interface.out.errors["virbr0-nic"],network.interface.out.errors["virbr0"],network.interface.out.errors["lo"],network.interface.out.errors["wlp3s0"],network.interface.out.errors["em1"] +1457460327000,0.000,0.000,0.000,0.000,0.000 +1457460330000,0.000,0.000,0.000,0.000,0.000 +1457460333000,0.000,0.000,0.000,0.000,0.000 +1457460336000,0.000,0.000,0.000,0.000,0.000 +1457460339000,0.000,0.000,0.000,0.000,0.000 +1457460342000,0.000,0.000,0.000,0.000,0.000 +1457460345000,0.000,0.000,0.000,0.000,0.000 +1457460348000,0.000,0.000,0.000,0.000,0.000 +1457460351000,0.000,0.000,0.000,0.000,0.000 +1457460354000,0.000,0.000,0.000,0.000,0.000 +1457460357000,0.000,0.000,0.000,0.000,0.000 +1457460360000,0.000,0.000,0.000,0.000,0.000 +1457460363000,0.000,0.000,0.000,0.000,0.000 +1457460366000,0.000,0.000,0.000,0.000,0.000 +1457460369000,0.000,0.000,0.000,0.000,0.000 +1457460372000,0.000,0.000,0.000,0.000,0.000 +1457460375000,0.000,0.000,0.000,0.000,0.000 +1457460378000,0.000,0.000,0.000,0.000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.out.packets.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.out.packets.csv new file mode 100644 index 0000000000..fb5c3a3036 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/network.interface.out.packets.csv @@ -0,0 +1,19 @@ +timestamp_ms,network.interface.out.packets["virbr0-nic"],network.interface.out.packets["virbr0"],network.interface.out.packets["lo"],network.interface.out.packets["wlp3s0"],network.interface.out.packets["em1"] +1457460327000,0.000,0.000,0.000,0.333,0.333 +1457460330000,0.000,0.000,0.000,0.000,0.000 +1457460333000,0.000,0.000,0.000,0.000,0.667 +1457460336000,0.000,0.000,0.000,0.000,1.333 +1457460339000,0.000,0.000,0.000,0.333,0.000 +1457460342000,0.000,0.000,0.000,0.000,0.000 +1457460345000,0.000,0.000,0.000,0.000,0.000 +1457460348000,0.000,0.000,0.000,0.000,0.667 +1457460351000,0.000,0.000,0.000,0.000,0.667 +1457460354000,0.000,0.000,0.000,0.000,0.667 +1457460357000,0.000,0.000,0.000,0.000,0.333 +1457460360000,0.000,0.000,0.000,0.000,0.333 +1457460363000,0.000,0.000,0.000,0.000,1.000 +1457460366000,0.000,0.000,0.000,0.000,2.333 +1457460369000,0.000,0.000,3.000,0.000,4.333 +1457460372000,0.000,0.000,0.000,0.000,0.000 +1457460375000,0.000,0.000,0.000,0.000,0.333 +1457460378000,0.000,0.000,0.000,0.000,0.333 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.agent.status.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.agent.status.csv new file mode 100644 index 0000000000..9ef6664528 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.agent.status.csv @@ -0,0 +1,20 @@ +timestamp_ms,pmcd.agent.status["root"],pmcd.agent.status["pmcd"],pmcd.agent.status["proc"],pmcd.agent.status["xfs"],pmcd.agent.status["linux"],pmcd.agent.status["mmv"],pmcd.agent.status["jbd2"] +1457460324000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460327000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460330000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460333000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460336000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460339000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460342000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460345000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460348000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460351000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460354000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460357000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460360000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460363000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460366000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460369000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460372000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460375000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 +1457460378000,0.000,0.000,0.000,0.000,0.000,0.000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.build.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.build.csv new file mode 100644 index 0000000000..8bd59e168c --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.build.csv @@ -0,0 +1,20 @@ +timestamp_ms,pmcd.build +1457460324000,"1" +1457460327000,"1" +1457460330000,"1" +1457460333000,"1" +1457460336000,"1" +1457460339000,"1" +1457460342000,"1" +1457460345000,"1" +1457460348000,"1" +1457460351000,"1" +1457460354000,"1" +1457460357000,"1" +1457460360000,"1" +1457460363000,"1" +1457460366000,"1" +1457460369000,"1" +1457460372000,"1" +1457460375000,"1" +1457460378000,"1" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.numagents.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.numagents.csv new file mode 100644 index 0000000000..a31486258c --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.numagents.csv @@ -0,0 +1 @@ +timestamp_ms,pmcd.numagents diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.numclients.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.numclients.csv new file mode 100644 index 0000000000..31519d01f5 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.numclients.csv @@ -0,0 +1 @@ +timestamp_ms,pmcd.numclients diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.actions.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.actions.csv new file mode 100644 index 0000000000..e69de29bb2 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.configfile.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.configfile.csv new file mode 100644 index 0000000000..e69de29bb2 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.actual.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.actual.csv new file mode 100644 index 0000000000..e69de29bb2 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.expected.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.expected.csv new file mode 100644 index 0000000000..e69de29bb2 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.false.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.false.csv new file mode 100644 index 0000000000..e69de29bb2 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.true.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.true.csv new file mode 100644 index 0000000000..e69de29bb2 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.unknown.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.eval.unknown.csv new file mode 100644 index 0000000000..e69de29bb2 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.logfile.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.logfile.csv new file mode 100644 index 0000000000..e69de29bb2 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.numrules.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.numrules.csv new file mode 100644 index 0000000000..e69de29bb2 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.pmcd_host.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmie.pmcd_host.csv new file mode 100644 index 0000000000..e69de29bb2 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.archive.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.archive.csv new file mode 100644 index 0000000000..b3a6385d6b --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.archive.csv @@ -0,0 +1,21 @@ +timestamp_ms,pmcd.pmlogger.archive["11200"] +1457460321000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460324000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460327000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460330000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460333000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460336000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460339000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460342000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460345000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460348000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460351000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460354000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460357000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460360000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460363000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460366000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460369000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460372000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460375000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" +1457460378000,"/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/archive" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.host.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.host.csv new file mode 100644 index 0000000000..d8efeaec47 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.host.csv @@ -0,0 +1,21 @@ +timestamp_ms,pmcd.pmlogger.host["11200"] +1457460321000,"alphaville" +1457460324000,"alphaville.usersys.redhat.com" +1457460327000,"alphaville.usersys.redhat.com" +1457460330000,"alphaville.usersys.redhat.com" +1457460333000,"alphaville.usersys.redhat.com" +1457460336000,"alphaville.usersys.redhat.com" +1457460339000,"alphaville.usersys.redhat.com" +1457460342000,"alphaville.usersys.redhat.com" +1457460345000,"alphaville.usersys.redhat.com" +1457460348000,"alphaville.usersys.redhat.com" +1457460351000,"alphaville.usersys.redhat.com" +1457460354000,"alphaville.usersys.redhat.com" +1457460357000,"alphaville.usersys.redhat.com" +1457460360000,"alphaville.usersys.redhat.com" +1457460363000,"alphaville.usersys.redhat.com" +1457460366000,"alphaville.usersys.redhat.com" +1457460369000,"alphaville.usersys.redhat.com" +1457460372000,"alphaville.usersys.redhat.com" +1457460375000,"alphaville.usersys.redhat.com" +1457460378000,"alphaville.usersys.redhat.com" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.pmcd_host.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.pmcd_host.csv new file mode 100644 index 0000000000..3fae074066 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.pmcd_host.csv @@ -0,0 +1,20 @@ +timestamp_ms,pmcd.pmlogger.pmcd_host["11200"] +1457460324000,"alphaville.usersys.redhat.com" +1457460327000,"alphaville.usersys.redhat.com" +1457460330000,"alphaville.usersys.redhat.com" +1457460333000,"alphaville.usersys.redhat.com" +1457460336000,"alphaville.usersys.redhat.com" +1457460339000,"alphaville.usersys.redhat.com" +1457460342000,"alphaville.usersys.redhat.com" +1457460345000,"alphaville.usersys.redhat.com" +1457460348000,"alphaville.usersys.redhat.com" +1457460351000,"alphaville.usersys.redhat.com" +1457460354000,"alphaville.usersys.redhat.com" +1457460357000,"alphaville.usersys.redhat.com" +1457460360000,"alphaville.usersys.redhat.com" +1457460363000,"alphaville.usersys.redhat.com" +1457460366000,"alphaville.usersys.redhat.com" +1457460369000,"alphaville.usersys.redhat.com" +1457460372000,"alphaville.usersys.redhat.com" +1457460375000,"alphaville.usersys.redhat.com" +1457460378000,"alphaville.usersys.redhat.com" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.port.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.port.csv new file mode 100644 index 0000000000..ac80e6c70b --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.pmlogger.port.csv @@ -0,0 +1,21 @@ +timestamp_ms,pmcd.pmlogger.port["11200"] +1457460321000,4330.000 +1457460324000,4330.000 +1457460327000,4330.000 +1457460330000,4330.000 +1457460333000,4330.000 +1457460336000,4330.000 +1457460339000,4330.000 +1457460342000,4330.000 +1457460345000,4330.000 +1457460348000,4330.000 +1457460351000,4330.000 +1457460354000,4330.000 +1457460357000,4330.000 +1457460360000,4330.000 +1457460363000,4330.000 +1457460366000,4330.000 +1457460369000,4330.000 +1457460372000,4330.000 +1457460375000,4330.000 +1457460378000,4330.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.services.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.services.csv new file mode 100644 index 0000000000..a0e344f786 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.services.csv @@ -0,0 +1 @@ +timestamp_ms,pmcd.services diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.version.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.version.csv new file mode 100644 index 0000000000..db68a730fc --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmcd.version.csv @@ -0,0 +1,20 @@ +timestamp_ms,pmcd.version +1457460324000,"3.11.0" +1457460327000,"3.11.0" +1457460330000,"3.11.0" +1457460333000,"3.11.0" +1457460336000,"3.11.0" +1457460339000,"3.11.0" +1457460342000,"3.11.0" +1457460345000,"3.11.0" +1457460348000,"3.11.0" +1457460351000,"3.11.0" +1457460354000,"3.11.0" +1457460357000,"3.11.0" +1457460360000,"3.11.0" +1457460363000,"3.11.0" +1457460366000,"3.11.0" +1457460369000,"3.11.0" +1457460372000,"3.11.0" +1457460375000,"3.11.0" +1457460378000,"3.11.0" diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmda.uname.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmda.uname.csv new file mode 100644 index 0000000000..8985169d8a --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/pmda.uname.csv @@ -0,0 +1 @@ +timestamp_ms,pmda.uname diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.in.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.in.csv new file mode 100644 index 0000000000..04030bd68c --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.in.csv @@ -0,0 +1 @@ +timestamp_ms,swap.in diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.out.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.out.csv new file mode 100644 index 0000000000..9997ca15a1 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.out.csv @@ -0,0 +1 @@ +timestamp_ms,swap.out diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.pagesin.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.pagesin.csv new file mode 100644 index 0000000000..243d03157a --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.pagesin.csv @@ -0,0 +1,19 @@ +timestamp_ms,swap.pagesin +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.pagesout.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.pagesout.csv new file mode 100644 index 0000000000..4a35edb0c4 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.pagesout.csv @@ -0,0 +1,19 @@ +timestamp_ms,swap.pagesout +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.used.csv b/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.used.csv new file mode 100644 index 0000000000..0fb016d9d5 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/csv/swap.used.csv @@ -0,0 +1,20 @@ +timestamp_ms,swap.used +1457460324000,0.000 +1457460327000,0.000 +1457460330000,0.000 +1457460333000,0.000 +1457460336000,0.000 +1457460339000,0.000 +1457460342000,0.000 +1457460345000,0.000 +1457460348000,0.000 +1457460351000,0.000 +1457460354000,0.000 +1457460357000,0.000 +1457460360000,0.000 +1457460363000,0.000 +1457460366000,0.000 +1457460369000,0.000 +1457460372000,0.000 +1457460375000,0.000 +1457460378000,0.000 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/disk.html b/agent/tool-scripts/postprocess/gold/pcp-0/disk.html new file mode 100644 index 0000000000..d8ee01833c --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/disk.html @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + +
+

disk.all.read + +
+

+ + + +
+
+

disk.all.write + +
+

+ + + +
+
+

disk.all.blkread + +
+

+ + + +
+
+

disk.all.blkwrite + +
+

+ + + +
+
+

disk.all.total + +
+

+ + + +
+
+

disk.all.read_bytes + +
+

+ + + +
+
+

disk.all.write_bytes + +
+

+ + + +
+
+

disk.all.total_bytes + +
+

+ + + +
+
+

disk.all.avactive + +
+

+ + + +
+ + diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/event.html b/agent/tool-scripts/postprocess/gold/pcp-0/event.html new file mode 100644 index 0000000000..68c930b179 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/event.html @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + +
+

event.flags + +
+

+ + + +
+
+

event.missed + +
+

+ + + +
+ + diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/filesys.html b/agent/tool-scripts/postprocess/gold/pcp-0/filesys.html new file mode 100644 index 0000000000..2669bb944b --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/filesys.html @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + +
+

filesys.capacity + +
+

+ + + +
+
+

filesys.mountdir + +
+

+ + + +
+
+

filesys.blocksize + +
+

+ + + +
+ + diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/hinv.html b/agent/tool-scripts/postprocess/gold/pcp-0/hinv.html new file mode 100644 index 0000000000..3fc77e31aa --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/hinv.html @@ -0,0 +1,281 @@ + + + + + + + + + + + + + + + +
+

hinv.nnode + +
+

+ + + +
+
+

hinv.ncpu + +
+

+ + + +
+
+

hinv.ndisk + +
+

+ + + +
+
+

hinv.physmem + +
+

+ + + +
+
+

hinv.pagesize + +
+

+ + + +
+
+

hinv.hugepagesize + +
+

+ + + +
+
+

hinv.ninterface + +
+

+ + + +
+
+

hinv.nfilesys + +
+

+ + + +
+
+

hinv.machine + +
+

+ + + +
+
+

hinv.map.scsi + +
+

+ + + +
+
+

hinv.map.cpu_num + +
+

+ + + +
+
+

hinv.map.cpu_node + +
+

+ + + +
+
+

hinv.map.dmname + +
+

+ + + +
+
+

hinv.cpu.clock + +
+

+ + + +
+
+

hinv.cpu.vendor + +
+

+ + + +
+
+

hinv.cpu.model + +
+

+ + + +
+
+

hinv.cpu.stepping + +
+

+ + + +
+
+

hinv.cpu.cache + +
+

+ + + +
+
+

hinv.cpu.bogomips + +
+

+ + + +
+
+

hinv.cpu.model_name + +
+

+ + + +
+
+

hinv.cpu.flags + +
+

+ + + +
+
+

hinv.cpu.cache_alignment + +
+

+ + + +
+
+

hinv.cpu.online + +
+

+ + + +
+
+

hinv.node.online + +
+

+ + + +
+ + diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/kernel.html b/agent/tool-scripts/postprocess/gold/pcp-0/kernel.html new file mode 100644 index 0000000000..bd586be8eb --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/kernel.html @@ -0,0 +1,281 @@ + + + + + + + + + + + + + + + +
+

kernel.all.intr + +
+

+ + + +
+
+

kernel.all.pswitch + +
+

+ + + +
+
+

kernel.all.cpu.user + +
+

+ + + +
+
+

kernel.all.cpu.nice + +
+

+ + + +
+
+

kernel.all.cpu.sys + +
+

+ + + +
+
+

kernel.all.cpu.idle + +
+

+ + + +
+
+

kernel.all.cpu.intr + +
+

+ + + +
+
+

kernel.all.cpu.wait.total + +
+

+ + + +
+
+

kernel.all.cpu.irq.soft + +
+

+ + + +
+
+

kernel.all.cpu.irq.hard + +
+

+ + + +
+
+

kernel.all.cpu.steal + +
+

+ + + +
+
+

kernel.all.cpu.guest + +
+

+ + + +
+
+

kernel.all.cpu.vuser + +
+

+ + + +
+
+

kernel.all.cpu.guest_nice + +
+

+ + + +
+
+

kernel.all.cpu.vnice + +
+

+ + + +
+
+

kernel.all.load + +
+

+ + + +
+
+

kernel.all.nusers + +
+

+ + + +
+
+

kernel.all.uptime + +
+

+ + + +
+
+

kernel.uname.release + +
+

+ + + +
+
+

kernel.uname.version + +
+

+ + + +
+
+

kernel.uname.sysname + +
+

+ + + +
+
+

kernel.uname.machine + +
+

+ + + +
+
+

kernel.uname.nodename + +
+

+ + + +
+
+

kernel.uname.distro + +
+

+ + + +
+ + diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/mem.html b/agent/tool-scripts/postprocess/gold/pcp-0/mem.html new file mode 100644 index 0000000000..c52b6761d2 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/mem.html @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + +
+

mem.util.free + +
+

+ + + +
+
+

mem.util.bufmem + +
+

+ + + +
+
+

mem.util.cached + +
+

+ + + +
+ + diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/network.html b/agent/tool-scripts/postprocess/gold/pcp-0/network.html new file mode 100644 index 0000000000..8175e0230d --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/network.html @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + +
+

network.interface.in.bytes + +
+

+ + + +
+
+

network.interface.in.packets + +
+

+ + + +
+
+

network.interface.in.errors + +
+

+ + + +
+
+

network.interface.out.bytes + +
+

+ + + +
+
+

network.interface.out.packets + +
+

+ + + +
+
+

network.interface.out.errors + +
+

+ + + +
+
+

network.interface.collisions + +
+

+ + + +
+ + diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/pmcd.html b/agent/tool-scripts/postprocess/gold/pcp-0/pmcd.html new file mode 100644 index 0000000000..bf467ae70f --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/pmcd.html @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + +
+

pmcd.numagents + +
+

+ + + +
+
+

pmcd.numclients + +
+

+ + + +
+
+

pmcd.version + +
+

+ + + +
+
+

pmcd.services + +
+

+ + + +
+
+

pmcd.build + +
+

+ + + +
+
+

pmcd.agent.status + +
+

+ + + +
+
+

pmcd.pmie.configfile + +
+

+ + + +
+
+

pmcd.pmie.logfile + +
+

+ + + +
+
+

pmcd.pmie.pmcd_host + +
+

+ + + +
+
+

pmcd.pmie.numrules + +
+

+ + + +
+
+

pmcd.pmie.actions + +
+

+ + + +
+
+

pmcd.pmie.eval.true + +
+

+ + + +
+
+

pmcd.pmie.eval.false + +
+

+ + + +
+
+

pmcd.pmie.eval.unknown + +
+

+ + + +
+
+

pmcd.pmie.eval.expected + +
+

+ + + +
+
+

pmcd.pmie.eval.actual + +
+

+ + + +
+
+

pmcd.pmlogger.pmcd_host + +
+

+ + + +
+
+

pmcd.pmlogger.archive + +
+

+ + + +
+
+

pmcd.pmlogger.port + +
+

+ + + +
+
+

pmcd.pmlogger.host + +
+

+ + + +
+ + diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/pmda.html b/agent/tool-scripts/postprocess/gold/pcp-0/pmda.html new file mode 100644 index 0000000000..bce45f72db --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/pmda.html @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + +
+

pmda.uname + +
+

+ + + +
+ + diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/stderr b/agent/tool-scripts/postprocess/gold/pcp-0/stderr new file mode 100644 index 0000000000..dfbff5f212 --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/stderr @@ -0,0 +1,20 @@ +pmdumptext: Error: archive/pmcd.pmie.configfile: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.logfile: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.pmcd_host: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.numrules: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.actions: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.eval.true: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.eval.false: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.eval.unknown: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.eval.expected: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.eval.actual: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/stdout b/agent/tool-scripts/postprocess/gold/pcp-0/stdout new file mode 100644 index 0000000000..e69de29bb2 diff --git a/agent/tool-scripts/postprocess/gold/pcp-0/swap.html b/agent/tool-scripts/postprocess/gold/pcp-0/swap.html new file mode 100644 index 0000000000..e233ff2cad --- /dev/null +++ b/agent/tool-scripts/postprocess/gold/pcp-0/swap.html @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + +
+

swap.pagesin + +
+

+ + + +
+
+

swap.pagesout + +
+

+ + + +
+
+

swap.in + +
+

+ + + +
+
+

swap.out + +
+

+ + + +
+
+

swap.used + +
+

+ + + +
+ + diff --git a/agent/tool-scripts/postprocess/samples/pcp-0/archive.0 b/agent/tool-scripts/postprocess/samples/pcp-0/archive.0 new file mode 100644 index 0000000000000000000000000000000000000000..3f8f67dfd232b3169b354fa95ac746f41457724c GIT binary patch literal 43904 zcmeI53wRsVmB(iiOEM0QgRx5zC1D^B^1$z4OlU$%AOYI+3nZ{x7V5~7{8%JQkrd-R zuuVw9BLrF~0RkTsmOd7?EQ_Hnd}v7nrId!!rBJf1zQXQyNeHEEc$F?J+5Z`7&YbIL zDjQm=eja_6&zYlp&pl^mbbq?{&PbZ3ZC>G-HAd6s?YiLQs(@D3@^2a*fk?bF(9;!( zglpF(!-?d&WNjiG>I|f6gRv+TDDXIQ<*Ion6)2N?c{Ai*(e_wv;K;GC>DlMJU69qV zL6|lOvQ0Pu8{$^VP4a45g&n)rhwZg>J%L1Bq^qqi-WKi-cGd(s!rdurgR-kJ?a@Hu zlGb=I-r88-&|FjBR8!y5+R(C~{-gyBEp-ibiEw*3f%@T^L^!!NlB!F^Vv%G`DBK>P zEmW)vB!Zn?Jz=e{uMctU)inP**}Rs$iS6bJEtAU$TiJ&W8)>DvZ4y=)l2(4!{wT@4 z?#W4{XO{PotkCwBLt16X^sm|1^&ddOm;NLqeCa=`(9RkMUADUz+temWYL_InOOkw& zq;^SCyCkXI#qd=INxrB)iD&2^+?)wH27kLC;cM)vknlD3yO8iz(f|oxCI18oU!D`- z>j>z=m*;M5!EVsyANh(^ zX!R&#+O2bF4Q%kE*w({_HWb@Uu%Ug$b_Z-$JC?t@V54@;XYM?`2R4`#+x-<K|;ILGQZ~I^S)Z8CMC#E^O0KS36F%QGckxgDj_&!gll!o30I* z`$B`vzGnu^ylET97LS1{Iz}YTodZev(l+gXl4dNB=B73_MD*YY+X&G zyy#(`Fpx{lElpc*%EK7wed=)Dd7p!g{O6wYcH!8(k)M_3K`_hZ&Wrc70rQ|s+xxH$ zJx4!)jgN2c_+g*f=XlQM!_GP)6s@Tz{^j%rp*IS>DXZ(Rwa3>QJ<+fc3LEic*hnRV zMl_i);(@Rc4TgG}eP+DXP}gYy>0ik+sQABa})S zfndDLh(>#j_FlM3!Y!VS_-Aycj8xRX#{dH#Xo7)A#OUrd5~vf58 z)<{r}@$N1o9*jiSM%IMZAj)vEdAKzCoG=36q|uuU^n{H- z5B5q!a}Y@<0^K1a66kDiMdn?h020RD49DAycmxR}*HEf6oQN7|x;5Du2*oZndb*=s zMtdaO8&7n_5?!fvD4#NV;s~id*^z7u(7ul1P@!I~$yhw)9&7hlyYFlFeeL$)ZXfRQ z+U2$T+06ZH=6()$KZmoG{fnB6V^r`vSWI!Xl&+wz3}zzS=n_*R=#nXDbJoTHM{-V%USvO{aN{N zw*0(D#$*4MCPM+5%q>kO>Pb#t8V68Wa zrx@q2T4K;5l#wl(+tQEbXov|n_cwvIjT%a3!RAQs0YrgnzEWPZ;1G79nqcd1jp^m$5r_T6e+et4~H9T6eS751{I__Ja9b-GHPz(;=zOEJ&&|2X$!fT-G@e z+f;|vSg1}TB-Nqy6spsLIy5gX>*VI?^+mZlpUc%bBUfh`>d@S{taA>wsh#DJ)XoY> zYKPWgsGSQ?2d^u2zJzV6a}gxfq4gN5(*{X(!l(mPsY5%Q>RbXzb-E#`&KgLnld3S6 zddNoQ%(9n4B37M_8I}n24On*=G7qj_2Ah>nZoNexfDJygezNo6`W3LDUB!lDuAMi; zb~SA04zXPe8?8^7apnA74;!r!NZSptojk;bH6pEfi0u~Ga_eH&x}|;_Y`J63HmoIS zwB|-_WY=Rhc!RLbRcv4C-2vMi#dh5GXJMP3vswEE>rmS9Lu^=w(sJh~xBD&FtaTu( z?!B;09#Z!^u+ciB+y@W9MhlhFHV7NNKcwxuuzhBT?Gf0jhu9v2joxFj?&Gl0`%>C= z!$v2awEYmaafc2)N3WITCSuZ*37pyzQ zy!3B&a+#I?{Enr2w%<6`(*Hd9%9!tJ;kJASBdiZ2X8rXC=mHe;xJ)fQ`Z&D7OBcSo z`+Aa#2Fy;RbkUY+-?z#rxzz6Ax|*;20WMQL^&!?vmOje5jHmC--n@2MM$zY9!{ujg z+Rl3A#K&0IM48f8A7uN32Tx>uiT^g%y?gpuA2Yeh(!I~WXy@WzXIOSk<|5+vWM(b2 z%IIlh3vn^W#*kLFovsbY$42ytA-tr#M_e|#Y&?WhqKMe&`#t*kA#7Za^Vwx1_Q7al zW60{~w34%a#k$f@3$`n49K6FS@7ccNMoXs-@K3KhvN2k)EfMn&Hk#w;h5xb4l#ABp z80pBy=O%JnzH*y~)yLYpStC zknNIDk8#Hg;%b*BwMk`Phj5&t)Sx;Eo%MdfYf3 zk1q9-OTnu-5yITY<$-K9Hg*un>`=wU%!|A$XrDHp3FJxtulJL=5oQtzXu!NMoRhE zh&eKsjV>GYBA-(oe`6jtKIO7eAB}UWf9-5cTKzQoYpc&g|5lJQ z>bUWix`K6`d=AU*IH!7P!FC7#_2DWnR1}edgIURF`KX4W?l7XKI9lAPh?(w z@0M^GX?N5G_hxQ6hwD~OdVzJ7jd!wrP`AsdY_!Ldl8rB%{-0dezrp6J%tgfS$z06W zAnEDmmjxT+7&pFzl=86=*G#x&v}=;>2`F4&mFxDnT^=4B(U z9dy~~va#sdxbJW_UXE*{-StN7gVA;^PP^65VZCvrZ2Z8g>)HOPvhftFUCnoJq->-w zXUbitnq%XnTXzm`+_>9r%UAw0%a2xF_6qBgCz5-8@6X^e((b4W?#4Jts4^E3zbCV1x>a6Je-77{@O7#^VB>W4UppHItbQ7OvX)m@$BlxG#tSABD=wO2%7WLa?#{4( zU%9>ZSUr6e+a*tAJbiz7h|5U3qb}LF)#hR4WSfC18~=s<50-p^b(M`g7ph4%zPQRB zXZknV*BHrMMEsu2hJ@u`PcOY$uyGycR9{6(`Q}t{FPY0mmyN~F#t9X9*m%0jMwg9N zpNIafAZIYAS`6dHPmzsJEav^=D}ROcYQtb%@_06+012BHg00O!o~+|=KD8(#AReIB7RS1GmqQ#^yhJHJC7STYGv2cz0djB zi2I^lHo9yqdN#g%I2*61blEuS+4vjo7nOcma8iuHhOqJ7f_0sI4$H2rH*(*MIaRyA zck&}*#(JX|Hy)oIFM4wKZWJ6h{`d^e(N}KotLiG7&ypuHp1u!n;kwf9sLOHVl`UMi z(l7EAWlHz$<}!oc8LX>pyq@injlURYj}`rw+3TV*7ZJZFb3Ny)r&nMOmD$*jaU*>P zNIo{=`$1ebx@;_VHXb!D4;vS`Y#jA$e3ko7r#@S7MrGs99~G?YcLP*sh3K zW#jaIb1rrGY`mS@@|FJ&>(!MdtV^EAy!t*W<1*6js0;4Rywc`y<&?#?A5o@s-!p6< z^loHbWutvfkHW_G2f4ievR|?;a}n`-GPfRKmC@7Z%X>IBfsOAXrF?9}_hh+jblF(! zY&@R6t8U2m;(U$n?Q`$_AKlmD?6>+n^lw^TU2sNa<83SRmUr?qV!I<7uPWHCh*@Rh zjGqu2`8(qZjvJq`8K|()cOu6ic_MS{JG6((NV}shxHt3aN4Rd~6#H5kWlnYfd0b|2 z&SusXHvaTjwkvGhJ%R21zD2CdTtxhy%-y`^si*($2V&f~1#_xRNGTs1?{(SeexE8n z8x;Ay|I?2?oQ*dvb=f%T$BnOXzv$Fw3(gE-|~9qb}Ka%`sfJa>`d&SJ}9l?Spge zdlXeR+TT4V+4#~_d%nQmXV3l0Ttxhy%zf`$ZRzRN4T6nVVchtCNGTs1@x96JxX~Rq z7CjqJ$iv19T{ez-HXgA0JoIlP95>!Ru3%j!pTn{{vQe<2aLg(j=iELrHa=mG4}Im# z2d#R7!MRJG$h`W+J%`fns4Hx2WB-*?USVBjW038GbM0$)R5sRg8HJ7O9%H+|??cvQ zE+T$U=HX_mjGhjCQ?PLx?%~*tl=86=zaQYT(Pd-Nvk|{3KXgv@Ci=Y&cTRP5&#As) z^?B&uM#{z!j*A@pJGHAhvhjwI#H_M$?zc=f?%DG!$wdXnjX$>8qOkGEIL9D)B6H~< zyMoI|yQ8kKG0k-=r=G#O%Ek`156=56>na=Pvt421i>I^Q-@lr5nTv?ulX=`@mC@5( z7YjCC_ea=>-_dc|=(4fs*%-^i#=BiMj{0%qJ64~EE_;M*ymNBFx=ucaWp`xb&Vuba z&Z*X(G(t9hh1-&Bta``ZSCS_(uYS)It}E@1x+5FEX!{XmO80lNeQ=)5PnC@)aT&?R zz4c#byTAXZtjkKLM^x_DYQSNWN$G-O8sqQDTcZitplJ{_YgX3}XFJe~5 zji35o5lI__IpUUE-i$gA;EDIJu8tee zXS>2iasP*Zz`l-0<|5+vWPY{B@}sAF+XWkM#+>StNFyH`@%!Q~8(lUQJsbP;u<=2c zjia88qTd}c8y~a!%i;C?4*nHB$TE)O#(N94D|oK5@w7^F+&FwTe#mY4#!qCu>I0ia zk|#2k{!)8vDeaEB;NHw@r*T`A(;R-IYX4Wc%wSE3b(M`@X1iqLzc1-!yMG|Vy39qy z@5%fZ|Bkhu-guv2<4%klKaZ61vGH-2jqW`h_-s(*_i)T`*{JDwuWIFZAM5lyga-uO z<2f3>Yh27vDs!r1xnFeZvju0=apN~?3)Xe=IV`&)8}BRFu84UE8y^}O8`Ji+ED9Sx z+Q>0Tp2)oV%cgJ{X?N5e*=Wy~%CTkXCt>5A_I$Yia=r#tleviaJ(=GvvvSeXmk$sd F{~u%VkHY`} literal 0 HcmV?d00001 diff --git a/agent/tool-scripts/postprocess/samples/pcp-0/archive.index b/agent/tool-scripts/postprocess/samples/pcp-0/archive.index new file mode 100644 index 0000000000000000000000000000000000000000..bedbf32c7cc93ccab2454a754d2e83e2a4b164eb GIT binary patch literal 192 zcmZQzU}yuZt>QWcwdFd58ocWa(WQn@^`1%ijeEjt4YOL`ZcX34Wreq-K0$fMT5d=XkH5ovH5%;?hrD4e ztHEbzU8Rv{h1K|ZLu|rJoz~r1w$3ktSv1$EOz?>Cw)!`_fveiXmEGjQcRRBvoqK5( zYA;LUC?!Y6>DaITYdF@IgVo!PeTr99;4f6*;VNv4LXg)B0V1zajORpv*!w);pb&e@ zW;hP-qFhIL4}}MxZ=z7Gk8%&?`zRknWvFl(@wCs=0Z)fKJ>}^cPm~vZWBR|g@O&MO zeTXadc+iH%^u*7-FiHJ{z9I5=6xZ}s%$kmB;>TyWei_%Np>;P`29Jkke;qfY}h(P38jgYwMJ?R}ADmA#*3Vu)DrIa-F#Uwp5*;=J5} z4_n^{elXJ~ejH8HM5hd`&rxU@c{-C0;Nd#pR?AOfe_G;K54b4+phE*P1gS$<@sJHmhJKkkbM);AypHbZTMTmXm(Ku77`>a3wO#U7{j|v@BgD-+Wm!;w_BlF8w&j&Am z_Zxz2)CBI(4I(#H?Vai()v;GIV!bdbt0FVlKCbAH&Y}vss=EVc=N#$gaQue9f*L***zK57HUR>Mm9M+pPiS9X6|Ku z&Kw574|ufoAQ9`V{i+-L}-Yg5@ua4XaW7zwlZu(sKOHPNXq zB!g|J#SqyYSfo8Y_hZiws@jhY_)E&Di$0gUo`HMYJ3~B5kM5f7n}zkO9LY?F_?hT0 zq}qjqBlnFxd0uFLu!7g=X_}pJPLh;432|8hJLvujJ@MmqPD+q~<&^4D-dka-qGp^C zlQ;v~7<<|1-31C?A%)l#)a;V`%vV;Ejqu>`+nqR^mDWj7BPrl5DQm4{J=0T{bgZTL ziP^-v)>44me_}4`Sc@+JPDE5-7p-@3+X*_}4KmDN%eEO$U6=%M(e8EG77b}cF$>em zD=WXMt&8UPvCVj}maby1BE-(~nbVXaze4#Ig$IYxZkieT_fQ_n#*+R}d65O`)udGT z2&iAFB$=zfj6+7hqN0i7P3t3GT_4#fHlIkYi;2pdgR#tVb}@8uET8zo8rM-An%a_a zKrqrR;jUs^Lg3?Y9%0o-r8eULau;}4W>cWWvc-%esT7QaoXH=q(6%s$wjho$7?f)F zL%`^An?+pgmc?WUNpU}967USS3u;5P$za#4>wb(~NM1#<)hA@Ya0%oC4ha_rOy!#y zKM;D(3fpRv-#A>Bq?=Ce`Y6@aSyr5S?OK6v>^P3Nu+wVtR5c;@w{z15!->$Z_5-%4j6bT=|SuOtkK+a_c>cKE!bi6~ukg}8MG z-P>C6=3zqf+1~@ruYd zC~mx1j0ocfE|G)dbbItDLB^@HdTMV*?Hzt+TV{#xaav!qQ`G6m4Sp;0KSeZvm5tp! ziY)-j8@sXL@aigxJ^2u`c3Z4>B{r@n&7Osbq^fPzlWw-=E!4JJwMn710c7ofBVIaM z8yo5o9>ukGx6DkyPt7?d5Lt3xunySY<7&I-viF=}Av>*gS)G^$2wU;ru4&+sI5Udj zEX!+`_$n*nD=fYCHY`4PWgkT?S%J`LrqM3;?n0t(I6~H4k8y9;i4Etopx=U3R{8OXoqpsj`^lB;SrJuwiIx2j z-1Xx%>|U!|Xg_RGVm7=!#(kHoR>SMek19{BH?YQA(QEv6x zPQJljlUiJRWv^lqsr#Mf+MAbWQ5A3_#a^1sEo)sX>Uh>&s7$mG8KN-S+|OE9@O@cW zutzX;pP2gGq_mUSk$F$*NBsI?RXg792e8}xmQ CL}Nz) literal 0 HcmV?d00001 diff --git a/agent/tool-scripts/postprocess/samples/pcp-0/pcp-stderr.txt b/agent/tool-scripts/postprocess/samples/pcp-0/pcp-stderr.txt new file mode 100644 index 0000000000..8c8afd2f37 --- /dev/null +++ b/agent/tool-scripts/postprocess/samples/pcp-0/pcp-stderr.txt @@ -0,0 +1,21 @@ +/opt/pbench-agent/tool-scripts/postprocess/pcp-postprocess: line 5: [: missing `]' +pmdumptext: Error: archive/pmcd.pmie.configfile: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.logfile: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.pmcd_host: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.numrules: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.actions: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.eval.true: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.eval.false: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.eval.unknown: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.eval.expected: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. +pmdumptext: Error: archive/pmcd.pmie.eval.actual: Instance domain identifier not defined in the PCP archive log +pmdumptext: no valid metrics, exiting. diff --git a/agent/tool-scripts/postprocess/samples/pcp-0/pcp-stdout.txt b/agent/tool-scripts/postprocess/samples/pcp-0/pcp-stdout.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/agent/tool-scripts/postprocess/samples/pcp-0/pcp.cmd b/agent/tool-scripts/postprocess/samples/pcp-0/pcp.cmd new file mode 100755 index 0000000000..1dc393d65f --- /dev/null +++ b/agent/tool-scripts/postprocess/samples/pcp-0/pcp.cmd @@ -0,0 +1 @@ +/usr/bin/pmlogger -c pmlogger.conf -t 3 archive >/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/pcp-stdout.txt 2>/var/lib/pbench-agent/pbench-user-benchmark_pcp_2016-03-08_18:05:18/1/reference-result/tools-default/pcp/pcp-stderr.txt & echo $! >/var/lib/pbench-agent/tmp/default.1.pcp.pid diff --git a/agent/tool-scripts/postprocess/samples/pcp-0/pmlogger.conf b/agent/tool-scripts/postprocess/samples/pcp-0/pmlogger.conf new file mode 100644 index 0000000000..b56eb377a1 --- /dev/null +++ b/agent/tool-scripts/postprocess/samples/pcp-0/pmlogger.conf @@ -0,0 +1,332 @@ +#pmlogconf 2.0 +# +# pmlogger(1) config file created and updated by pmlogconf +# Auto-generated by pmlogconf on: Tue Mar 8 13:00:38 EST 2016 +# +# DO NOT UPDATE THE INITIAL SECTION OF THIS FILE. +# Any changes may be lost the next time pmlogconf is used +# on this file. +# +#+ groupdir /var/lib/pcp/config/pmlogconf +# +#+ apache/processes:x:: +#---- +#+ apache/summary:x:: +#---- +#+ apache/uptime:x:: +#---- +#+ cpu/percpu:n:default: +## utilization per CPU +#---- +#+ cpu/summary:y:default: +## utilization (usr, sys, idle, ...) over all CPUs +log advisory on default { + kernel.all.cpu +} +#---- +#+ disk/percontroller:x:: +#---- +#+ disk/perdisk:n:default: +## per spindle disk activity +#---- +#+ disk/perpartition:n:default: +## per logical block device activity +#---- +#+ disk/summary:y:default: +## summary disk activity (IOPs and bytes for both reads and writes over +## all disks). +log advisory on default { + disk.all.read + disk.all.write + disk.all.total + disk.all.read_bytes + disk.all.write_bytes + disk.all.total_bytes + disk.all.avactive +} +#---- +#+ elasticsearch/summary:x:: +#---- +#+ filesystem/all:n:default: +## generic filesystem size, fullness and mount information +#---- +#+ filesystem/summary:n:default: +## filesystem size and fullness +#---- +#+ filesystem/xfs-all:x:: +#---- +#+ filesystem/xfs-io-irix:x:: +#---- +#+ filesystem/xfs-io-linux:x:: +#---- +#+ kernel/bufcache-activity:x:: +#---- +#+ kernel/bufcache-all:x:: +#---- +#+ kernel/inode-cache:x:: +#---- +#+ kernel/interrupts-irix:x:: +#---- +#+ kernel/load:x:: +#---- +#+ kernel/memory-irix:x:: +#---- +#+ kernel/memory-linux:x:: +#---- +#+ kernel/queues-irix:x:: +#---- +#+ kernel/read-write-data:x:: +#---- +#+ kernel/summary-linux:x:: +#---- +#+ kernel/summary-windows:x:: +#---- +#+ kernel/syscalls-irix:x:: +#---- +#+ kernel/syscalls-linux:x:: +#---- +#+ kernel/syscalls-percpu-irix:x:: +#---- +#+ kernel/vnodes:x:: +#---- +#+ mailq/summary:x:: +#---- +#+ memcache/summary:x:: +#---- +#+ memory/proc-linux:n:5 minutes: +## System process memory-usage information +#---- +#+ memory/swap-activity:n:default: +## pages in and out (severe VM demand) +#---- +#+ memory/swap-all:n:default: +## current swap allocation and all swap activity +#---- +#+ memory/swap-config:n:default: +## swap configuration +#---- +#+ memory/tlb-irix:x:: +#---- +#+ mysql/summary:x:: +#---- +#+ netfilter/config:x:: +#---- +#+ netfilter/summary:x:: +#---- +#+ networking/interface-all:n:default: +## all available data per network interface +#---- +#+ networking/interface-summary:y:default: +## bytes, packets and errors (in and out) per network interface +log advisory on default { + network.interface.in.bytes + network.interface.in.packets + network.interface.in.errors + network.interface.out.bytes + network.interface.out.packets + network.interface.out.errors + network.interface.collisions +} +#---- +#+ networking/mbufs:x:: +#---- +#+ networking/multicast:x:: +#---- +#+ networking/nfs2-client:n:default: +## NFS v2 client stats +#---- +#+ networking/nfs2-server:n:default: +## NFS v2 server stats +#---- +#+ networking/nfs3-client:n:default: +## NFS v3 client stats +#---- +#+ networking/nfs3-server:n:default: +## NFS v3 server stats +#---- +#+ networking/nfs4-client:n:default: +## NFS v4 client stats +#---- +#+ networking/nfs4-server:n:default: +## NFS v4 server stats +#---- +#+ networking/other-protocols:n:default: +## all available data for other protocols (ip, icmp, igmp, udplite) +#---- +#+ networking/rpc:n:default: +## RPC stats +#---- +#+ networking/socket-irix:x:: +#---- +#+ networking/socket-linux:x:: +#---- +#+ networking/streams:x:: +#---- +#+ networking/tcp-activity-irix:x:: +#---- +#+ networking/tcp-activity-linux:x:: +#---- +#+ networking/tcp-all:n:default: +## all available TCP data +#---- +#+ networking/udp-all:n:default: +## all available UDP data +#---- +#+ networking/udp-packets-irix:x:: +#---- +#+ networking/udp-packets-linux:x:: +#---- +#+ nginx/summary:x:: +#---- +#+ platform/hinv:y:once: +## platform, filesystem and hardware configuration +log advisory on once { + hinv + kernel.uname + filesys.mountdir + filesys.blocksize + filesys.capacity +} +#---- +#+ platform/linux:x:: +#---- +#+ postgresql/summary:x:: +#---- +#+ sgi/cpu-evctr:x:: +#---- +#+ sgi/craylink:x:: +#---- +#+ sgi/efs:x:: +#---- +#+ sgi/hub:x:: +#---- +#+ sgi/kaio:x:: +#---- +#+ sgi/node-memory:x:: +#---- +#+ sgi/numa:x:: +#---- +#+ sgi/numa-summary:x:: +#---- +#+ sgi/xbow:x:: +#---- +#+ sgi/xlv-activity:x:: +#---- +#+ sgi/xlv-stripe-io:x:: +#---- +#+ sgi/xvm-all:x:: +#---- +#+ sgi/xvm-ops:x:: +#---- +#+ sgi/xvm-stats:x:: +#---- +#+ shping/summary:x:: +#---- +#+ sqlserver/summary:x:: +#---- +#+ tools/atop:x:: +#---- +#+ tools/atop-httpstats:x:: +#---- +#+ tools/atop-proc:n:default: +## per-process metrics used by the atop command +#---- +#+ tools/atop-summary:x:: +#---- +#+ tools/collectl:x:: +#---- +#+ tools/collectl-interrupts:x:: +#---- +#+ tools/collectl-summary:x:: +#---- +#+ tools/dmcache:x:: +#---- +#+ tools/free:x:: +#---- +#+ tools/free-summary:x:: +#---- +#+ tools/iostat:x:: +#---- +#+ tools/ip:x:: +#---- +#+ tools/mpstat:x:: +#---- +#+ tools/mpstat-interrupts:x:: +#---- +#+ tools/numastat:x:: +#---- +#+ tools/pcp-summary:y:once: +## metrics used by the pcp(1) command +log advisory on once { + hinv.ncpu + hinv.ndisk + hinv.nnode + hinv.physmem + pmda.uname + pmcd.numagents + pmcd.numclients + pmcd.services + pmcd.version + pmcd.build + pmcd.agent.status + pmcd.pmlogger + pmcd.pmie +} +#---- +#+ tools/pmclient:n:default: +## metrics sampled frequently by the pmclient(1) command +#---- +#+ tools/pmclient-summary:n:once: +## metrics sampled once by the pmclient(1) command +#---- +#+ tools/pmieconf:n:default: +## metrics used by pmie(1) rules from the pmieconf(1) command +#---- +#+ tools/pmstat:y:default: +## metrics used by the pmstat(1) command +log advisory on default { + kernel.all.load + swap.used + mem.util.free + mem.util.bufmem + mem.util.cached + swap.in + swap.pagesin + swap.out + swap.pagesout + disk.all.blkread + disk.all.blkwrite + kernel.all.intr + kernel.all.pswitch + kernel.all.cpu +} +#---- +#+ tools/sar:x:: +#---- +#+ tools/sar-summary:x:: +#---- +#+ tools/uptime:y:default: +## metrics used by the pcp-uptime(1) command +log advisory on default { + kernel.all.load + kernel.all.nusers + kernel.all.uptime +} +#---- +#+ tools/vmstat:x:: +#---- +#+ tools/vmstat-summary:x:: +#---- +#+ zimbra/all:x:: +#---- +# DO NOT UPDATE THE FILE ABOVE THIS LINE +# Otherwise any changes may be lost the next time pmlogconf is +# used on this file. +# +# It is safe to make additions from here on ... +# + +[access] +disallow .* : all; +disallow :* : all; +allow local:* : enquire; diff --git a/agent/tool-scripts/postprocess/samples/pcp-0/pmlogger.log b/agent/tool-scripts/postprocess/samples/pcp-0/pmlogger.log new file mode 100644 index 0000000000..554837dda0 --- /dev/null +++ b/agent/tool-scripts/postprocess/samples/pcp-0/pmlogger.log @@ -0,0 +1,14 @@ +Log for pmlogger on alphaville.usersys.redhat.com started Tue Mar 8 13:05:21 2016 + +preprocessor cmd: /usr/libexec/pcp/bin/pmcpp -rs pmlogger.conf -I /var/lib/pcp/config/pmlogger +Warning [pmlogger.conf, line 185] +Description unavailable for metric "hinv.nlv" ... not logged +Reason: Unknown or illegal metric identifier +Warning [pmlogger.conf, line 185] +Description unavailable for metric "hinv.map.lvname" ... not logged +Reason: Unknown or illegal metric identifier +Config parsed +Starting logger for host "alphaville.usersys.redhat.com" via "local:" +Archive basename: archive + +Log finished Tue Mar 8 13:06:20 2016 diff --git a/agent/tool-scripts/postprocess/unittests b/agent/tool-scripts/postprocess/unittests index 136a7892e8..7dfeb31b38 100755 --- a/agent/tool-scripts/postprocess/unittests +++ b/agent/tool-scripts/postprocess/unittests @@ -77,6 +77,21 @@ function testuperf { return $? } +function testpcp { + echo "Testing pcp-postprocess under sample $1 ..." + + mkdir /tmp/GenData/$1 + cp -r samples/$1/* /tmp/GenData/$1 + + _TEST_ALTERNATE_TOOLS_LIBRARY=$(pwd) _TEST_ALTERNATE_BENCH_LIBRARY=$(pwd)/../../bench-scripts/postprocess \ + ./pcp-postprocess /tmp/GenData/$1 > /tmp/GenData/$1/stdout 2> /tmp/GenData/$1/stderr + + remove_sample_data $1 + + diff -cr gold/$1/ /tmp/GenData/$1 + return $? +} + # Test fio benchmark post-processing function testfio { echo "Testing bench-scripts/postprocess/fio-postprocess under sample $1 ..." @@ -117,23 +132,27 @@ for i in $(ls -1 samples/) ; do continue fi fi - if [[ $i == uperf-? ]]; then - testuperf $i - sts=$? - else - if [[ $i == fio-? ]]; then + case $i in + uperf-*) + testuperf $i + sts=$? + ;; + fio-*) testfio $i sts=$? - else - if [[ $i == compare-bench-results-* ]]; then - testcmpr $i - sts=$? - else - testit $i ${i%-[0-9]} - sts=$? - fi - fi - fi + ;; + pcp-*) + testpcp $i + sts=$? + ;; + compare-bench-results-*) + testcmpr $i + sts=$? + ;; + *) + testit $i ${i%-[0-9]} + sts=$? + esac if [[ $sts -eq 0 ]]; then echo "PASS - $i" else