mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
|
|
<h6>Query</h6>
|
|
<div class="gf-form-group">
|
|
<div class="gf-form">
|
|
<input type="text" class="gf-form-input" ng-model='ctrl.annotation.query' placeholder="select text from events where $timeFilter"></input>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="gf-form-group">
|
|
<h6>Column mappings <tip>If your influxdb query returns more than one column you need to specify the column names below. An annotation event is composed of a title, tags, and an additional text field.</tip></h6>
|
|
<div class="gf-form-inline">
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-4">Title</span>
|
|
<input type="text" class="gf-form-input max-width-10" ng-model='ctrl.annotation.titleColumn' placeholder=""></input>
|
|
</div>
|
|
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-4">Tags</span>
|
|
<input type="text" class="gf-form-input max-width-10" ng-model='ctrl.annotation.tagsColumn' placeholder=""></input>
|
|
</div>
|
|
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-4">Text</span>
|
|
<input type="text" class="gf-form-input max-width-10" ng-model='ctrl.annotation.textColumn' placeholder=""></input>
|
|
</div>
|
|
</div>
|
|
</div>
|