This is the mail archive of the
systemtap@sourceware.org
mailing list for the systemtap project.
Re: XML(-ish) output?
- From: fche at redhat dot com (Frank Ch. Eigler)
- To: Albretch Mueller <lbrtchx at gmail dot com>
- Cc: systemtap at sourceware dot org
- Date: Mon, 01 Oct 2012 10:29:58 -0400
- Subject: Re: XML(-ish) output?
- References: <CAFakBwjcZ=R--b3T4WNoh62Rv4zTco7-7t-c1eY+DFutv4XLGg@mail.gmail.com>
Albretch Mueller <lbrtchx@gmail.com> writes:
> I couldn't find any reference to generating output files as XML
> documents in sourceware's documentation per se [...]
One can do so from first principles:
probe FOO {
printf("<tag attrib=\"foo\">\n");
printf("<bar/>\n");
printf("</tag>\n");
}
How much deeper support for xml generation were you hoping for?
Quoting of some sort?
- FChE