mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
49 lines
1.5 KiB
HTML
49 lines
1.5 KiB
HTML
<section class="grafana-metric-options">
|
|
<div class="tight-form">
|
|
<ul class="tight-form-list">
|
|
<li class="tight-form-item tight-form-item-icon">
|
|
<i class="fa fa-wrench"></i>
|
|
</li>
|
|
<li class="tight-form-item">
|
|
Group by time interval
|
|
</li>
|
|
<li>
|
|
<input type="text" class="input-medium tight-form-input" ng-model="panel.interval" ng-blur="get_data();"
|
|
spellcheck='false' placeholder="example: >10s">
|
|
</li>
|
|
<li class="tight-form-item">
|
|
<i class="fa fa-question-circle" bs-tooltip="'Set a low limit by having a greater sign: example: >60s'" data-placement="right"></i>
|
|
</li>
|
|
</ul>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
<div class="tight-form last">
|
|
<ul class="tight-form-list">
|
|
<li class="tight-form-item tight-form-item-icon">
|
|
<i class="fa fa-info-circle"></i>
|
|
</li>
|
|
<li class="tight-form-item">
|
|
<a ng-click="toggleEditorHelp(1);" bs-tooltip="'click to show helpful info'" data-placement="bottom">
|
|
alias patterns
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="editor-row">
|
|
<div class="pull-left" style="margin-top: 30px;">
|
|
<div class="grafana-info-box span6" ng-if="editorHelpIndex === 1">
|
|
<h5>Alias patterns</h5>
|
|
<ul ng-non-bindable>
|
|
<li>{{term fieldname}} = replaced with value of term group by</li>
|
|
<li>{{metric}} = replaced with metric name (ex. Average, Min, Max)</li>
|
|
<li>{{field}} = replaced with the metric field name</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|