Codebase list munin-libvirt-plugins / da6a005
add copyright year and license Guido Günther authored 15 years ago Guido Guenther committed 15 years ago
3 changed file(s) with 12 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
00 #!/usr/bin/python
1 # vim: set fileencoding=utf-8 :
12 #
23 # Munin plugin to show the I/O load of libvirt managed virtual machines
34 #
4 # Copyright Guido Guenther <agx@sigxcpu.org>
5 # Copyright 2008 Guido Guenther <agx@sigxcpu.org>
6 #
7 # Licesnse: GPLv2
58 #
69 # depends: python-libvirt, python-libxml2
710 #
2528 print """graph_title Virtual Domain Block Device I/O
2629 graph_vlabel Bytes read (-)/ written (+) per ${graph_period}
2730 graph_category Virtual Machines
28 graph_info This graph shows the block device I/O of the virtual machines
29 """
31 graph_info This graph shows the block device I/O of the virtual machines"""
3032
3133 conn = libvirt.openReadOnly(uri)
3234 ids = conn.listDomainsID()
44 # machines
55 #
66 # Copyright 2008 Guido Guenther <agx@sigxcpu.org>
7 #
8 # License: GPLv2
79 #
810 # depends: python-libvirt
911 #
00 #!/usr/bin/python
1 # vim: set fileencoding=utf-8 :
12 #
23 # Munin plugin to show the network traffic of libvirt managed virtual machines
34 #
4 # Copyright Guido Guenther <agx@sigxcpu.org>
5 # Copyright 2008 Guido Guenther <agx@sigxcpu.org>
6 #
7 # License GPLv2
58 #
69 # depends: python-libvirt, python-libxml2
710 #
2528 print """graph_title Virtual Domain Network I/O
2629 graph_vlabel Bytes rx (-)/ tx (+) per ${graph_period}
2730 graph_category Virtual Machines
28 graph_info This graph shows the network I/O of the virtual machines
29 """
31 graph_info This graph shows the network I/O of the virtual machines"""
3032
3133 conn = libvirt.openReadOnly(uri)
3234 ids = conn.listDomainsID()