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 SYSSTAT_PATH="/var/log/sysstat"
19 # Dont run the script when systat is not enabled by default
20 if ! grep --quiet 'ENABLED="true"' "/etc/default/sysstat"; then
25 SYSSTAT_PATH="/var/log/sa"
33 SAR_DIR="$WORKSPACE/archives/sar-reports"
35 cp "$SYSSTAT_PATH/"* "$_"
36 # convert sar data to ascii format
37 while IFS="" read -r s
39 [ -f "$s" ] && LC_TIME=POSIX sar -A -f "$s" > "$SAR_DIR/sar${s//[!0-9]/}"
40 done < <(find "$SYSSTAT_PATH" -name "sa[0-9]*" || true)
42 # DON'T fail build if script fails.