From f564019c758543e704799c73efcc59277c034777 Mon Sep 17 00:00:00 2001 From: Clack Cole Date: Thu, 9 Nov 2023 13:30:05 -0700 Subject: [PATCH] Add missing tag datatype header The datatype header should have 14 values to match the 14 column headers. --- .../BenchmarkTool/BenchmarkTool+Export+InfluxCSVFormatter.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/BenchmarkTool/BenchmarkTool+Export+InfluxCSVFormatter.swift b/Plugins/BenchmarkTool/BenchmarkTool+Export+InfluxCSVFormatter.swift index f65c4018..4520dff9 100644 --- a/Plugins/BenchmarkTool/BenchmarkTool+Export+InfluxCSVFormatter.swift +++ b/Plugins/BenchmarkTool/BenchmarkTool+Export+InfluxCSVFormatter.swift @@ -54,7 +54,7 @@ class InfluxCSVFormatter { let memory = machine.memory if header { - let dataTypeHeader = "#datatype tag,tag,tag,tag,tag,tag,tag,tag,double,double,long,long,dateTime\n" + let dataTypeHeader = "#datatype tag,tag,tag,tag,tag,tag,tag,tag,tag,double,double,long,long,dateTime\n" finalFileFormat.append(dataTypeHeader) let headers = "measurement,hostName,processoryType,processors,memory,kernelVersion,metric,unit,test,value,test_average,iterations,warmup_iterations,time\n" finalFileFormat.append(headers)