fix grafana 12 regression
This commit is contained in:
parent
24a67e5614
commit
490804da40
1 changed files with 7 additions and 1 deletions
|
@ -26,9 +26,15 @@ defaults = {
|
||||||
'config': {
|
'config': {
|
||||||
'server': {
|
'server': {
|
||||||
'http_port': 8300,
|
'http_port': 8300,
|
||||||
|
'http_addr': '127.0.0.1',
|
||||||
|
'enable_gzip': True,
|
||||||
},
|
},
|
||||||
'database': {
|
'database': {
|
||||||
'url': f'postgres://grafana:{postgres_password}@localhost:5432/grafana',
|
'type': 'postgres',
|
||||||
|
'host': '127.0.0.1:5432',
|
||||||
|
'name': 'grafana',
|
||||||
|
'user': 'grafana',
|
||||||
|
'password': postgres_password,
|
||||||
},
|
},
|
||||||
'remote_cache': {
|
'remote_cache': {
|
||||||
'type': 'redis',
|
'type': 'redis',
|
||||||
|
|
Loading…
Reference in a new issue