@grafana/scenes 5.7.3 → 5.7.4--canary.858.10213075790.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm/behaviors/SceneQueryController.js +55 -5
- package/dist/esm/behaviors/SceneQueryController.js.map +1 -1
- package/dist/esm/behaviors/SceneRenderProfiler.js +136 -0
- package/dist/esm/behaviors/SceneRenderProfiler.js.map +1 -0
- package/dist/esm/components/SceneRefreshPicker.js +4 -7
- package/dist/esm/components/SceneRefreshPicker.js.map +1 -1
- package/dist/esm/core/SceneTimeRange.js +3 -0
- package/dist/esm/core/SceneTimeRange.js.map +1 -1
- package/dist/esm/core/sceneGraph/getQueryController.js +19 -0
- package/dist/esm/core/sceneGraph/getQueryController.js.map +1 -0
- package/dist/esm/core/sceneGraph/index.js +2 -1
- package/dist/esm/core/sceneGraph/index.js.map +1 -1
- package/dist/esm/core/sceneGraph/sceneGraph.js +1 -16
- package/dist/esm/core/sceneGraph/sceneGraph.js.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/querying/registerQueryWithController.js.map +1 -1
- package/dist/esm/variables/components/VariableValueSelect.js +5 -0
- package/dist/esm/variables/components/VariableValueSelect.js.map +1 -1
- package/dist/esm/variables/variants/TestVariable.js.map +1 -1
- package/dist/index.d.ts +37 -24
- package/dist/index.js +355 -171
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
@@ -41,19 +41,19 @@ var uFuzzy__default = /*#__PURE__*/_interopDefaultLegacy(uFuzzy);
|
|
41
41
|
var ReactGridLayout__default = /*#__PURE__*/_interopDefaultLegacy(ReactGridLayout);
|
42
42
|
var AutoSizer__default = /*#__PURE__*/_interopDefaultLegacy(AutoSizer);
|
43
43
|
|
44
|
-
var __defProp$
|
45
|
-
var __getOwnPropSymbols$
|
46
|
-
var __hasOwnProp$
|
47
|
-
var __propIsEnum$
|
48
|
-
var __defNormalProp$
|
49
|
-
var __spreadValues$
|
44
|
+
var __defProp$L = Object.defineProperty;
|
45
|
+
var __getOwnPropSymbols$L = Object.getOwnPropertySymbols;
|
46
|
+
var __hasOwnProp$L = Object.prototype.hasOwnProperty;
|
47
|
+
var __propIsEnum$L = Object.prototype.propertyIsEnumerable;
|
48
|
+
var __defNormalProp$L = (obj, key, value) => key in obj ? __defProp$L(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
49
|
+
var __spreadValues$L = (a, b) => {
|
50
50
|
for (var prop in b || (b = {}))
|
51
|
-
if (__hasOwnProp$
|
52
|
-
__defNormalProp$
|
53
|
-
if (__getOwnPropSymbols$
|
54
|
-
for (var prop of __getOwnPropSymbols$
|
55
|
-
if (__propIsEnum$
|
56
|
-
__defNormalProp$
|
51
|
+
if (__hasOwnProp$L.call(b, prop))
|
52
|
+
__defNormalProp$L(a, prop, b[prop]);
|
53
|
+
if (__getOwnPropSymbols$L)
|
54
|
+
for (var prop of __getOwnPropSymbols$L(b)) {
|
55
|
+
if (__propIsEnum$L.call(b, prop))
|
56
|
+
__defNormalProp$L(a, prop, b[prop]);
|
57
57
|
}
|
58
58
|
return a;
|
59
59
|
};
|
@@ -62,7 +62,7 @@ function useAppQueryParams() {
|
|
62
62
|
return runtime.locationSearchToObject(location.search || "");
|
63
63
|
}
|
64
64
|
function getUrlWithAppState(path, preserveParams) {
|
65
|
-
const paramsCopy = __spreadValues$
|
65
|
+
const paramsCopy = __spreadValues$L({}, runtime.locationService.getSearchObject());
|
66
66
|
if (preserveParams) {
|
67
67
|
for (const key of Object.keys(paramsCopy)) {
|
68
68
|
if (!preserveParams.includes(key)) {
|
@@ -76,31 +76,31 @@ function renderSceneComponentWithRouteProps(sceneObject, routeProps) {
|
|
76
76
|
return React__default["default"].createElement(sceneObject.Component, { model: sceneObject, routeProps });
|
77
77
|
}
|
78
78
|
|
79
|
-
var __defProp$
|
80
|
-
var __defProps$
|
81
|
-
var __getOwnPropDescs$
|
82
|
-
var __getOwnPropSymbols$
|
83
|
-
var __hasOwnProp$
|
84
|
-
var __propIsEnum$
|
85
|
-
var __defNormalProp$
|
86
|
-
var __spreadValues$
|
79
|
+
var __defProp$K = Object.defineProperty;
|
80
|
+
var __defProps$u = Object.defineProperties;
|
81
|
+
var __getOwnPropDescs$u = Object.getOwnPropertyDescriptors;
|
82
|
+
var __getOwnPropSymbols$K = Object.getOwnPropertySymbols;
|
83
|
+
var __hasOwnProp$K = Object.prototype.hasOwnProperty;
|
84
|
+
var __propIsEnum$K = Object.prototype.propertyIsEnumerable;
|
85
|
+
var __defNormalProp$K = (obj, key, value) => key in obj ? __defProp$K(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
86
|
+
var __spreadValues$K = (a, b) => {
|
87
87
|
for (var prop in b || (b = {}))
|
88
|
-
if (__hasOwnProp$
|
89
|
-
__defNormalProp$
|
90
|
-
if (__getOwnPropSymbols$
|
91
|
-
for (var prop of __getOwnPropSymbols$
|
92
|
-
if (__propIsEnum$
|
93
|
-
__defNormalProp$
|
88
|
+
if (__hasOwnProp$K.call(b, prop))
|
89
|
+
__defNormalProp$K(a, prop, b[prop]);
|
90
|
+
if (__getOwnPropSymbols$K)
|
91
|
+
for (var prop of __getOwnPropSymbols$K(b)) {
|
92
|
+
if (__propIsEnum$K.call(b, prop))
|
93
|
+
__defNormalProp$K(a, prop, b[prop]);
|
94
94
|
}
|
95
95
|
return a;
|
96
96
|
};
|
97
|
-
var __spreadProps$
|
97
|
+
var __spreadProps$u = (a, b) => __defProps$u(a, __getOwnPropDescs$u(b));
|
98
98
|
const runtimePanelPlugins = /* @__PURE__ */ new Map();
|
99
99
|
function registerRuntimePanelPlugin({ pluginId, plugin }) {
|
100
100
|
if (runtimePanelPlugins.has(pluginId)) {
|
101
101
|
throw new Error(`A runtime panel plugin with id ${pluginId} has already been registered`);
|
102
102
|
}
|
103
|
-
plugin.meta = __spreadProps$
|
103
|
+
plugin.meta = __spreadProps$u(__spreadValues$K({}, plugin.meta), {
|
104
104
|
id: pluginId,
|
105
105
|
name: pluginId,
|
106
106
|
module: "runtime plugin",
|
@@ -128,33 +128,33 @@ function loadPanelPluginSync(pluginId) {
|
|
128
128
|
return (_a = getPanelPluginFromCache(pluginId)) != null ? _a : runtimePanelPlugins.get(pluginId);
|
129
129
|
}
|
130
130
|
|
131
|
-
var __defProp$
|
132
|
-
var __defProps$
|
133
|
-
var __getOwnPropDescs$
|
134
|
-
var __getOwnPropSymbols$
|
135
|
-
var __hasOwnProp$
|
136
|
-
var __propIsEnum$
|
137
|
-
var __defNormalProp$
|
138
|
-
var __spreadValues$
|
131
|
+
var __defProp$J = Object.defineProperty;
|
132
|
+
var __defProps$t = Object.defineProperties;
|
133
|
+
var __getOwnPropDescs$t = Object.getOwnPropertyDescriptors;
|
134
|
+
var __getOwnPropSymbols$J = Object.getOwnPropertySymbols;
|
135
|
+
var __hasOwnProp$J = Object.prototype.hasOwnProperty;
|
136
|
+
var __propIsEnum$J = Object.prototype.propertyIsEnumerable;
|
137
|
+
var __defNormalProp$J = (obj, key, value) => key in obj ? __defProp$J(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
138
|
+
var __spreadValues$J = (a, b) => {
|
139
139
|
for (var prop in b || (b = {}))
|
140
|
-
if (__hasOwnProp$
|
141
|
-
__defNormalProp$
|
142
|
-
if (__getOwnPropSymbols$
|
143
|
-
for (var prop of __getOwnPropSymbols$
|
144
|
-
if (__propIsEnum$
|
145
|
-
__defNormalProp$
|
140
|
+
if (__hasOwnProp$J.call(b, prop))
|
141
|
+
__defNormalProp$J(a, prop, b[prop]);
|
142
|
+
if (__getOwnPropSymbols$J)
|
143
|
+
for (var prop of __getOwnPropSymbols$J(b)) {
|
144
|
+
if (__propIsEnum$J.call(b, prop))
|
145
|
+
__defNormalProp$J(a, prop, b[prop]);
|
146
146
|
}
|
147
147
|
return a;
|
148
148
|
};
|
149
|
-
var __spreadProps$
|
149
|
+
var __spreadProps$t = (a, b) => __defProps$t(a, __getOwnPropDescs$t(b));
|
150
150
|
var __objRest$4 = (source, exclude) => {
|
151
151
|
var target = {};
|
152
152
|
for (var prop in source)
|
153
|
-
if (__hasOwnProp$
|
153
|
+
if (__hasOwnProp$J.call(source, prop) && exclude.indexOf(prop) < 0)
|
154
154
|
target[prop] = source[prop];
|
155
|
-
if (source != null && __getOwnPropSymbols$
|
156
|
-
for (var prop of __getOwnPropSymbols$
|
157
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum$
|
155
|
+
if (source != null && __getOwnPropSymbols$J)
|
156
|
+
for (var prop of __getOwnPropSymbols$J(source)) {
|
157
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum$J.call(source, prop))
|
158
158
|
target[prop] = source[prop];
|
159
159
|
}
|
160
160
|
return target;
|
@@ -172,7 +172,7 @@ function SceneComponentWrapperWithoutMemo(_a) {
|
|
172
172
|
if (!model.isActive) {
|
173
173
|
return null;
|
174
174
|
}
|
175
|
-
return /* @__PURE__ */ React__default["default"].createElement(Component, __spreadProps$
|
175
|
+
return /* @__PURE__ */ React__default["default"].createElement(Component, __spreadProps$t(__spreadValues$J({}, otherProps), {
|
176
176
|
model
|
177
177
|
}));
|
178
178
|
}
|
@@ -188,49 +188,49 @@ class UserActionEvent extends data.BusEventWithPayload {
|
|
188
188
|
}
|
189
189
|
UserActionEvent.type = "scene-object-user-action";
|
190
190
|
|
191
|
-
var __accessCheck$
|
191
|
+
var __accessCheck$4 = (obj, member, msg) => {
|
192
192
|
if (!member.has(obj))
|
193
193
|
throw TypeError("Cannot " + msg);
|
194
194
|
};
|
195
|
-
var __privateGet$
|
196
|
-
__accessCheck$
|
195
|
+
var __privateGet$4 = (obj, member, getter) => {
|
196
|
+
__accessCheck$4(obj, member, "read from private field");
|
197
197
|
return getter ? getter.call(obj) : member.get(obj);
|
198
198
|
};
|
199
|
-
var __privateAdd$
|
199
|
+
var __privateAdd$4 = (obj, member, value) => {
|
200
200
|
if (member.has(obj))
|
201
201
|
throw TypeError("Cannot add the same private member more than once");
|
202
202
|
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
203
203
|
};
|
204
|
-
var __privateSet$
|
205
|
-
__accessCheck$
|
204
|
+
var __privateSet$4 = (obj, member, value, setter) => {
|
205
|
+
__accessCheck$4(obj, member, "write to private field");
|
206
206
|
setter ? setter.call(obj, value) : member.set(obj, value);
|
207
207
|
return value;
|
208
208
|
};
|
209
209
|
var _ref;
|
210
210
|
class SceneObjectRef {
|
211
211
|
constructor(ref) {
|
212
|
-
__privateAdd$
|
213
|
-
__privateSet$
|
212
|
+
__privateAdd$4(this, _ref, void 0);
|
213
|
+
__privateSet$4(this, _ref, ref);
|
214
214
|
}
|
215
215
|
resolve() {
|
216
|
-
return __privateGet$
|
216
|
+
return __privateGet$4(this, _ref);
|
217
217
|
}
|
218
218
|
}
|
219
219
|
_ref = new WeakMap();
|
220
220
|
|
221
|
-
var __defProp$
|
222
|
-
var __getOwnPropSymbols$
|
223
|
-
var __hasOwnProp$
|
224
|
-
var __propIsEnum$
|
225
|
-
var __defNormalProp$
|
226
|
-
var __spreadValues$
|
221
|
+
var __defProp$I = Object.defineProperty;
|
222
|
+
var __getOwnPropSymbols$I = Object.getOwnPropertySymbols;
|
223
|
+
var __hasOwnProp$I = Object.prototype.hasOwnProperty;
|
224
|
+
var __propIsEnum$I = Object.prototype.propertyIsEnumerable;
|
225
|
+
var __defNormalProp$I = (obj, key, value) => key in obj ? __defProp$I(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
226
|
+
var __spreadValues$I = (a, b) => {
|
227
227
|
for (var prop in b || (b = {}))
|
228
|
-
if (__hasOwnProp$
|
229
|
-
__defNormalProp$
|
230
|
-
if (__getOwnPropSymbols$
|
231
|
-
for (var prop of __getOwnPropSymbols$
|
232
|
-
if (__propIsEnum$
|
233
|
-
__defNormalProp$
|
228
|
+
if (__hasOwnProp$I.call(b, prop))
|
229
|
+
__defNormalProp$I(a, prop, b[prop]);
|
230
|
+
if (__getOwnPropSymbols$I)
|
231
|
+
for (var prop of __getOwnPropSymbols$I(b)) {
|
232
|
+
if (__propIsEnum$I.call(b, prop))
|
233
|
+
__defNormalProp$I(a, prop, b[prop]);
|
234
234
|
}
|
235
235
|
return a;
|
236
236
|
};
|
@@ -290,7 +290,7 @@ class SceneObjectBase {
|
|
290
290
|
}
|
291
291
|
setState(update) {
|
292
292
|
const prevState = this._state;
|
293
|
-
const newState = __spreadValues$
|
293
|
+
const newState = __spreadValues$I(__spreadValues$I({}, this._state), update);
|
294
294
|
this._state = Object.freeze(newState);
|
295
295
|
this._setParent(update);
|
296
296
|
this._handleActivationOfChangedStateProps(prevState, newState);
|
@@ -486,19 +486,19 @@ function forEachChild(state, callback) {
|
|
486
486
|
}
|
487
487
|
}
|
488
488
|
|
489
|
-
var __defProp$
|
490
|
-
var __getOwnPropSymbols$
|
491
|
-
var __hasOwnProp$
|
492
|
-
var __propIsEnum$
|
493
|
-
var __defNormalProp$
|
494
|
-
var __spreadValues$
|
489
|
+
var __defProp$H = Object.defineProperty;
|
490
|
+
var __getOwnPropSymbols$H = Object.getOwnPropertySymbols;
|
491
|
+
var __hasOwnProp$H = Object.prototype.hasOwnProperty;
|
492
|
+
var __propIsEnum$H = Object.prototype.propertyIsEnumerable;
|
493
|
+
var __defNormalProp$H = (obj, key, value) => key in obj ? __defProp$H(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
494
|
+
var __spreadValues$H = (a, b) => {
|
495
495
|
for (var prop in b || (b = {}))
|
496
|
-
if (__hasOwnProp$
|
497
|
-
__defNormalProp$
|
498
|
-
if (__getOwnPropSymbols$
|
499
|
-
for (var prop of __getOwnPropSymbols$
|
500
|
-
if (__propIsEnum$
|
501
|
-
__defNormalProp$
|
496
|
+
if (__hasOwnProp$H.call(b, prop))
|
497
|
+
__defNormalProp$H(a, prop, b[prop]);
|
498
|
+
if (__getOwnPropSymbols$H)
|
499
|
+
for (var prop of __getOwnPropSymbols$H(b)) {
|
500
|
+
if (__propIsEnum$H.call(b, prop))
|
501
|
+
__defNormalProp$H(a, prop, b[prop]);
|
502
502
|
}
|
503
503
|
return a;
|
504
504
|
};
|
@@ -507,7 +507,7 @@ function cloneSceneObject(sceneObject, withState) {
|
|
507
507
|
return new sceneObject.constructor(clonedState);
|
508
508
|
}
|
509
509
|
function cloneSceneObjectState(sceneState, withState) {
|
510
|
-
const clonedState = __spreadValues$
|
510
|
+
const clonedState = __spreadValues$H({}, sceneState);
|
511
511
|
for (const key in clonedState) {
|
512
512
|
const propValue = clonedState[key];
|
513
513
|
if (propValue instanceof SceneObjectBase) {
|
@@ -604,6 +604,267 @@ function lookupVariable(name, sceneObject) {
|
|
604
604
|
return null;
|
605
605
|
}
|
606
606
|
|
607
|
+
function writeSceneLog(logger, message, ...rest) {
|
608
|
+
let loggingEnabled = false;
|
609
|
+
if (typeof window !== "undefined") {
|
610
|
+
loggingEnabled = localStorage.getItem("grafana.debug.scenes") === "true";
|
611
|
+
}
|
612
|
+
if (loggingEnabled) {
|
613
|
+
console.log(`${logger}: `, message, ...rest);
|
614
|
+
}
|
615
|
+
}
|
616
|
+
|
617
|
+
var __accessCheck$3 = (obj, member, msg) => {
|
618
|
+
if (!member.has(obj))
|
619
|
+
throw TypeError("Cannot " + msg);
|
620
|
+
};
|
621
|
+
var __privateGet$3 = (obj, member, getter) => {
|
622
|
+
__accessCheck$3(obj, member, "read from private field");
|
623
|
+
return getter ? getter.call(obj) : member.get(obj);
|
624
|
+
};
|
625
|
+
var __privateAdd$3 = (obj, member, value) => {
|
626
|
+
if (member.has(obj))
|
627
|
+
throw TypeError("Cannot add the same private member more than once");
|
628
|
+
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
629
|
+
};
|
630
|
+
var __privateSet$3 = (obj, member, value, setter) => {
|
631
|
+
__accessCheck$3(obj, member, "write to private field");
|
632
|
+
setter ? setter.call(obj, value) : member.set(obj, value);
|
633
|
+
return value;
|
634
|
+
};
|
635
|
+
var _profileInProgress, _profileStartTs, _trailAnimationFrameId, _recordedTrailingSpans;
|
636
|
+
const POST_STORM_WINDOW = 2e3;
|
637
|
+
const SPAN_THRESHOLD = 30;
|
638
|
+
class SceneRenderProfiler {
|
639
|
+
constructor(queryController) {
|
640
|
+
this.queryController = queryController;
|
641
|
+
__privateAdd$3(this, _profileInProgress, null);
|
642
|
+
__privateAdd$3(this, _profileStartTs, null);
|
643
|
+
__privateAdd$3(this, _trailAnimationFrameId, null);
|
644
|
+
__privateAdd$3(this, _recordedTrailingSpans, []);
|
645
|
+
this.lastFrameTime = 0;
|
646
|
+
this.measureTrailingFrames = (measurementStartTs, lastFrameTime, profileStartTs) => {
|
647
|
+
const currentFrameTime = performance.now();
|
648
|
+
const frameLength = currentFrameTime - lastFrameTime;
|
649
|
+
__privateGet$3(this, _recordedTrailingSpans).push(frameLength);
|
650
|
+
if (currentFrameTime - measurementStartTs < POST_STORM_WINDOW) {
|
651
|
+
__privateSet$3(this, _trailAnimationFrameId, requestAnimationFrame(
|
652
|
+
() => this.measureTrailingFrames(measurementStartTs, currentFrameTime, profileStartTs)
|
653
|
+
));
|
654
|
+
} else {
|
655
|
+
const slowFrames = processRecordedSpans(__privateGet$3(this, _recordedTrailingSpans));
|
656
|
+
const slowFramesTime = slowFrames.reduce((acc, val) => acc + val, 0);
|
657
|
+
writeSceneLog(
|
658
|
+
this.constructor.name,
|
659
|
+
"Profile tail recorded, slow frames duration:",
|
660
|
+
slowFramesTime,
|
661
|
+
slowFrames,
|
662
|
+
__privateGet$3(this, _profileInProgress)
|
663
|
+
);
|
664
|
+
__privateSet$3(this, _recordedTrailingSpans, []);
|
665
|
+
const n = performance.now();
|
666
|
+
const profileDuration = measurementStartTs - profileStartTs;
|
667
|
+
writeSceneLog(
|
668
|
+
this.constructor.name,
|
669
|
+
"Stoped recording, total measured time (network included):",
|
670
|
+
profileDuration + slowFramesTime
|
671
|
+
);
|
672
|
+
__privateSet$3(this, _trailAnimationFrameId, null);
|
673
|
+
performance.measure("DashboardInteraction tail", {
|
674
|
+
start: measurementStartTs,
|
675
|
+
end: measurementStartTs + n
|
676
|
+
});
|
677
|
+
performance.measure("DashboardInteraction", {
|
678
|
+
start: profileStartTs,
|
679
|
+
end: profileStartTs + profileDuration + slowFramesTime
|
680
|
+
});
|
681
|
+
if (this.queryController.state.onProfileComplete) {
|
682
|
+
this.queryController.state.onProfileComplete({
|
683
|
+
origin: __privateGet$3(this, _profileInProgress).origin,
|
684
|
+
crumbs: __privateGet$3(this, _profileInProgress).crumbs,
|
685
|
+
duration: profileDuration + slowFramesTime
|
686
|
+
});
|
687
|
+
}
|
688
|
+
if (window.__runs) {
|
689
|
+
window.__runs += `${Date.now()}, ${profileDuration + slowFramesTime}
|
690
|
+
`;
|
691
|
+
} else {
|
692
|
+
window.__runs = `${Date.now()}, ${profileDuration + slowFramesTime}
|
693
|
+
`;
|
694
|
+
}
|
695
|
+
}
|
696
|
+
};
|
697
|
+
}
|
698
|
+
startProfile(name) {
|
699
|
+
if (__privateGet$3(this, _trailAnimationFrameId)) {
|
700
|
+
cancelAnimationFrame(__privateGet$3(this, _trailAnimationFrameId));
|
701
|
+
__privateSet$3(this, _trailAnimationFrameId, null);
|
702
|
+
writeSceneLog(this.constructor.name, "New profile: Stopped recording frames");
|
703
|
+
}
|
704
|
+
__privateSet$3(this, _profileInProgress, { origin: name, crumbs: [] });
|
705
|
+
__privateSet$3(this, _profileStartTs, performance.now());
|
706
|
+
writeSceneLog(this.constructor.name, "Profile started:", __privateGet$3(this, _profileInProgress), __privateGet$3(this, _profileStartTs));
|
707
|
+
}
|
708
|
+
recordProfileTail(measurementStartTime, profileStartTs) {
|
709
|
+
__privateSet$3(this, _trailAnimationFrameId, requestAnimationFrame(
|
710
|
+
() => this.measureTrailingFrames(measurementStartTime, measurementStartTime, profileStartTs)
|
711
|
+
));
|
712
|
+
}
|
713
|
+
tryCompletingProfile() {
|
714
|
+
writeSceneLog(this.constructor.name, "Trying to complete profile", __privateGet$3(this, _profileInProgress));
|
715
|
+
if (this.queryController.runningQueriesCount() === 0 && __privateGet$3(this, _profileInProgress)) {
|
716
|
+
writeSceneLog(this.constructor.name, "All queries completed, stopping profile");
|
717
|
+
this.recordProfileTail(performance.now(), __privateGet$3(this, _profileStartTs));
|
718
|
+
}
|
719
|
+
}
|
720
|
+
isTailRecording() {
|
721
|
+
return Boolean(__privateGet$3(this, _trailAnimationFrameId));
|
722
|
+
}
|
723
|
+
cancelTailRecording() {
|
724
|
+
if (__privateGet$3(this, _trailAnimationFrameId)) {
|
725
|
+
cancelAnimationFrame(__privateGet$3(this, _trailAnimationFrameId));
|
726
|
+
__privateSet$3(this, _trailAnimationFrameId, null);
|
727
|
+
writeSceneLog(this.constructor.name, "Cancelled recording frames, new profile started");
|
728
|
+
}
|
729
|
+
}
|
730
|
+
addCrumb(crumb) {
|
731
|
+
if (__privateGet$3(this, _profileInProgress)) {
|
732
|
+
__privateGet$3(this, _profileInProgress).crumbs.push(crumb);
|
733
|
+
}
|
734
|
+
}
|
735
|
+
}
|
736
|
+
_profileInProgress = new WeakMap();
|
737
|
+
_profileStartTs = new WeakMap();
|
738
|
+
_trailAnimationFrameId = new WeakMap();
|
739
|
+
_recordedTrailingSpans = new WeakMap();
|
740
|
+
function processRecordedSpans(spans) {
|
741
|
+
for (let i = spans.length - 1; i >= 0; i--) {
|
742
|
+
if (spans[i] > SPAN_THRESHOLD) {
|
743
|
+
return spans.slice(0, i + 1);
|
744
|
+
}
|
745
|
+
}
|
746
|
+
return [spans[0]];
|
747
|
+
}
|
748
|
+
|
749
|
+
var __defProp$G = Object.defineProperty;
|
750
|
+
var __defProps$s = Object.defineProperties;
|
751
|
+
var __getOwnPropDescs$s = Object.getOwnPropertyDescriptors;
|
752
|
+
var __getOwnPropSymbols$G = Object.getOwnPropertySymbols;
|
753
|
+
var __hasOwnProp$G = Object.prototype.hasOwnProperty;
|
754
|
+
var __propIsEnum$G = Object.prototype.propertyIsEnumerable;
|
755
|
+
var __defNormalProp$G = (obj, key, value) => key in obj ? __defProp$G(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
756
|
+
var __spreadValues$G = (a, b) => {
|
757
|
+
for (var prop in b || (b = {}))
|
758
|
+
if (__hasOwnProp$G.call(b, prop))
|
759
|
+
__defNormalProp$G(a, prop, b[prop]);
|
760
|
+
if (__getOwnPropSymbols$G)
|
761
|
+
for (var prop of __getOwnPropSymbols$G(b)) {
|
762
|
+
if (__propIsEnum$G.call(b, prop))
|
763
|
+
__defNormalProp$G(a, prop, b[prop]);
|
764
|
+
}
|
765
|
+
return a;
|
766
|
+
};
|
767
|
+
var __spreadProps$s = (a, b) => __defProps$s(a, __getOwnPropDescs$s(b));
|
768
|
+
var __accessCheck$2 = (obj, member, msg) => {
|
769
|
+
if (!member.has(obj))
|
770
|
+
throw TypeError("Cannot " + msg);
|
771
|
+
};
|
772
|
+
var __privateGet$2 = (obj, member, getter) => {
|
773
|
+
__accessCheck$2(obj, member, "read from private field");
|
774
|
+
return getter ? getter.call(obj) : member.get(obj);
|
775
|
+
};
|
776
|
+
var __privateAdd$2 = (obj, member, value) => {
|
777
|
+
if (member.has(obj))
|
778
|
+
throw TypeError("Cannot add the same private member more than once");
|
779
|
+
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
780
|
+
};
|
781
|
+
var __privateSet$2 = (obj, member, value, setter) => {
|
782
|
+
__accessCheck$2(obj, member, "write to private field");
|
783
|
+
setter ? setter.call(obj, value) : member.set(obj, value);
|
784
|
+
return value;
|
785
|
+
};
|
786
|
+
var _running, _tryCompleteProfileFrameId;
|
787
|
+
function isQueryController(s) {
|
788
|
+
return "isQueryController" in s;
|
789
|
+
}
|
790
|
+
class SceneQueryController extends SceneObjectBase {
|
791
|
+
constructor(state = {}) {
|
792
|
+
super(__spreadProps$s(__spreadValues$G({}, state), { isRunning: false }));
|
793
|
+
this.isQueryController = true;
|
794
|
+
this.profiler = new SceneRenderProfiler(this);
|
795
|
+
__privateAdd$2(this, _running, /* @__PURE__ */ new Set());
|
796
|
+
__privateAdd$2(this, _tryCompleteProfileFrameId, null);
|
797
|
+
this.runningQueriesCount = () => {
|
798
|
+
return __privateGet$2(this, _running).size;
|
799
|
+
};
|
800
|
+
this.addActivationHandler(() => {
|
801
|
+
return () => __privateGet$2(this, _running).clear();
|
802
|
+
});
|
803
|
+
}
|
804
|
+
startProfile(source) {
|
805
|
+
this.profiler.startProfile(source.constructor.name);
|
806
|
+
}
|
807
|
+
queryStarted(entry) {
|
808
|
+
__privateGet$2(this, _running).add(entry);
|
809
|
+
this.changeRunningQueryCount(1, entry);
|
810
|
+
if (!this.state.isRunning) {
|
811
|
+
this.setState({ isRunning: true });
|
812
|
+
}
|
813
|
+
}
|
814
|
+
queryCompleted(entry) {
|
815
|
+
if (!__privateGet$2(this, _running).has(entry)) {
|
816
|
+
return;
|
817
|
+
}
|
818
|
+
__privateGet$2(this, _running).delete(entry);
|
819
|
+
this.changeRunningQueryCount(-1);
|
820
|
+
if (__privateGet$2(this, _running).size === 0) {
|
821
|
+
this.setState({ isRunning: false });
|
822
|
+
}
|
823
|
+
}
|
824
|
+
changeRunningQueryCount(dir, entry) {
|
825
|
+
var _a;
|
826
|
+
window.__grafanaRunningQueryCount = ((_a = window.__grafanaRunningQueryCount) != null ? _a : 0) + dir;
|
827
|
+
if (dir === 1) {
|
828
|
+
if (entry) {
|
829
|
+
this.profiler.addCrumb(entry.origin.constructor.name);
|
830
|
+
}
|
831
|
+
if (this.profiler.isTailRecording()) {
|
832
|
+
writeSceneLog(this.constructor.name, "New query started, cancelling tail recording");
|
833
|
+
this.profiler.cancelTailRecording();
|
834
|
+
}
|
835
|
+
}
|
836
|
+
if (__privateGet$2(this, _tryCompleteProfileFrameId)) {
|
837
|
+
cancelAnimationFrame(__privateGet$2(this, _tryCompleteProfileFrameId));
|
838
|
+
}
|
839
|
+
__privateSet$2(this, _tryCompleteProfileFrameId, requestAnimationFrame(() => {
|
840
|
+
this.profiler.tryCompletingProfile();
|
841
|
+
}));
|
842
|
+
}
|
843
|
+
cancelAll() {
|
844
|
+
var _a;
|
845
|
+
for (const entry of __privateGet$2(this, _running).values()) {
|
846
|
+
(_a = entry.cancel) == null ? void 0 : _a.call(entry);
|
847
|
+
}
|
848
|
+
}
|
849
|
+
}
|
850
|
+
_running = new WeakMap();
|
851
|
+
_tryCompleteProfileFrameId = new WeakMap();
|
852
|
+
|
853
|
+
function getQueryController(sceneObject) {
|
854
|
+
let parent = sceneObject;
|
855
|
+
while (parent) {
|
856
|
+
if (parent.state.$behaviors) {
|
857
|
+
for (const behavior of parent.state.$behaviors) {
|
858
|
+
if (isQueryController(behavior)) {
|
859
|
+
return behavior;
|
860
|
+
}
|
861
|
+
}
|
862
|
+
}
|
863
|
+
parent = parent.parent;
|
864
|
+
}
|
865
|
+
return void 0;
|
866
|
+
}
|
867
|
+
|
607
868
|
var __defProp$F = Object.defineProperty;
|
608
869
|
var __getOwnPropSymbols$F = Object.getOwnPropertySymbols;
|
609
870
|
var __hasOwnProp$F = Object.prototype.hasOwnProperty;
|
@@ -760,6 +1021,8 @@ class SceneTimeRange extends SceneObjectBase {
|
|
760
1021
|
this.state.UNSAFE_nowDelay
|
761
1022
|
);
|
762
1023
|
if (update.from !== this.state.from || update.to !== this.state.to) {
|
1024
|
+
const queryController = getQueryController(this);
|
1025
|
+
queryController == null ? void 0 : queryController.startProfile(this);
|
763
1026
|
this.setState(update);
|
764
1027
|
}
|
765
1028
|
};
|
@@ -1782,62 +2045,6 @@ function isDataLayer(obj) {
|
|
1782
2045
|
return "isDataLayer" in obj;
|
1783
2046
|
}
|
1784
2047
|
|
1785
|
-
var __accessCheck$2 = (obj, member, msg) => {
|
1786
|
-
if (!member.has(obj))
|
1787
|
-
throw TypeError("Cannot " + msg);
|
1788
|
-
};
|
1789
|
-
var __privateGet$2 = (obj, member, getter) => {
|
1790
|
-
__accessCheck$2(obj, member, "read from private field");
|
1791
|
-
return getter ? getter.call(obj) : member.get(obj);
|
1792
|
-
};
|
1793
|
-
var __privateAdd$2 = (obj, member, value) => {
|
1794
|
-
if (member.has(obj))
|
1795
|
-
throw TypeError("Cannot add the same private member more than once");
|
1796
|
-
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
1797
|
-
};
|
1798
|
-
var _running;
|
1799
|
-
function isQueryController(s) {
|
1800
|
-
return "isQueryController" in s;
|
1801
|
-
}
|
1802
|
-
class SceneQueryController extends SceneObjectBase {
|
1803
|
-
constructor() {
|
1804
|
-
super({ isRunning: false });
|
1805
|
-
this.isQueryController = true;
|
1806
|
-
__privateAdd$2(this, _running, /* @__PURE__ */ new Set());
|
1807
|
-
this.addActivationHandler(() => {
|
1808
|
-
return () => __privateGet$2(this, _running).clear();
|
1809
|
-
});
|
1810
|
-
}
|
1811
|
-
queryStarted(entry) {
|
1812
|
-
__privateGet$2(this, _running).add(entry);
|
1813
|
-
this.changeRunningQueryCount(1);
|
1814
|
-
if (!this.state.isRunning) {
|
1815
|
-
this.setState({ isRunning: true });
|
1816
|
-
}
|
1817
|
-
}
|
1818
|
-
queryCompleted(entry) {
|
1819
|
-
if (!__privateGet$2(this, _running).has(entry)) {
|
1820
|
-
return;
|
1821
|
-
}
|
1822
|
-
__privateGet$2(this, _running).delete(entry);
|
1823
|
-
this.changeRunningQueryCount(-1);
|
1824
|
-
if (__privateGet$2(this, _running).size === 0) {
|
1825
|
-
this.setState({ isRunning: false });
|
1826
|
-
}
|
1827
|
-
}
|
1828
|
-
changeRunningQueryCount(dir) {
|
1829
|
-
var _a;
|
1830
|
-
window.__grafanaRunningQueryCount = ((_a = window.__grafanaRunningQueryCount) != null ? _a : 0) + dir;
|
1831
|
-
}
|
1832
|
-
cancelAll() {
|
1833
|
-
var _a;
|
1834
|
-
for (const entry of __privateGet$2(this, _running).values()) {
|
1835
|
-
(_a = entry.cancel) == null ? void 0 : _a.call(entry);
|
1836
|
-
}
|
1837
|
-
}
|
1838
|
-
}
|
1839
|
-
_running = new WeakMap();
|
1840
|
-
|
1841
2048
|
function getVariables(sceneObject) {
|
1842
2049
|
var _a;
|
1843
2050
|
return (_a = getClosest(sceneObject, (s) => s.state.$variables)) != null ? _a : EmptyVariableSet;
|
@@ -1970,20 +2177,6 @@ function getAncestor(sceneObject, ancestorType) {
|
|
1970
2177
|
}
|
1971
2178
|
return parent;
|
1972
2179
|
}
|
1973
|
-
function getQueryController(sceneObject) {
|
1974
|
-
let parent = sceneObject;
|
1975
|
-
while (parent) {
|
1976
|
-
if (parent.state.$behaviors) {
|
1977
|
-
for (const behavior of parent.state.$behaviors) {
|
1978
|
-
if (isQueryController(behavior)) {
|
1979
|
-
return behavior;
|
1980
|
-
}
|
1981
|
-
}
|
1982
|
-
}
|
1983
|
-
parent = parent.parent;
|
1984
|
-
}
|
1985
|
-
return void 0;
|
1986
|
-
}
|
1987
2180
|
|
1988
2181
|
const sceneGraph = {
|
1989
2182
|
getVariables,
|
@@ -2126,16 +2319,6 @@ async function getDataSource(datasource, scopedVars) {
|
|
2126
2319
|
return await runtime.getDataSourceSrv().get(datasource, scopedVars);
|
2127
2320
|
}
|
2128
2321
|
|
2129
|
-
function writeSceneLog(logger, message, ...rest) {
|
2130
|
-
let loggingEnabled = false;
|
2131
|
-
if (typeof window !== "undefined") {
|
2132
|
-
loggingEnabled = localStorage.getItem("grafana.debug.scenes") === "true";
|
2133
|
-
}
|
2134
|
-
if (loggingEnabled) {
|
2135
|
-
console.log(`${logger}: `, message, ...rest);
|
2136
|
-
}
|
2137
|
-
}
|
2138
|
-
|
2139
2322
|
class VariableDependencyConfig {
|
2140
2323
|
constructor(_sceneObject, _options) {
|
2141
2324
|
this._sceneObject = _sceneObject;
|
@@ -2903,6 +3086,7 @@ function VariableValueSelect({ model }) {
|
|
2903
3086
|
const [inputValue, setInputValue] = React.useState("");
|
2904
3087
|
const [hasCustomValue, setHasCustomValue] = React.useState(false);
|
2905
3088
|
const selectValue = toSelectableValue$2(value, String(text));
|
3089
|
+
const queryController = sceneGraph.getQueryController(model);
|
2906
3090
|
const optionSearcher = React.useMemo(() => getOptionSearcher(options, includeAll), [options, includeAll]);
|
2907
3091
|
const onInputChange = (value2, { action }) => {
|
2908
3092
|
if (action === "input-change") {
|
@@ -2942,6 +3126,7 @@ function VariableValueSelect({ model }) {
|
|
2942
3126
|
"data-testid": e2eSelectors.selectors.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts(`${value}`),
|
2943
3127
|
onChange: (newValue) => {
|
2944
3128
|
model.changeValueTo(newValue.value, newValue.label);
|
3129
|
+
queryController == null ? void 0 : queryController.startProfile(model);
|
2945
3130
|
if (hasCustomValue !== newValue.__isNew__) {
|
2946
3131
|
setHasCustomValue(newValue.__isNew__);
|
2947
3132
|
}
|
@@ -2953,6 +3138,7 @@ function VariableValueSelectMulti({ model }) {
|
|
2953
3138
|
const arrayValue = React.useMemo(() => lodash.isArray(value) ? value : [value], [value]);
|
2954
3139
|
const [uncommittedValue, setUncommittedValue] = React.useState(arrayValue);
|
2955
3140
|
const [inputValue, setInputValue] = React.useState("");
|
3141
|
+
const queryController = sceneGraph.getQueryController(model);
|
2956
3142
|
const optionSearcher = React.useMemo(() => getOptionSearcher(options, includeAll), [options, includeAll]);
|
2957
3143
|
React.useEffect(() => {
|
2958
3144
|
setUncommittedValue(arrayValue);
|
@@ -2993,6 +3179,7 @@ function VariableValueSelectMulti({ model }) {
|
|
2993
3179
|
onInputChange,
|
2994
3180
|
onBlur: () => {
|
2995
3181
|
model.changeValueTo(uncommittedValue);
|
3182
|
+
queryController == null ? void 0 : queryController.startProfile(model);
|
2996
3183
|
},
|
2997
3184
|
filterOption: filterNoOp$2,
|
2998
3185
|
"data-testid": e2eSelectors.selectors.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts(`${uncommittedValue}`),
|
@@ -9273,6 +9460,7 @@ class SceneRefreshPicker extends SceneObjectBase {
|
|
9273
9460
|
this._urlSync = new SceneObjectUrlSyncConfig(this, { keys: ["refresh"] });
|
9274
9461
|
this.onRefresh = () => {
|
9275
9462
|
const queryController = sceneGraph.getQueryController(this);
|
9463
|
+
queryController == null ? void 0 : queryController.startProfile(this);
|
9276
9464
|
if (queryController == null ? void 0 : queryController.state.isRunning) {
|
9277
9465
|
queryController.cancelAll();
|
9278
9466
|
return;
|
@@ -9363,12 +9551,6 @@ function SceneRefreshPickerRenderer({ model }) {
|
|
9363
9551
|
let text = refresh === ((_a = ui.RefreshPicker.autoOption) == null ? void 0 : _a.value) ? autoValue : withText ? "Refresh" : void 0;
|
9364
9552
|
let tooltip;
|
9365
9553
|
let width;
|
9366
|
-
if (isRunning) {
|
9367
|
-
tooltip = "Cancel all queries";
|
9368
|
-
if (withText) {
|
9369
|
-
text = "Cancel";
|
9370
|
-
}
|
9371
|
-
}
|
9372
9554
|
if (withText) {
|
9373
9555
|
width = "96px";
|
9374
9556
|
}
|
@@ -9379,7 +9561,9 @@ function SceneRefreshPickerRenderer({ model }) {
|
|
9379
9561
|
tooltip,
|
9380
9562
|
width,
|
9381
9563
|
text,
|
9382
|
-
onRefresh:
|
9564
|
+
onRefresh: () => {
|
9565
|
+
model.onRefresh();
|
9566
|
+
},
|
9383
9567
|
primary,
|
9384
9568
|
onIntervalChanged: model.onIntervalChanged,
|
9385
9569
|
isLoading: isRunning,
|