Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
Signed-off-by: Raul Sevilla <rsevilla@redhat.com>
  • Loading branch information
rsevilla87 committed Apr 6, 2021
1 parent 6d42586 commit 47073ae
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ Kube-burner is a tool aimed at stressing kubernetes clusters. The main functiona
- Collect desired on-cluster prometheus metrics.
- Write and/or index them to the configured TSDB.

But it also provides other features like

- Standalone metrics collection
- Alerting
- PProf collection
- Pod startup latency measurements

[![asciicast](https://asciinema.org/a/KksoK5voK3al1FuOza89t1JAp.svg)](https://asciinema.org/a/KksoK5voK3al1FuOza89t1JAp)

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion cmd/kube-burner/kube-burner.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var rootCmd = &cobra.Command{
Short: "Burn a kubernetes cluster",
Long: `Kube-burner 🔥
Tool aimed at stressing a kubernetes cluster by creating or deleting lot of objects.`,
Tool aimed at stressing a kubernetes cluster by creating or deleting lots of objects.`,
}

// versionCmd represents the version command
Expand Down
2 changes: 1 addition & 1 deletion docs/alerting.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ It's possible to look for alerts w/o triggering a kube-burner workload. To do so
$ kube-burner check-alerts -u https://prometheus.url.com -t ${token} -a alert-profile.yml
INFO[2020-12-10 11:47:23] Setting log level to info
INFO[2020-12-10 11:47:23] 👽 Initializing prometheus client
INFO[2020-12-10 11:47:24] 🔔 Initializaing alert manager
INFO[2020-12-10 11:47:24] 🔔 Initializing alert manager
INFO[2020-12-10 11:47:24] Evaluating expression: 'avg_over_time(histogram_quantile(0.99, rate(etcd_disk_wal_fsync_duration_seconds_bucket[2m]))[5m:]) > 0.01'
ERRO[2020-12-10 11:47:24] Alert triggered at 2020-12-10 11:01:53 +0100 CET: '5 minutes avg. etcd fsync latency on etcd-ip-10-0-213-209.us-west-2.compute.internal higher than 10ms 0.010281314285714311'
INFO[2020-12-10 11:47:24] Evaluating expression: 'avg_over_time(histogram_quantile(0.99, rate(etcd_network_peer_round_trip_time_seconds_bucket[5m]))[5m:]) > 0.1'
Expand Down
2 changes: 1 addition & 1 deletion pkg/alerting/alert_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ type descriptionTemplate struct {

// NewAlertManager creates a new alert manager
func NewAlertManager(alertProfile string, prometheusClient *prometheus.Prometheus) (*AlertManager, error) {
log.Info("🔔 Initializaing alert manager")
log.Info("🔔 Initializing alert manager")
a := AlertManager{
prometheus: prometheusClient,
}
Expand Down

0 comments on commit 47073ae

Please sign in to comment.