From 21f548d3c07189c6a413cf88c2b60cc9ada73497 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Mon, 16 Jan 2023 12:00:53 +0100 Subject: [PATCH] Remove no-op InfluxDB URL param precision=ns is the default. --- lib/perfdata/influxdbcommonwriter.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/perfdata/influxdbcommonwriter.cpp b/lib/perfdata/influxdbcommonwriter.cpp index fd588a178..32ee7f9be 100644 --- a/lib/perfdata/influxdbcommonwriter.cpp +++ b/lib/perfdata/influxdbcommonwriter.cpp @@ -554,7 +554,6 @@ Url::Ptr InfluxdbCommonWriter::AssembleBaseUrl() url->SetScheme(GetSslEnable() ? "https" : "http"); url->SetHost(GetHost()); url->SetPort(GetPort()); - url->AddQueryElement("precision", "ns"); return url; }