mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
30 lines
755 B
HTML
30 lines
755 B
HTML
<topnav icon="fa fa-fw fa-info" title="System info">
|
|
</topnav>
|
|
|
|
<div class="page-container">
|
|
<div class="page">
|
|
<h2>
|
|
System information
|
|
</h2>
|
|
|
|
<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>
|
|
</div>
|
|
|
|
|
|
|