mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* metric tank meta * add metric tank info * fixed info box * process meta * attach metrictank meta to response * remove extra logging * response is now DataFrame * Minor refactoring and renaming of the prop * Graphite: minor fixes
46 lines
1.9 KiB
HTML
46 lines
1.9 KiB
HTML
<datasource-http-settings
|
|
current="ctrl.current"
|
|
suggest-url="http://localhost:8080">
|
|
</datasource-http-settings>
|
|
|
|
<h3 class="page-heading">Graphite details</h3>
|
|
|
|
<div class="gf-form-group">
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-8">
|
|
Version
|
|
<info-popover mode="right-normal" position="top center">
|
|
This option controls what functions are available in the Graphite query editor.
|
|
</info-popover>
|
|
</span>
|
|
<span class="gf-form-select-wrapper">
|
|
<select class="gf-form-input gf-size-auto" ng-model="ctrl.current.jsonData.graphiteVersion" ng-options="f.value as f.name for f in ctrl.graphiteVersions"></select>
|
|
</span>
|
|
</div>
|
|
<div class="gf-form-inline">
|
|
<span class="gf-form-label width-8">Type</span>
|
|
<span class="gf-form-select-wrapper">
|
|
<select class="gf-form-input gf-size-auto" ng-model="ctrl.current.jsonData.graphiteType" ng-options="f.value as f.name
|
|
for f in ctrl.graphiteTypes"></select>
|
|
</span>
|
|
<div class="gf-form">
|
|
<label class="gf-form-label query-keyword pointer" ng-click="ctrl.showMetrictankHelp = !ctrl.showMetrictankHelp">
|
|
Help
|
|
<i class="fa fa-caret-down" ng-show="ctrl.showMetrictankHelp"></i>
|
|
<i class="fa fa-caret-right" ng-hide="ctrl.showMetrictankHelp"> </i>
|
|
</label>
|
|
</div>
|
|
<div ng-if="ctrl.showMetrictankHelp" class="grafana-info-box m-t-2">
|
|
<div class="alert-body">
|
|
<p>
|
|
There are different types of Graphite compatible backends. Here you can specify the type you are using.
|
|
If you are using <a href="https://github.com/grafana/metrictank" class="pointer" target="_blank">Metrictank</a>
|
|
then select that here. This will enable Metrictank specific features like query processing meta data.
|
|
|
|
Metrictank is a multi-tenant timeseries engine for Graphite and friends.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|