settings.html 755 B

1234567891011121314151617181920212223242526272829
  1. <topnav icon="fa fa-fw fa-info" title="System info">
  2. </topnav>
  3. <div class="page-container">
  4. <div class="page">
  5. <h2>
  6. System information
  7. </h2>
  8. <div class="grafana-info-box span8" style="margin: 20px 0 25px 0">
  9. These system settings are defined in grafana.ini or grafana.custom.ini (or overriden in ENV variables).
  10. To change these you currently need to restart grafana.
  11. </div>
  12. <table class="grafana-options-table">
  13. <tr ng-repeat-start="(secName, secValue) in settings">
  14. <td class="admin-settings-section">{{secName}}</td>
  15. <td></td>
  16. </tr>
  17. <tr ng-repeat="(keyName, keyValue) in secValue" ng-repeat-end>
  18. <td style="padding-left: 25px;">{{keyName}}</td>
  19. <td>{{keyValue}}</td>
  20. </tr>
  21. </table>
  22. </div>
  23. </div>