This is an automated email from the ASF dual-hosted git repository. miao pushed a commit to branch grafana_plugin in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 69d48169d3ef717583a7ca72143358e701be845d Author: luke.miao <[email protected]> AuthorDate: Tue Dec 10 14:22:26 2024 +0800 Fixed the issue of displaying 0 when the number is null --- iotdb-connector/grafana-plugin/pkg/plugin/plugin.go | 1 + 1 file changed, 1 insertion(+) diff --git a/iotdb-connector/grafana-plugin/pkg/plugin/plugin.go b/iotdb-connector/grafana-plugin/pkg/plugin/plugin.go index ebb7710b3c3..6ede198155d 100644 --- a/iotdb-connector/grafana-plugin/pkg/plugin/plugin.go +++ b/iotdb-connector/grafana-plugin/pkg/plugin/plugin.go @@ -24,6 +24,7 @@ import ( "errors" "fmt" "io" + "math" "net/http" "strconv" "strings"
