Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

tools/kvm_stat: add sample systemd unit file

Add a sample unit file as a basis for systemd integration of kvm_stat
logs.

Signed-off-by: Stefan Raspl <raspl@de.ibm.com>
Message-Id: <20200402085705.61155-4-raspl@linux.ibm.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

authored by

Stefan Raspl and committed by
Paolo Bonzini
997b7e98 3754afe7

+16
+16
tools/kvm/kvm_stat/kvm_stat.service
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + 3 + [Unit] 4 + Description=Service that logs KVM kernel module trace events 5 + Before=qemu-kvm.service 6 + 7 + [Service] 8 + Type=simple 9 + ExecStart=/usr/bin/kvm_stat -dtcz -s 10 -L /var/log/kvm_stat.csv 10 + ExecReload=/bin/kill -HUP $MAINPID 11 + Restart=always 12 + SyslogIdentifier=kvm_stat 13 + SyslogLevel=debug 14 + 15 + [Install] 16 + WantedBy=multi-user.target