Browse Source

Fix typo in cscli metrics and debug message (#1473)

* Fix typo in cscli metrics and debug message
AlteredCoder 3 years ago
parent
commit
8074a233e8
2 changed files with 2 additions and 2 deletions
  1. 1 1
      cmd/crowdsec-cli/metrics.go
  2. 1 1
      cmd/crowdsec/pour.go

+ 1 - 1
cmd/crowdsec-cli/metrics.go

@@ -269,7 +269,7 @@ func ShowPrometheus(url string) {
 			log.Warningf("while collecting acquis stats : %s", err)
 		}
 		bucketsTable := tablewriter.NewWriter(os.Stdout)
-		bucketsTable.SetHeader([]string{"Bucket", "Current Count", "Overflows", "Instanciated", "Poured", "Expired"})
+		bucketsTable.SetHeader([]string{"Bucket", "Current Count", "Overflows", "Instantiated", "Poured", "Expired"})
 		keys = []string{"curr_count", "overflow", "instanciation", "pour", "underflow"}
 		if err := metricsToTable(bucketsTable, buckets_stats, keys); err != nil {
 			log.Warningf("while collecting acquis stats : %s", err)

+ 1 - 1
cmd/crowdsec/pour.go

@@ -23,7 +23,7 @@ func runPour(input chan types.Event, holders []leaky.BucketFactory, buckets *lea
 		case parsed := <-input:
 			count++
 			if count%5000 == 0 {
-				log.Warningf("%d existing LeakyRoutine", leaky.LeakyRoutineCount)
+				log.Infof("%d existing buckets", leaky.LeakyRoutineCount)
 				//when in forensics mode, garbage collect buckets
 				if cConfig.Crowdsec.BucketsGCEnabled {
 					if parsed.MarshaledTime != "" {