mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
ux: metrics tab add query feature
This commit is contained in:
parent
9ff4ab1236
commit
c771dd4bd2
@ -62,11 +62,17 @@ export class MetricsTabCtrl {
|
||||
mixedDatasourceChanged() {
|
||||
var target: any = {isNew: true};
|
||||
var ds = _.find(this.datasources, {name: this.mixedDsSegment.value});
|
||||
|
||||
if (ds) {
|
||||
target.datasource = ds.name;
|
||||
this.panelCtrl.addDataQuery(target);
|
||||
this.mixedDsSegment.value = '';
|
||||
this.panelCtrl.addQuery(target);
|
||||
}
|
||||
|
||||
// metric segments are really bad, requires hacks to update
|
||||
const segment = this.uiSegmentSrv.newSegment({value: 'Add Query', selectMode: true, fake: true});
|
||||
this.mixedDsSegment.value = segment.value;
|
||||
this.mixedDsSegment.html = segment.html;
|
||||
this.mixedDsSegment.text = segment.text;
|
||||
}
|
||||
|
||||
addQuery() {
|
||||
|
@ -14,7 +14,7 @@
|
||||
</span>
|
||||
<span class="gf-form-query-letter-cell-letter">{{ctrl.panelCtrl.nextRefId}}</span>
|
||||
</label>
|
||||
<button class="btn btn-inverse gf-form-btn" ng-click="ctrl.addQuery()" ng-hide="ctrl.current.meta.mixed">
|
||||
<button class="btn btn-secondary gf-form-btn" ng-click="ctrl.addQuery()" ng-hide="ctrl.current.meta.mixed">
|
||||
Add Query
|
||||
</button>
|
||||
|
||||
@ -25,10 +25,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<query-troubleshooter panel-ctrl="ctrl.panelCtrl"></query-troubleshooter>
|
||||
|
||||
<collapse-box title="Data Source: {{ctrl.dsSegment.value}}">
|
||||
<collapse-box-body>
|
||||
<!-- <query-troubleshooter panel-ctrl="ctrl.panelCtrl"></query-troubleshooter> -->
|
||||
|
||||
<div class="gf-form-group">
|
||||
<div class="gf-form-inline">
|
||||
@ -45,8 +42,4 @@
|
||||
<plugin-component type="query-options-ctrl">
|
||||
</plugin-component>
|
||||
</rebuild-on-change>
|
||||
|
||||
</collapse-box-body>
|
||||
</collapse-box>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user