File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ class BasicAuth(BaseModel):
77
88
99class AlertManagerInput (BaseModel ):
10- name :str
11- url :str
12- uid :str
13- implementation :str
10+ name :str = "Alertmanager"
11+ url :str = "http://localhost:9093"
12+ uid :str = "alertmanager"
13+ implementation :str
1414
1515 handleGrafanaManagedAlerts :bool = True
1616 editable : bool = True
Original file line number Diff line number Diff line change 44
55
66class ElasticSearchInput (BaseModel ):
7- name :str
8- url :str
7+ name :str = "elasticsearch-v7-filebeat"
8+ url :str = "http://localhost:9200"
99 editable : bool = True
1010 index :str = "[filebeat-]YYYY.MM.DD"
1111 interval :str = "Daily"
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ class BasicAuth(BaseModel):
66 basicAuthPassword :str
77
88class LokiInput (BaseModel ):
9- name :str
10- uid :str = "loki"
11- url :str
9+ name :str = "Loki"
10+ uid :str = "loki"
11+ url :str = "http://localhost:3100"
1212 editable : bool = True
1313 timeout :int = 60
1414 maxLines :int = 1000
You can’t perform that action at this time.
0 commit comments