2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 The Linux Foundation and others.
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> sysstat.sh"
12 set +e # DON'T fail build if script fails.
14 OS=$(facter operatingsystem)
17 os_release=$(facter operatingsystemrelease)
20 if ! systemctl status sysstat > /dev/null; then
25 if [[ ! -f /etc/default/sysstat ]] ||
26 ! grep --quiet 'ENABLED="true"' /etc/default/sysstat; then
31 echo "ERROR: Unknown Release: Ubuntu $os_release"
35 SYSSTAT_PATH="/var/log/sysstat"
38 SYSSTAT_PATH="/var/log/sa"
46 SAR_DIR="$WORKSPACE/archives/sar-reports"
48 cp "$SYSSTAT_PATH/"* "$_"
49 # convert sar data to ascii format
50 while IFS="" read -r sarfilenum
52 [ -f "$sarfilenum" ] && LC_TIME=POSIX sar -A -f "$sarfilenum" > "$SAR_DIR/sar${sarfilenum//[!0-9]/}"
53 done < <(find "$SYSSTAT_PATH" -name "sa[0-9]*" || true)
55 # DON'T fail build if script fails.