Skip to content

Commit

Permalink
Add druid monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
tangllty committed May 17, 2024
1 parent f3d72ae commit ee7f5d0
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@

* Add sync database table column
* Add monaco editor
* Add druid monitor
* Support global sort query
* Support MyBatis Flex
24 changes: 24 additions & 0 deletions src/views/monitor/druid/index.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<template>
<iframe
:src="url"
frameborder="no"
style="height: 100%; width: 100%;"
/>
</template>

<script lang="ts" setup>
import { getProxy } from '@/utils/getCurrentInstance'
const proxy = getProxy()
const state = reactive({
url: import.meta.env.VITE_APP_BASE_API + '/druid'
})
const {
url
} = toRefs(state)
</script>

<style lang="scss" scoped>
</style>

0 comments on commit ee7f5d0

Please sign in to comment.