public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Marcelo Tosatti <mtosatti@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: kvm@vger.kernel.org
Subject: Re: [PATCH] kvm_stat: always display non tracepoint based stats
Date: Wed, 21 May 2014 09:27:44 -0300	[thread overview]
Message-ID: <20140521122744.GB31090@amt.cnet> (raw)
In-Reply-To: <1400669091-28394-1-git-send-email-pbonzini@redhat.com>

On Wed, May 21, 2014 at 12:44:51PM +0200, Paolo Bonzini wrote:
> The old stats contain information not available in the tracepoints.
> 
> Inspired by a patch from Marcelo Tosatti.

I avoided that because there is overlapping information.

Now you report kvm_exit count twice, for example.

> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  scripts/kvm/kvm_stat | 37 ++++++++++++++++++++-----------------
>  1 file changed, 20 insertions(+), 17 deletions(-)
> 
> diff --git a/scripts/kvm/kvm_stat b/scripts/kvm/kvm_stat
> index 762544b..b97542f 100755
> --- a/scripts/kvm/kvm_stat
> +++ b/scripts/kvm/kvm_stat
> @@ -352,8 +352,8 @@ class TracepointProvider(object):
>          return ret
>  
>  class Stats:
> -    def __init__(self, provider, fields = None):
> -        self.provider = provider
> +    def __init__(self, providers, fields = None):
> +        self.providers = providers
>          self.fields_filter = fields
>          self._update()
>      def _update(self):
> @@ -362,22 +362,25 @@ class Stats:
>              if not self.fields_filter:
>                  return True
>              return re.match(self.fields_filter, key) is not None
> -        self.values = dict([(key, None)
> -                            for key in provider.fields()
> -                            if wanted(key)])
> -        self.provider.select(self.values.keys())
> +        self.values = dict()
> +        for d in providers:
> +            provider_fields = [key for key in d.fields() if wanted(key)]
> +            for key in provider_fields:
> +                self.values[key] = None
> +            d.select(provider_fields)
>      def set_fields_filter(self, fields_filter):
>          self.fields_filter = fields_filter
>          self._update()
>      def get(self):
> -        new = self.provider.read()
> -        for key in self.provider.fields():
> -            oldval = self.values.get(key, (0, 0))
> -            newval = new[key]
> -            newdelta = None
> -            if oldval is not None:
> -                newdelta = newval - oldval[0]
> -            self.values[key] = (newval, newdelta)
> +        for d in providers:
> +            new = d.read()
> +            for key in d.fields():
> +                oldval = self.values.get(key, (0, 0))
> +                newval = new[key]
> +                newdelta = None
> +                if oldval is not None:
> +                    newdelta = newval - oldval[0]
> +                self.values[key] = (newval, newdelta)
>          return self.values
>  
>  if not os.access('/sys/kernel/debug', os.F_OK):
> @@ -496,11 +499,11 @@ options.add_option('-f', '--fields',
>  (options, args) = options.parse_args(sys.argv)
>  
>  try:
> -    provider = TracepointProvider()
> +    providers = [TracepointProvider(), DebugfsProvider()]
>  except:
> -    provider = DebugfsProvider()
> +    providers = [DebugfsProvider()]
>  
> -stats = Stats(provider, fields = options.fields)
> +stats = Stats(providers, fields = options.fields)
>  
>  if options.log:
>      log(stats)
> -- 
> 1.8.3.1

  reply	other threads:[~2014-05-21 12:28 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-21 10:44 [PATCH] kvm_stat: always display non tracepoint based stats Paolo Bonzini
2014-05-21 12:27 ` Marcelo Tosatti [this message]
2014-05-21 12:42   ` Paolo Bonzini
2014-05-21 14:39     ` Marcelo Tosatti

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140521122744.GB31090@amt.cnet \
    --to=mtosatti@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox