Skip to content

Commit c249543

Browse files
committed
Add deprecation log for v2 api version
1 parent 32ee79a commit c249543

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

emq_exporter.go

+4
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,10 @@ func main() {
188188
log.Infoln("Starting emq_exporter")
189189
log.Infof("Version %s (git-%s)", GitTag, GitCommit)
190190

191+
if *emqAPIVersion == "v2" {
192+
log.Warnln("v2 api version is deprecated and will be removed in future versions")
193+
}
194+
191195
c := client.NewClient(*emqURI, *emqNodeName, *emqAPIVersion, username, password)
192196

193197
exporter := NewExporter(c)

0 commit comments

Comments
 (0)