influxdata / influxdata/kapacitor

Kapacitor not repeat alert

Open
#1,138 4 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Go
Stars
2.4k
Forks
479
Avg merge
4d 16h
Merged PRs (30d)
4

Description

Hi!,
I have kapacitor with a alert and window time.... but not repeat alert when repeat proccess

**Steps:**
Active my alert with 50% disk...
**Expected result:**
I expected alert every 1min or other value enter on "every([value])"
**Actual result:**
One message of alert but not repeat message....

**Additional information:**
```
stream
|from()
.database('telegraf')
.measurement('disk')
|window()
.period(5m)
.every(1m)
|alert()
.crit(lambda: "used_percent" > 50.0)
.message('@all {{ .ID }} is {{ .Level}}')
.log('/tmp/alerts.log')
.hipChat()
```

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by running the provided stream configuration with a disk value above 50% and observe whether the alert repeats at the one-minute window interval. Compare the actual notifications with the expected repeated messages; done means determining why repeat behavior differs from the configured every(1m) interval and documenting or correcting the result.

Written by the indexing model from the issue text.

Assessment

Domain
observability
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.