chore: flyway prometheus host
This commit is contained in:
parent
74c9014dbf
commit
4f962098fb
|
@ -328,7 +328,7 @@ VALUES (UUID_SHORT(), 'project_member', 'PROJECT_TEST_PLAN:READ+EXECUTE');
|
||||||
-- 初始化当前站点配置
|
-- 初始化当前站点配置
|
||||||
INSERT into system_parameter values('base.url', 'http://127.0.0.1:8081', 'text');
|
INSERT into system_parameter values('base.url', 'http://127.0.0.1:8081', 'text');
|
||||||
-- 初始化prometheus站点配置
|
-- 初始化prometheus站点配置
|
||||||
INSERT into system_parameter values('base.prometheus.host', 'http://ms-prometheus:9090', 'text');
|
INSERT into system_parameter values('base.prometheus.host', 'http://prometheus:9090', 'text');
|
||||||
|
|
||||||
-- 初始化资源池
|
-- 初始化资源池
|
||||||
INSERT INTO test_resource_pool (id, name, type, description, enable, create_time, update_time, create_user, api_test, load_test, ui_test, all_org, deleted) VALUES (uuid_short(), 'LOCAL', 'Node', '系统初始化资源池', true, UNIX_TIMESTAMP() * 1000, UNIX_TIMESTAMP() * 1000, 'admin', true, true, true, true, false);
|
INSERT INTO test_resource_pool (id, name, type, description, enable, create_time, update_time, create_user, api_test, load_test, ui_test, all_org, deleted) VALUES (uuid_short(), 'LOCAL', 'Node', '系统初始化资源池', true, UNIX_TIMESTAMP() * 1000, UNIX_TIMESTAMP() * 1000, 'admin', true, true, true, true, false);
|
||||||
|
|
|
@ -222,13 +222,13 @@
|
||||||
const baseFormRef = ref<FormInstance>();
|
const baseFormRef = ref<FormInstance>();
|
||||||
const baseInfo = ref({
|
const baseInfo = ref({
|
||||||
url: 'http://127.0.0.1:8081',
|
url: 'http://127.0.0.1:8081',
|
||||||
prometheusHost: 'http://ms-prometheus:9090',
|
prometheusHost: 'http://prometheus:9090',
|
||||||
});
|
});
|
||||||
const baseInfoForm = ref({ ...baseInfo.value });
|
const baseInfoForm = ref({ ...baseInfo.value });
|
||||||
const baseInfoDescs = ref<Description[]>([]);
|
const baseInfoDescs = ref<Description[]>([]);
|
||||||
// 默认示例
|
// 默认示例
|
||||||
const defaultUrl = 'https://metersphere.com';
|
const defaultUrl = 'https://metersphere.com';
|
||||||
const defaultPrometheus = 'http://ms-prometheus:9090';
|
const defaultPrometheus = 'http://prometheus:9090';
|
||||||
|
|
||||||
function fillDefaultUrl() {
|
function fillDefaultUrl() {
|
||||||
baseInfoForm.value.url = defaultUrl;
|
baseInfoForm.value.url = defaultUrl;
|
||||||
|
|
Loading…
Reference in New Issue