Skip to content

Commit

Permalink
rollback the typo fix
Browse files Browse the repository at this point in the history
Signed-off-by: Rémi Jouannet <remijouannet@gmail.com>
  • Loading branch information
remijouannet committed May 11, 2023
1 parent b483720 commit 7698933
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions collector/fixtures/e2e-64k-page-output.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3058,9 +3058,9 @@ node_softnet_processed_total{cpu="0"} 299641
# HELP node_softnet_received_rps_total Number of times cpu woken up received_rps
# TYPE node_softnet_received_rps_total counter
node_softnet_received_rps_total{cpu="0"} 0
# HELP node_softnet_time_squeezed_total Number of times processing packets ran out of quota
# TYPE node_softnet_time_squeezed_total counter
node_softnet_time_squeezed_total{cpu="0"} 1
# HELP node_softnet_times_squeezed_total Number of times processing packets ran out of quota
# TYPE node_softnet_times_squeezed_total counter
node_softnet_times_squeezed_total{cpu="0"} 1
# HELP node_softnet_width softnet_data's Width
# TYPE node_softnet_width gauge
node_softnet_width{cpu="0"} 11
Expand Down
6 changes: 3 additions & 3 deletions collector/fixtures/e2e-output.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3080,9 +3080,9 @@ node_softnet_processed_total{cpu="0"} 299641
# HELP node_softnet_received_rps_total Number of times cpu woken up received_rps
# TYPE node_softnet_received_rps_total counter
node_softnet_received_rps_total{cpu="0"} 0
# HELP node_softnet_time_squeezed_total Number of times processing packets ran out of quota
# TYPE node_softnet_time_squeezed_total counter
node_softnet_time_squeezed_total{cpu="0"} 1
# HELP node_softnet_times_squeezed_total Number of times processing packets ran out of quota
# TYPE node_softnet_times_squeezed_total counter
node_softnet_times_squeezed_total{cpu="0"} 1
# HELP node_softnet_width softnet_data's Width
# TYPE node_softnet_width gauge
node_softnet_width{cpu="0"} 11
Expand Down
2 changes: 1 addition & 1 deletion collector/softnet_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func NewSoftnetCollector(logger log.Logger) (Collector, error) {
[]string{"cpu"}, nil,
),
timeSqueezed: prometheus.NewDesc(
prometheus.BuildFQName(namespace, softnetSubsystem, "time_squeezed_total"),
prometheus.BuildFQName(namespace, softnetSubsystem, "times_squeezed_total"),
"Number of times processing packets ran out of quota",
[]string{"cpu"}, nil,
),
Expand Down

0 comments on commit 7698933

Please sign in to comment.