mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-10-14 20:01:28 +00:00
feat: Implement visualizing events with a timeline. (#25)
This commit is contained in:
16
src/types/events.d.ts
vendored
16
src/types/events.d.ts
vendored
@@ -27,3 +27,19 @@ export type Event = {
|
||||
checked?: boolean;
|
||||
scope?: string;
|
||||
};
|
||||
|
||||
export interface QueryEventCondition {
|
||||
uuid: string;
|
||||
source: SourceInput;
|
||||
name: string;
|
||||
type: EventType;
|
||||
time: Duration;
|
||||
order: string;
|
||||
paging: { pageNum: number; pageSize: number; needTotal: boolean };
|
||||
}
|
||||
|
||||
type SourceInput = {
|
||||
service: string;
|
||||
serviceInstance: string;
|
||||
endpoint: string;
|
||||
};
|
||||
|
Reference in New Issue
Block a user