Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add instance info field #808

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ public class MonitorInstance {
private String instance;

private String instanceName;
private String instanceType;
private String instanceInfo;

/**
* 实例类型
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* Copyright 2022 Holoinsight Project Authors. Licensed under Apache-2.0.
*/

-- ----------------------------
-- Table structure for monitor_instance
-- ----------------------------
ALTER TABLE `monitor_instance`
ADD COLUMN `instance_type` varchar(255) NULL DEFAULT NULL comment '实例类型';
ALTER TABLE `monitor_instance`
ADD COLUMN `instance_info` mediumtext NULL comment '实例配置详情';
Loading