changed debug filename to include perf

This commit is contained in:
Marc Mance
2024-07-31 10:56:11 -04:00
parent af4ab1ad8e
commit 6c1bcae724

View File

@@ -176,7 +176,6 @@ def zpoolIostat():
def collect_data(minutes): def collect_data(minutes):
if is_freebsd(): if is_freebsd():
print("Starting gstat collection.")
gstat_command = ["gstat", "-C", "-s", "-d", "-o", "-p", "-I", "5s"] gstat_command = ["gstat", "-C", "-s", "-d", "-o", "-p", "-I", "5s"]
with open("gstat.csv", "a") as output_file: with open("gstat.csv", "a") as output_file:
# Create a Popen object with stdout redirected to the file # Create a Popen object with stdout redirected to the file
@@ -207,7 +206,6 @@ def collect_data(minutes):
# kill gstat if freebsd # kill gstat if freebsd
if is_freebsd(): if is_freebsd():
print("Killing gstat process.")
process.kill() process.kill()
@@ -266,7 +264,7 @@ def upload_debug():
"customer:ixcustomer", "customer:ixcustomer",
"-T", "-T",
debug_file, debug_file,
f"ftp.ixsystems.com/debug-{hostname}-{datetime.now().strftime('%Y%m%d%H%M')}.tgz", f"ftp.ixsystems.com/debug-perf-{hostname}-{datetime.now().strftime('%Y%m%d%H%M')}.tgz",
] ]
) )