mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-01 14:47:38 +00:00
4c0e79254c
### Describe Your Changes
This PR adds the feature to parse a multi yaml doc following the
`\n---\n`
The issue is
[6753](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/6753)
### Checklist
The following checks are **mandatory**:
- [x] My change adheres [VictoriaMetrics contributing
guidelines](https://docs.victoriametrics.com/contributing/).
---------
Signed-off-by: kirti purohit <kirti.purohit@hpe.com>
Co-authored-by: kirti purohit <kirti.purohit@hpe.com>
Co-authored-by: Jiekun <jiekun@victoriametrics.com>
Co-authored-by: hagen1778 <roman@victoriametrics.com>
(cherry picked from commit 008b649658
)
29 lines
No EOL
761 B
Text
29 lines
No EOL
761 B
Text
groups:
|
|
- name: groupTest
|
|
rules:
|
|
- alert: VMRows
|
|
for: 1ms
|
|
expr: vm_rows > 0
|
|
labels:
|
|
label: bar
|
|
host: "{{ $labels.instance }}"
|
|
annotations:
|
|
summary: "{{ $value }}"
|
|
invalid-field-1: invalid-value-1
|
|
invalid-field-2: invalid-value-2
|
|
---
|
|
groups:
|
|
- name: TestGroup
|
|
interval: 2s
|
|
concurrency: 2
|
|
type: graphite
|
|
rules:
|
|
- alert: Conns
|
|
expr: filterSeries(sumSeries(host.receiver.interface.cons),'last','>', 500)
|
|
for: 3m
|
|
|
|
annotations:
|
|
summary: Too high connection number for {{$labels.instance}}
|
|
description: "It is {{ $value }} connections for {{$labels.instance}}"
|
|
invalid-field-2: invalid-value-2
|
|
invalid-field-3: invalid-value-3 |