Re: [perfmon2] [PATCH 4/5] perf_events: add cgroup support (v6)

2010-12-01 Thread Peter Zijlstra
On Tue, 2010-11-30 at 19:20 +0200, Stephane Eranian wrote: > diff --git a/init/Kconfig b/init/Kconfig > index b28dd23..10d408e 100644 > --- a/init/Kconfig > +++ b/init/Kconfig > @@ -1066,6 +1066,17 @@ config PERF_COUNTERS > > Say N if unsure. > > +config PERF_CGROUPS > + bool "Enab

[perfmon2] [PATCH] perf: add csv-style output to perf stat

2010-12-01 Thread Stephane Eranian
This patch adds an option (-x) to print counts using a CSV-style output. This makes it very easy to import counts directly into your favorite spreadsheet without having to write scripts. Example: $ perf stat -x -a -- sleep 1 4009.795961,task-clock-msecs 20,context-switches 2,CPU-migrations 190,pa

Re: [perfmon2] [PATCH] perf: add csv-style output to perf stat

2010-12-01 Thread stephane eranian
On Wed, Dec 1, 2010 at 6:06 PM, Arnaldo Carvalho de Melo wrote: > Em Wed, Dec 01, 2010 at 05:00:05PM +0200, Stephane Eranian escreveu: >> This patch adds an option (-x) to print counts using a CSV-style output. >> This makes it very easy to import counts directly into your favorite >> spreadsheet

[perfmon2] [PATCH] perf: add csv-style output to perf stat (v2)

2010-12-01 Thread Stephane Eranian
This patch adds an option (-x/--field-separator) to print counts using a CSV-style output. The user can pass a custom separator. This makes it very easy to import counts directly into your favorite spreadsheet without having to write scripts. Example: $ perf stat --field-separator=, -a -- sleep 1

Re: [perfmon2] [PATCH] perf: add csv-style output to perf stat (v2)

2010-12-01 Thread Arnaldo Carvalho de Melo
Em Wed, Dec 01, 2010 at 04:10:01PM -0200, Arnaldo Carvalho de Melo escreveu: > Em Wed, Dec 01, 2010 at 06:49:05PM +0200, Stephane Eranian escreveu: > > This patch adds an option (-x/--field-separator) to print counts using > > a CSV-style output. The user can pass a custom separator. This makes it

Re: [perfmon2] [PATCH] perf: add csv-style output to perf stat (v2)

2010-12-01 Thread Arnaldo Carvalho de Melo
Em Wed, Dec 01, 2010 at 06:49:05PM +0200, Stephane Eranian escreveu: > This patch adds an option (-x/--field-separator) to print counts using > a CSV-style output. The user can pass a custom separator. This makes it > very easy to import counts directly into your favorite spreadsheet without > havi