From afa5b58c2d283238a0ccf4cf0db886060556b6e2 Mon Sep 17 00:00:00 2001
From: Aliaksandr Valialkin <valyala@gmail.com>
Date: Fri, 12 Mar 2021 15:59:23 +0200
Subject: [PATCH] app/vminsert/opentsdbhttp: typo fix in
 `vm_rows_inserted_total{type="opentsdbhttp"}` metric: opentsdb-http ->
 opentsdbhttp

---
 app/vminsert/opentsdbhttp/request_handler.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/vminsert/opentsdbhttp/request_handler.go b/app/vminsert/opentsdbhttp/request_handler.go
index 494c856039..0c99a0ed41 100644
--- a/app/vminsert/opentsdbhttp/request_handler.go
+++ b/app/vminsert/opentsdbhttp/request_handler.go
@@ -17,7 +17,7 @@ import (
 )
 
 var (
-	rowsInserted  = tenantmetrics.NewCounterMap(`vm_rows_inserted_total{type="opentsdb-http"}`)
+	rowsInserted  = tenantmetrics.NewCounterMap(`vm_rows_inserted_total{type="opentsdbhttp"}`)
 	rowsPerInsert = metrics.NewHistogram(`vm_rows_per_insert{type="opentsdbhttp"}`)
 )