mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-10-14 20:01:28 +00:00
feat: remove metric name from queries (#275)
This commit is contained in:
3
src/types/app.d.ts
vendored
3
src/types/app.d.ts
vendored
@@ -42,8 +42,7 @@ export type EventParams = {
|
||||
dataIndex: number;
|
||||
data: unknown;
|
||||
dataType: string;
|
||||
value: number | Array;
|
||||
value: number | any[];
|
||||
color: string;
|
||||
event: any;
|
||||
dataIndex: number;
|
||||
};
|
||||
|
6
src/types/dashboard.d.ts
vendored
6
src/types/dashboard.d.ts
vendored
@@ -14,7 +14,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { DurationTime } from "./app";
|
||||
export type DashboardItem = {
|
||||
id?: string;
|
||||
entity: string;
|
||||
@@ -75,8 +75,8 @@ export type MetricConfigOpt = {
|
||||
unit?: string;
|
||||
label?: string;
|
||||
calculation?: string;
|
||||
labelsIndex: string;
|
||||
sortOrder: string;
|
||||
labelsIndex?: string;
|
||||
sortOrder?: string;
|
||||
topN?: number;
|
||||
index?: number;
|
||||
};
|
||||
|
Reference in New Issue
Block a user