Skip to content

Commit

Permalink
Upload and download speed are reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
r-darwish committed Dec 2, 2021
1 parent ae3b415 commit a2edeb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ import (

var (
uploadSpeed = prometheus.NewGaugeVec(prometheus.GaugeOpts{
Name: "deco_download_speed",
Name: "deco_upload_speed",
Help: "Online devices",
}, []string{"device"})

downloadSpeed = prometheus.NewGaugeVec(prometheus.GaugeOpts{
Name: "deco_upload_speed",
Name: "deco_download_speed",
Help: "Online devices",
}, []string{"device"})

Expand Down

0 comments on commit a2edeb9

Please sign in to comment.