grafana/public/app/features/admin/partials/settings.html

28 lines
764 B
HTML
Raw Normal View History

2016-02-14 10:37:05 -06:00
<navbar icon="fa fa-fw fa-cogs" title="Admin" title-url="admin">
</navbar>
<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>
<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>