2016-02-14 10:37:05 -06:00
|
|
|
<navbar icon="fa fa-fw fa-cogs" title="Admin" title-url="admin">
|
2016-01-29 15:52:30 -06:00
|
|
|
</navbar>
|
2015-02-12 08:46:14 -06:00
|
|
|
|
|
|
|
<div class="page-container">
|
2016-02-14 10:37:05 -06:00
|
|
|
<div class="page-header">
|
2016-02-22 09:12:59 -06:00
|
|
|
<h1>Server settings</h1>
|
2016-02-14 10:37:05 -06:00
|
|
|
</div>
|
2015-02-12 08:46:14 -06:00
|
|
|
|
|
|
|
<div class="grafana-info-box span8" style="margin: 20px 0 25px 0">
|
|
|
|
These system settings are defined in grafana.ini or grafana.custom.ini (or overriden in ENV variables).
|
|
|
|
To change these you currently need to restart grafana.
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="grafana-options-table">
|
|
|
|
<tr ng-repeat-start="(secName, secValue) in settings">
|
|
|
|
<td class="admin-settings-section">{{secName}}</td>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
<tr ng-repeat="(keyName, keyValue) in secValue" ng-repeat-end>
|
|
|
|
<td style="padding-left: 25px;">{{keyName}}</td>
|
|
|
|
<td>{{keyValue}}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|