From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>
Cc: virtio-fs@redhat.com, Gang Deng <gavin.dg@linux.alibaba.com>
Subject: Re: [Virtio-fs] [RFC PATCH 0/2] add stat tools for virtiofsd
Date: Fri, 23 Aug 2019 10:57:43 +0100 [thread overview]
Message-ID: <20190823095743.GD2784@work-vm> (raw)
In-Reply-To: <20190822134018.GJ20491@stefanha-x1.localdomain>
* Stefan Hajnoczi (stefanha@redhat.com) wrote:
> On Mon, Aug 19, 2019 at 11:41:12AM +0800, Gang Deng wrote:
> > There exist two components: vtrace && vstat. vtrace is embeded in virtiofsd,
> > it will put raw statistics data into share memory. Then the vstat tool could
> > parse it and do some post processing works. The performance overhead of
> > vtrace is very small because it does very simple things.
>
> The QEMU source tree already contains support for DTrace/SystemTap,
> LTTng Userspace Tracer, ftrace, and other tracers via tracetool. See
> docs/devel/tracing.txt and scripts/tracetool.py.
>
> It would be good to use that tracing infrastructure instead of writing
> tracing code from scratch. Soon someone will want to record FUSE
> request arguments and other information and then the trace file format
> and code will become complex and duplicate what tracetool already does.
>
> With tracetool all trace events are defined in a trace-events file
> (contrib/virtiofsd/trace-events):
>
> virtiofs_op_begin(int opcode) "opcode 0x%x"
> virtiofs_op_end(int opcode, int64_t ns) "opcode 0x%x ns %" PRId64
>
> It would be nice to capture more information: fuse_in_header->unique (to
> identify the request) and fuse_in_header->nodeid (the inode).
>
> The lowest overhead tracer that tracetool supports is LTTng UST (it uses
> shared memory) and would be suitable for vstat.
>
> Adding tracetool to virtiofsd will require a little work to verify it
> works with your tracer of choice (e.g. LTTng UST) despite the process
> sandboxing, but in the long term I don't think writing tracing code from
> scratch again makes sense.
I'm used to using tracing as event logging; but how do they work for the
type of measurement that Gang Deng is doing, where it's not really about
logging each event; just being a place to hold some stats?
Dave
> > For example, if we call open(2)/close(2) frequently in guest, and
> > randwite a file whose length is greater than the size of dax window.
> > We'll get the output as below:
> >
> > op inflt op/s svctm/us %util
> > FUSE_OPEN(14) 0 8379.87 3.24 2.71%
> > FUSE_RELEASE(18) 0 8379.87 1.77 1.48%
> > FUSE_FLUSH(25) 0 8379.87 2.04 1.71%
> > FUSE_SETUPMAPPING(48) 1 6393.90 34.72 22.20%
> > FUSE_REMOVEMAPPING(49) 0 6404.90 37.61 24.09%
> > TOTAL 1 37938.39 13.76 52.20%
> >
> > The meaning of fields:
> >
> > - op
> > The type of fuse requests, 'TOTAL' is sum of all.
> >
> > - inflt
> > The number of the inflight requests, it must be ethier 0 or 1 because
> > virtiofsd can only process fuse requests serially.
> >
> > - op/s
> > The number of fuse requests completed per second.
> >
> > - svctm/us
> > The average service time (in microseconds) for fuse requests.
> >
> > - %util
> > Percentage of elapsed time during which virtiofsd was processing the fuse
> > requests.
> >
> > when virtiofsd is hang, e.g. we support flock in host (just for example,
> > this has been fxied), we'll get this:
> >
> > op inflt op/s svctm/us %util
> > FUSE_SETLKW(33) 1 0.00 0.00 100.00%
> > TOTAL 1 0.00 0.00 100.00%
> >
> > the utilization is 100% and op/s equals zero, it indicates hang.
> >
> > If virtiofsd is idle, then the output looks like this:
> >
> > op inflt op/s svctm/us %util
> > TOTAL 0 0.00 0.00 0.00%
> >
> > TODO:
> > Vstat was designed to scan VIRTIOFS_TRACE_DIR directory to get all virtiofs
> > devices. However it's not supported yet. Because virtiofsd couldn't unlink
> > the trace file when exited due to the sandboxing, actually we unlink the
> > trace file when inited. Then vstat can only access the trace file through
> > the /proc/<virtiofs-pid>/fd/<trace-file> (which needs root privilege)
> > This should be refactored later if virtiofsd could access /dev/shm
> > directory, then vstat can run as nobody and be able to scan all devices
> > like iostat tool.
> >
> > Gang Deng (2):
> > virtiofsd: add stat tools
> > virtiofsd: support vstat&&vtrace
> >
> > Makefile | 3 +
> > Makefile.objs | 1 +
> > contrib/virtiofsd/Makefile.objs | 5 +-
> > contrib/virtiofsd/fuse_i.h | 1 +
> > contrib/virtiofsd/fuse_lowlevel.c | 11 +
> > contrib/virtiofsd/fuse_lowlevel.h | 1 +
> > contrib/virtiofsd/helper.c | 4 +-
> > contrib/virtiofsd/passthrough_ll.c | 7 +
> > contrib/virtiofsd/vstat.c | 680 +++++++++++++++++++++++++++++
> > contrib/virtiofsd/vtrace.c | 95 ++++
> > contrib/virtiofsd/vtrace.h | 53 +++
> > 11 files changed, 859 insertions(+), 2 deletions(-)
> > create mode 100644 contrib/virtiofsd/vstat.c
> > create mode 100644 contrib/virtiofsd/vtrace.c
> > create mode 100644 contrib/virtiofsd/vtrace.h
> >
> > --
> > 2.20.1.7.g153144c
> >
> > _______________________________________________
> > Virtio-fs mailing list
> > Virtio-fs@redhat.com
> > https://www.redhat.com/mailman/listinfo/virtio-fs
> _______________________________________________
> Virtio-fs mailing list
> Virtio-fs@redhat.com
> https://www.redhat.com/mailman/listinfo/virtio-fs
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2019-08-23 9:57 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-19 3:41 [Virtio-fs] [RFC PATCH 0/2] add stat tools for virtiofsd Gang Deng
2019-08-19 3:41 ` [Virtio-fs] [RFC PATCH 1/2] virtiofsd: add stat tools Gang Deng
2019-08-19 5:14 ` Eryu Guan
2019-08-19 14:20 ` piaojun
2019-08-20 1:24 ` Gang Deng
2019-08-19 3:41 ` [Virtio-fs] [RFC PATCH 2/2] virtiofsd: support vstat&&vtrace Gang Deng
2019-08-20 9:28 ` [Virtio-fs] [RFC PATCH 0/2] add stat tools for virtiofsd Dr. David Alan Gilbert
2019-08-21 1:49 ` Gang Deng
2019-08-22 13:40 ` Stefan Hajnoczi
2019-08-22 14:41 ` Gang Deng
2019-08-23 10:26 ` Stefan Hajnoczi
2019-08-27 13:33 ` Stefan Hajnoczi
2019-08-28 11:29 ` Gang Deng
2019-08-23 9:57 ` Dr. David Alan Gilbert [this message]
2019-08-27 13:46 ` Stefan Hajnoczi
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=20190823095743.GD2784@work-vm \
--to=dgilbert@redhat.com \
--cc=gavin.dg@linux.alibaba.com \
--cc=stefanha@redhat.com \
--cc=virtio-fs@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.