feat: Add 'local service' monitor type

This adds a new monitor type to check local services by executing a shell command. It also includes fixes for Prometheus errors when adding new tags and for the UI not updating when tags are changed.
This commit is contained in:
iotux
2025-12-14 16:39:00 +01:00
parent 883083f5c3
commit 7461bd296f
8 changed files with 225 additions and 39 deletions
+7
View File
@@ -13,6 +13,13 @@ const viteCompressionFilter = /\.(js|mjs|json|css|html|svg)$/i;
export default defineConfig({
server: {
port: 3000,
watch: {
ignored: [
"**/node_modules/**",
"**/dist/**",
"**/data/**",
],
},
},
define: {
"FRONTEND_VERSION": JSON.stringify(process.env.npm_package_version),