From 6ef74f45727fdb02039258437a80e0eba40c76e4 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Tue, 27 Jun 2023 16:48:26 +0200 Subject: [PATCH] added missing timestamp column to date-df files --- lib/MojoFacets/Import/Log.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MojoFacets/Import/Log.pm b/lib/MojoFacets/Import/Log.pm index e0f03b1..e95742a 100644 --- a/lib/MojoFacets/Import/Log.pm +++ b/lib/MojoFacets/Import/Log.pm @@ -20,7 +20,7 @@ sub data { my $need_header = 1; my @header; - @header = qw(Filesystem 1K-blocks Used Available Use% Mounted-on) if $path =~ m/date-df/; + @header = qw(timestamp Filesystem 1K-blocks Used Available Use% Mounted-on) if $path =~ m/date-df/; open(my $fh, $path) || die "$path: $!"; while(<$fh>) { -- 2.20.1