Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lhpqaq committed Dec 19, 2024
1 parent e93c3ff commit 87adeb0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,6 @@ auto_assign_org = true
# Enable or disable the authentication system
enabled = true
[alerting]
# Enable the alerting system
enabled = true
# Default alert evaluation frequency
default_alert_frequency = 1m
[log]
# Log level, can be: trace, debug, info, warn, error, critical
level = ${log_level}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public Map<String, Object> configs() {
Map<String, Object> configuration = LocalSettings.configurations(getServiceName(), "grafana");
grafanaContent = (String) configuration.get("content");
grafanaPort = (String) configuration.get("port");
grafanaLogLevel = (String) configuration.get("logLevel");
grafanaLogLevel = (String) configuration.get("log_level");
return configuration;
}

Expand Down

0 comments on commit 87adeb0

Please sign in to comment.