2017-06-02 14:00:42 +02:00
|
|
|
<navbar model="ctrl.navModel"></navbar>
|
2015-02-12 15:46:14 +01:00
|
|
|
|
|
|
|
|
<div class="page-container">
|
2016-02-14 17:37:05 +01:00
|
|
|
<div class="page-header">
|
2016-02-22 16:12:59 +01:00
|
|
|
<h1>Server settings</h1>
|
2016-02-14 17:37:05 +01:00
|
|
|
</div>
|
2015-02-12 15:46:14 +01:00
|
|
|
|
|
|
|
|
<div class="grafana-info-box span8" style="margin: 20px 0 25px 0">
|
2017-07-31 12:12:28 +02:00
|
|
|
These system settings are defined in grafana.ini or custom.ini (or overridden in ENV variables).
|
2015-02-12 15:46:14 +01:00
|
|
|
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>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|