diff --git a/src/views/dashboard/controls/Event.vue b/src/views/dashboard/controls/Event.vue
new file mode 100644
index 00000000..e18c7694
--- /dev/null
+++ b/src/views/dashboard/controls/Event.vue
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+ {{ t("delete") }}
+
+
+
+
+
diff --git a/src/views/dashboard/controls/Tab.vue b/src/views/dashboard/controls/Tab.vue
index 2efe3419..4bedfd5f 100644
--- a/src/views/dashboard/controls/Tab.vue
+++ b/src/views/dashboard/controls/Tab.vue
@@ -117,6 +117,7 @@ import Profile from "./Profile.vue";
import Log from "./Log.vue";
import Text from "./Text.vue";
import Ebpf from "./Ebpf.vue";
+import Event from "./Event.vue";
import { dragIgnoreFrom } from "../data";
import DemandLog from "./DemandLog.vue";
import copy from "@/utils/copy";
@@ -130,7 +131,17 @@ const props = {
};
export default defineComponent({
name: "Tab",
- components: { Topology, Widget, Trace, Profile, Log, Text, Ebpf, DemandLog },
+ components: {
+ Topology,
+ Widget,
+ Trace,
+ Profile,
+ Log,
+ Text,
+ Ebpf,
+ DemandLog,
+ Event,
+ },
props,
setup(props) {
const { t } = useI18n();
diff --git a/src/views/dashboard/controls/index.ts b/src/views/dashboard/controls/index.ts
index 858bc5c5..8130b98c 100644
--- a/src/views/dashboard/controls/index.ts
+++ b/src/views/dashboard/controls/index.ts
@@ -23,6 +23,7 @@ import Log from "./Log.vue";
import Text from "./Text.vue";
import Ebpf from "./Ebpf.vue";
import DemandLog from "./DemandLog.vue";
+import Event from "./Event.vue";
export default {
Tab,
@@ -34,4 +35,5 @@ export default {
Text,
Ebpf,
DemandLog,
+ Event,
};