From 2746a534149c15e4085c3b7815837e5055be2871 Mon Sep 17 00:00:00 2001 From: zhanghan2021 Date: Tue, 3 Dec 2024 13:59:53 +0800 Subject: [PATCH] add copyright info for atune plugin --- server/config/config.go | 7 +++++++ server/controller/atunemanage.go | 7 +++++++ server/controller/runresult.go | 7 +++++++ server/controller/task.go | 7 +++++++ server/controller/tune.go | 7 +++++++ server/dao/atunemanagedao.go | 7 +++++++ server/dao/resultanalysis.go | 7 +++++++ server/dao/runresultdao.go | 7 +++++++ server/dao/taskdao.go | 7 +++++++ server/dao/tunedao.go | 7 +++++++ server/db/db.go | 7 +++++++ server/main.go | 7 +++++++ server/model/common.go | 7 +++++++ server/plugin/plugin_manager.go | 7 +++++++ server/router/router.go | 7 +++++++ server/service/atunemanageservice.go | 7 +++++++ server/service/extentions.go | 7 +++++++ server/service/fileservice.go | 7 +++++++ server/service/resultanalysis.go | 7 +++++++ server/service/resultservice.go | 7 +++++++ server/service/tags.go | 7 +++++++ server/service/taskservice.go | 7 +++++++ server/service/tuneservice.go | 7 +++++++ server/template/enter_tune.go | 7 +++++++ server/template/tune/common.go | 7 +++++++ server/template/tune/compress.go | 7 +++++++ server/template/tune/compress_Except.go | 7 +++++++ server/template/tune/ffmpeg.go | 7 +++++++ server/template/tune/fio.go | 7 +++++++ server/template/tune/gcc_compile.go | 7 +++++++ server/template/tune/go_gc.go | 7 +++++++ server/template/tune/graphicsmagick.go | 7 +++++++ server/template/tune/iozone.go | 7 +++++++ server/template/tune/kafka.go | 7 +++++++ server/template/tune/key_parameters_select.go | 7 +++++++ .../template/tune/key_parameters_select_variant.go | 7 +++++++ server/template/tune/mariadb.go | 7 +++++++ server/template/tune/memcached.go | 7 +++++++ server/template/tune/memory.go | 7 +++++++ server/template/tune/mysql_sysbench.go | 7 +++++++ server/template/tune/nginx.go | 7 +++++++ server/template/tune/openGauss.go | 7 +++++++ server/template/tune/redis.go | 7 +++++++ server/template/tune/spark.go | 7 +++++++ server/template/tune/tensorflow_train.go | 7 +++++++ server/template/tune/tidb.go | 7 +++++++ server/template/tune/tomcat.go | 7 +++++++ web/index.html | 7 +++++++ web/src/App.vue | 7 +++++++ web/src/api/atune.ts | 7 +++++++ web/src/api/request.ts | 7 +++++++ web/src/api/result.ts | 7 +++++++ web/src/assets/main.css | 14 ++++++++++++-- web/src/components/atuneTemplete.vue | 7 +++++++ web/src/components/myButton.vue | 7 +++++++ web/src/components/table.vue | 7 +++++++ web/src/main.ts | 7 +++++++ web/src/router/index.ts | 7 +++++++ web/src/store/atune.ts | 7 +++++++ web/src/store/index.ts | 7 +++++++ web/src/store/router.ts | 7 +++++++ web/src/types/atune.d.ts | 7 +++++++ web/src/views/Home.vue | 7 +++++++ web/src/views/atuneDetail.vue | 7 +++++++ web/src/views/atuneList.vue | 7 +++++++ web/src/views/task/taskForm.vue | 7 +++++++ web/src/views/task/tuneResult.vue | 7 +++++++ web/src/views/taskDetail.vue | 7 +++++++ web/src/views/taskList.vue | 7 +++++++ web/src/vite-env.d.ts | 7 +++++++ web/vite.config.ts | 7 +++++++ 71 files changed, 502 insertions(+), 2 deletions(-) diff --git a/server/config/config.go b/server/config/config.go index bc46a6b..0625dc4 100644 --- a/server/config/config.go +++ b/server/config/config.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package config import ( diff --git a/server/controller/atunemanage.go b/server/controller/atunemanage.go index ed1b2ad..6e89937 100644 --- a/server/controller/atunemanage.go +++ b/server/controller/atunemanage.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package controller import ( diff --git a/server/controller/runresult.go b/server/controller/runresult.go index 72133f4..12d66c0 100644 --- a/server/controller/runresult.go +++ b/server/controller/runresult.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package controller import ( diff --git a/server/controller/task.go b/server/controller/task.go index 04e2718..6208744 100644 --- a/server/controller/task.go +++ b/server/controller/task.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package controller import ( diff --git a/server/controller/tune.go b/server/controller/tune.go index 66db9cd..865303a 100644 --- a/server/controller/tune.go +++ b/server/controller/tune.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package controller import ( diff --git a/server/dao/atunemanagedao.go b/server/dao/atunemanagedao.go index 010eced..d3311b2 100644 --- a/server/dao/atunemanagedao.go +++ b/server/dao/atunemanagedao.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package dao import ( diff --git a/server/dao/resultanalysis.go b/server/dao/resultanalysis.go index c8e883a..879ac3d 100644 --- a/server/dao/resultanalysis.go +++ b/server/dao/resultanalysis.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 26 15:04:04 2024 +0800 + */ package dao import ( diff --git a/server/dao/runresultdao.go b/server/dao/runresultdao.go index 085298f..4130f5a 100644 --- a/server/dao/runresultdao.go +++ b/server/dao/runresultdao.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package dao import ( diff --git a/server/dao/taskdao.go b/server/dao/taskdao.go index f15bc61..4ad7a7a 100644 --- a/server/dao/taskdao.go +++ b/server/dao/taskdao.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package dao import ( diff --git a/server/dao/tunedao.go b/server/dao/tunedao.go index 774a52f..578d9c4 100644 --- a/server/dao/tunedao.go +++ b/server/dao/tunedao.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package dao import ( diff --git a/server/db/db.go b/server/db/db.go index 1331878..1fedec2 100644 --- a/server/db/db.go +++ b/server/db/db.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package db import ( diff --git a/server/main.go b/server/main.go index 16eaf29..ed6f80d 100644 --- a/server/main.go +++ b/server/main.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package main import ( diff --git a/server/model/common.go b/server/model/common.go index b8897fe..f0f9d10 100644 --- a/server/model/common.go +++ b/server/model/common.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package model type Tunes struct { diff --git a/server/plugin/plugin_manager.go b/server/plugin/plugin_manager.go index c65833a..32a0bab 100644 --- a/server/plugin/plugin_manager.go +++ b/server/plugin/plugin_manager.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package plugin import ( diff --git a/server/router/router.go b/server/router/router.go index bc4c3b9..b0c8969 100644 --- a/server/router/router.go +++ b/server/router/router.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package router import ( diff --git a/server/service/atunemanageservice.go b/server/service/atunemanageservice.go index 13d8d6e..da31347 100644 --- a/server/service/atunemanageservice.go +++ b/server/service/atunemanageservice.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package service import ( diff --git a/server/service/extentions.go b/server/service/extentions.go index 43ad6e8..eca04a5 100644 --- a/server/service/extentions.go +++ b/server/service/extentions.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package service import ( diff --git a/server/service/fileservice.go b/server/service/fileservice.go index bcd329e..6fb5f35 100644 --- a/server/service/fileservice.go +++ b/server/service/fileservice.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package service import ( diff --git a/server/service/resultanalysis.go b/server/service/resultanalysis.go index d6f982d..9e2a705 100644 --- a/server/service/resultanalysis.go +++ b/server/service/resultanalysis.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 26 15:04:04 2024 +0800 + */ package service import ( diff --git a/server/service/resultservice.go b/server/service/resultservice.go index a6b5c05..3197679 100644 --- a/server/service/resultservice.go +++ b/server/service/resultservice.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package service import ( diff --git a/server/service/tags.go b/server/service/tags.go index a65f421..f1a117f 100644 --- a/server/service/tags.go +++ b/server/service/tags.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package service import ( diff --git a/server/service/taskservice.go b/server/service/taskservice.go index 941daad..2a7cb16 100644 --- a/server/service/taskservice.go +++ b/server/service/taskservice.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package service import ( diff --git a/server/service/tuneservice.go b/server/service/tuneservice.go index 9aaabef..d333425 100644 --- a/server/service/tuneservice.go +++ b/server/service/tuneservice.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package service import ( diff --git a/server/template/enter_tune.go b/server/template/enter_tune.go index cc87beb..720e995 100644 --- a/server/template/enter_tune.go +++ b/server/template/enter_tune.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package template import "openeuler.org/PilotGo/atune-plugin/template/tune" diff --git a/server/template/tune/common.go b/server/template/tune/common.go index 5c9ba4f..92dc371 100644 --- a/server/template/tune/common.go +++ b/server/template/tune/common.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune var TuneGroupApp = new(TuneGroup) diff --git a/server/template/tune/compress.go b/server/template/tune/compress.go index 40f502e..fec01ab 100644 --- a/server/template/tune/compress.go +++ b/server/template/tune/compress.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/compress_Except.go b/server/template/tune/compress_Except.go index 18ab1f5..447e03d 100644 --- a/server/template/tune/compress_Except.go +++ b/server/template/tune/compress_Except.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/ffmpeg.go b/server/template/tune/ffmpeg.go index 37883df..a19c074 100644 --- a/server/template/tune/ffmpeg.go +++ b/server/template/tune/ffmpeg.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/fio.go b/server/template/tune/fio.go index 6319fba..e538cc7 100644 --- a/server/template/tune/fio.go +++ b/server/template/tune/fio.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/gcc_compile.go b/server/template/tune/gcc_compile.go index 6ca5d8f..abac9f2 100644 --- a/server/template/tune/gcc_compile.go +++ b/server/template/tune/gcc_compile.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/go_gc.go b/server/template/tune/go_gc.go index 2d88115..259c3f4 100644 --- a/server/template/tune/go_gc.go +++ b/server/template/tune/go_gc.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/graphicsmagick.go b/server/template/tune/graphicsmagick.go index e974918..9c85593 100644 --- a/server/template/tune/graphicsmagick.go +++ b/server/template/tune/graphicsmagick.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/iozone.go b/server/template/tune/iozone.go index d01cfdf..af7d20f 100644 --- a/server/template/tune/iozone.go +++ b/server/template/tune/iozone.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/kafka.go b/server/template/tune/kafka.go index 1bc40ea..9cf8065 100644 --- a/server/template/tune/kafka.go +++ b/server/template/tune/kafka.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/key_parameters_select.go b/server/template/tune/key_parameters_select.go index d113420..610916c 100644 --- a/server/template/tune/key_parameters_select.go +++ b/server/template/tune/key_parameters_select.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/key_parameters_select_variant.go b/server/template/tune/key_parameters_select_variant.go index 8550f23..f94d179 100644 --- a/server/template/tune/key_parameters_select_variant.go +++ b/server/template/tune/key_parameters_select_variant.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/mariadb.go b/server/template/tune/mariadb.go index 656b092..14195ea 100644 --- a/server/template/tune/mariadb.go +++ b/server/template/tune/mariadb.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/memcached.go b/server/template/tune/memcached.go index 1d2ab5f..c636a37 100644 --- a/server/template/tune/memcached.go +++ b/server/template/tune/memcached.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/memory.go b/server/template/tune/memory.go index 0ed1cf7..8bf5a66 100644 --- a/server/template/tune/memory.go +++ b/server/template/tune/memory.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/mysql_sysbench.go b/server/template/tune/mysql_sysbench.go index 4101f5b..5929c03 100644 --- a/server/template/tune/mysql_sysbench.go +++ b/server/template/tune/mysql_sysbench.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/nginx.go b/server/template/tune/nginx.go index 1de1639..328535c 100644 --- a/server/template/tune/nginx.go +++ b/server/template/tune/nginx.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/openGauss.go b/server/template/tune/openGauss.go index 648ec5d..aee18dd 100644 --- a/server/template/tune/openGauss.go +++ b/server/template/tune/openGauss.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/redis.go b/server/template/tune/redis.go index d5d07cd..a7c055e 100644 --- a/server/template/tune/redis.go +++ b/server/template/tune/redis.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/spark.go b/server/template/tune/spark.go index b4cf774..ce438cb 100644 --- a/server/template/tune/spark.go +++ b/server/template/tune/spark.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/tensorflow_train.go b/server/template/tune/tensorflow_train.go index 0ba6a8b..34872db 100644 --- a/server/template/tune/tensorflow_train.go +++ b/server/template/tune/tensorflow_train.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/tidb.go b/server/template/tune/tidb.go index d227469..f9e2c77 100644 --- a/server/template/tune/tidb.go +++ b/server/template/tune/tidb.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/server/template/tune/tomcat.go b/server/template/tune/tomcat.go index 3f96cb6..2a3b8a1 100644 --- a/server/template/tune/tomcat.go +++ b/server/template/tune/tomcat.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-a-tune licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: zhanghan2021 + * Date: Fri Jan 12 14:12:37 2024 +0800 + */ package tune import "openeuler.org/PilotGo/atune-plugin/plugin" diff --git a/web/index.html b/web/index.html index 13d0e32..4c16c6c 100644 --- a/web/index.html +++ b/web/index.html @@ -1,3 +1,10 @@ + diff --git a/web/src/App.vue b/web/src/App.vue index 9c0a8af..787358d 100644 --- a/web/src/App.vue +++ b/web/src/App.vue @@ -1,3 +1,10 @@ +