summaryrefslogtreecommitdiff
path: root/examples/systemtap/Makefile.am
diff options
context:
space:
mode:
authorDaniel P. Berrange <berrange@redhat.com>2011-10-07 16:36:05 +0100
committerDaniel P. Berrange <berrange@redhat.com>2011-10-11 11:26:15 +0100
commit1223910ba87abd015b4c14bb860df3cd7785da12 (patch)
tree0d05cdffa94516a85847d14dbb533e76a7982805 /examples/systemtap/Makefile.am
parentddf3bd32ce1246d466f4ffc12ee3a8e41db1d0e9 (diff)
downloadlibvirt-1223910ba87abd015b4c14bb860df3cd7785da12.tar.gz
Update examples for probing with systemtap
This removes the old example for legacy probes and adds two new scripts demonstrating many of the new probe point facilities. The rpc-monitor.stp script will print out friendly details of all RPC traffic between a libvirt client/server. This is incredibly useful in seeing what RPC calls are being made, and also debugging problems in the RPC protocol code The events.stp script will print out lots of info about the poll event loop, which is useful for debugging event handling problems * examples/systemtap/events.stp, examples/systemtap/rpc-monitor.stp: New examples * examples/systemtap/client.stp: Remove obsolete example
Diffstat (limited to 'examples/systemtap/Makefile.am')
-rw-r--r--examples/systemtap/Makefile.am4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/systemtap/Makefile.am b/examples/systemtap/Makefile.am
index 6eb05467e9..6cfa4cd353 100644
--- a/examples/systemtap/Makefile.am
+++ b/examples/systemtap/Makefile.am
@@ -1,4 +1,6 @@
## Copyright (C) 2005-2011 Red Hat, Inc.
## See COPYING.LIB for the License of this software
-EXTRA_DIST = client.stp
+EXTRA_DIST = \
+ events.stp \
+ rpc-monitor.stp