change trigger alert text

This commit is contained in:
sqshq 2019-03-11 23:02:46 -04:00
parent 97cee1ec94
commit 3aaa1896cc
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ func (t *Trigger) Execute(sample Sample) {
if t.actions.visual {
t.consumer.AlertChannel <- Alert{
Title: t.title, Text: fmt.Sprintf("%s value: %v", sample.Label, sample.Value),
Title: t.title, Text: fmt.Sprintf("%s: %v", sample.Label, sample.Value),
}
}