From 3e75c55c896327ac86413bbf49bfd107a6ce5168 Mon Sep 17 00:00:00 2001 From: Wangjunqi123 Date: Tue, 3 Dec 2024 10:09:13 +0800 Subject: [PATCH] add copyright information --- server/conf/config.go | 7 +++++++ server/conf/meta.go | 7 +++++++ server/db/dbmanager.go | 7 +++++++ server/elasticClient/client.go | 7 +++++++ server/errormanager/errormanager.go | 7 +++++++ server/errormanager/meta.go | 7 +++++++ server/global/IsIPandPORTValid.go | 7 +++++++ server/global/file.go | 7 +++++++ server/global/globalConst.go | 7 +++++++ server/global/random.go | 7 +++++++ server/global/readjson.go | 7 +++++++ server/global/timeProcess.go | 7 +++++++ server/handler/advanceSearch.go | 7 +++++++ server/handler/advanceSearch_test.go | 7 +++++++ server/handler/meta.go | 7 +++++++ server/handler/policyHandle.go | 7 +++++++ server/handler/router.go | 7 +++++++ server/handler/search.go | 7 +++++++ server/handler/searchHandle.go | 7 +++++++ server/handler/static.go | 7 +++++++ server/kibanaClient/7_17_16/client.go | 7 +++++++ server/kibanaClient/7_17_16/clientFleetAPI+.go | 7 +++++++ server/kibanaClient/7_17_16/gjsonProcess.go | 7 +++++++ server/kibanaClient/7_17_16/meta/extraPath.go | 7 +++++++ server/kibanaClient/7_17_16/meta/packageInfo.go | 7 +++++++ server/kibanaClient/7_17_16/meta/packagePolicy.go | 7 +++++++ server/kibanaClient/7_17_16/meta/settings.go | 7 +++++++ server/kibanaClient/8_13_0/client.go | 7 +++++++ server/kibanaClient/8_13_0/clientFleetAPI+.go | 7 +++++++ server/kibanaClient/8_13_0/gjsonProcess.go | 7 +++++++ server/kibanaClient/8_13_0/meta/packagePolicy.go | 7 +++++++ server/kibanaClient/8_13_0/meta/packageinfo.go | 7 +++++++ server/logger/sdkLogger.go | 7 +++++++ server/main.go | 7 +++++++ server/pluginclient/meta.go | 7 +++++++ server/pluginclient/pluginClient.go | 7 +++++++ server/service/dao/indexManager.go | 7 +++++++ server/service/dao/searchtest.go | 7 +++++++ server/service/log/LogStream.go | 7 +++++++ server/service/log/LogTimeAixs.go | 7 +++++++ server/service/log/meta.go | 7 +++++++ server/service/model/SearchParams.go | 7 +++++++ server/service/template/meta.go | 7 +++++++ server/service/template/template.go | 7 +++++++ server/signal/signalMonitor.go | 7 +++++++ web/index.html | 7 +++++++ web/src/App.vue | 7 +++++++ web/src/api/index.ts | 7 +++++++ web/src/api/request.ts | 7 +++++++ web/src/main.ts | 7 +++++++ web/src/router/index.ts | 7 +++++++ web/src/store/index.ts | 7 +++++++ web/src/views/Home.vue | 7 +++++++ web/src/vite-env.d.ts | 7 +++++++ web/vite.config.ts | 7 +++++++ 55 files changed, 385 insertions(+) diff --git a/server/conf/config.go b/server/conf/config.go index 9128250..e72ff22 100644 --- a/server/conf/config.go +++ b/server/conf/config.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package conf import ( diff --git a/server/conf/meta.go b/server/conf/meta.go index 7a0ee64..ee9fa37 100644 --- a/server/conf/meta.go +++ b/server/conf/meta.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package conf type ElkConf struct { diff --git a/server/db/dbmanager.go b/server/db/dbmanager.go index ed1d276..b667640 100644 --- a/server/db/dbmanager.go +++ b/server/db/dbmanager.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package db func InitDB() { diff --git a/server/elasticClient/client.go b/server/elasticClient/client.go index 2950026..54eddc1 100755 --- a/server/elasticClient/client.go +++ b/server/elasticClient/client.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package elasticClient import ( diff --git a/server/errormanager/errormanager.go b/server/errormanager/errormanager.go index f086a1e..63f3473 100644 --- a/server/errormanager/errormanager.go +++ b/server/errormanager/errormanager.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package errormanager import ( diff --git a/server/errormanager/meta.go b/server/errormanager/meta.go index be91c91..3d58427 100644 --- a/server/errormanager/meta.go +++ b/server/errormanager/meta.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package errormanager import ( diff --git a/server/global/IsIPandPORTValid.go b/server/global/IsIPandPORTValid.go index 4b44da7..d2ed4e5 100644 --- a/server/global/IsIPandPORTValid.go +++ b/server/global/IsIPandPORTValid.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package global import ( diff --git a/server/global/file.go b/server/global/file.go index d912370..dbdb6c4 100755 --- a/server/global/file.go +++ b/server/global/file.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package global import ( diff --git a/server/global/globalConst.go b/server/global/globalConst.go index 5de34e5..1f0ecc6 100755 --- a/server/global/globalConst.go +++ b/server/global/globalConst.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package global func init() { diff --git a/server/global/random.go b/server/global/random.go index 6ed0f29..3e29573 100644 --- a/server/global/random.go +++ b/server/global/random.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package global import ( diff --git a/server/global/readjson.go b/server/global/readjson.go index edd3a6c..633744d 100644 --- a/server/global/readjson.go +++ b/server/global/readjson.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package global import ( diff --git a/server/global/timeProcess.go b/server/global/timeProcess.go index 36b0867..5fda14d 100644 --- a/server/global/timeProcess.go +++ b/server/global/timeProcess.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Tue Jun 25 10:36:07 2024 +0800 + */ package global import ( diff --git a/server/handler/advanceSearch.go b/server/handler/advanceSearch.go index 7ebbb34..0e23069 100644 --- a/server/handler/advanceSearch.go +++ b/server/handler/advanceSearch.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: yajun + * Date: Wed Sep 11 15:12:37 2024 +0800 + */ package handler import ( diff --git a/server/handler/advanceSearch_test.go b/server/handler/advanceSearch_test.go index 1132b8b..c12e70f 100644 --- a/server/handler/advanceSearch_test.go +++ b/server/handler/advanceSearch_test.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: yajun + * Date: Thu Sep 26 13:48:18 2024 +0800 + */ package handler import ( diff --git a/server/handler/meta.go b/server/handler/meta.go index 23035fc..740e6f9 100644 --- a/server/handler/meta.go +++ b/server/handler/meta.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Tue Jun 25 11:11:50 2024 +0800 + */ package handler import ( diff --git a/server/handler/policyHandle.go b/server/handler/policyHandle.go index a1e3fc6..3b708d8 100644 --- a/server/handler/policyHandle.go +++ b/server/handler/policyHandle.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package handler import "github.com/gin-gonic/gin" diff --git a/server/handler/router.go b/server/handler/router.go index c351768..5a1a15a 100755 --- a/server/handler/router.go +++ b/server/handler/router.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package handler import ( diff --git a/server/handler/search.go b/server/handler/search.go index 10a15ee..67e78be 100644 --- a/server/handler/search.go +++ b/server/handler/search.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package handler import ( diff --git a/server/handler/searchHandle.go b/server/handler/searchHandle.go index 497803f..fd90e41 100755 --- a/server/handler/searchHandle.go +++ b/server/handler/searchHandle.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Tue Jun 25 11:11:50 2024 +0800 + */ package handler import ( diff --git a/server/handler/static.go b/server/handler/static.go index e7fbb96..595d922 100644 --- a/server/handler/static.go +++ b/server/handler/static.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ //go:build !production // +build !production diff --git a/server/kibanaClient/7_17_16/client.go b/server/kibanaClient/7_17_16/client.go index e22ef24..ec0ea26 100644 --- a/server/kibanaClient/7_17_16/client.go +++ b/server/kibanaClient/7_17_16/client.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package kibanaClient import ( diff --git a/server/kibanaClient/7_17_16/clientFleetAPI+.go b/server/kibanaClient/7_17_16/clientFleetAPI+.go index d8a4b9d..9db9c6a 100644 --- a/server/kibanaClient/7_17_16/clientFleetAPI+.go +++ b/server/kibanaClient/7_17_16/clientFleetAPI+.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package kibanaClient import ( diff --git a/server/kibanaClient/7_17_16/gjsonProcess.go b/server/kibanaClient/7_17_16/gjsonProcess.go index 545fdc5..ccd39a8 100644 --- a/server/kibanaClient/7_17_16/gjsonProcess.go +++ b/server/kibanaClient/7_17_16/gjsonProcess.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package kibanaClient import ( diff --git a/server/kibanaClient/7_17_16/meta/extraPath.go b/server/kibanaClient/7_17_16/meta/extraPath.go index dff972f..e1cc44c 100644 --- a/server/kibanaClient/7_17_16/meta/extraPath.go +++ b/server/kibanaClient/7_17_16/meta/extraPath.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package meta const ( diff --git a/server/kibanaClient/7_17_16/meta/packageInfo.go b/server/kibanaClient/7_17_16/meta/packageInfo.go index 5b324f4..75ed4e8 100644 --- a/server/kibanaClient/7_17_16/meta/packageInfo.go +++ b/server/kibanaClient/7_17_16/meta/packageInfo.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package meta type PackageInfo_p struct { diff --git a/server/kibanaClient/7_17_16/meta/packagePolicy.go b/server/kibanaClient/7_17_16/meta/packagePolicy.go index a6fcc38..f006098 100644 --- a/server/kibanaClient/7_17_16/meta/packagePolicy.go +++ b/server/kibanaClient/7_17_16/meta/packagePolicy.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package meta type PackagePolicyInput_p struct { diff --git a/server/kibanaClient/7_17_16/meta/settings.go b/server/kibanaClient/7_17_16/meta/settings.go index e2b3499..b225eff 100644 --- a/server/kibanaClient/7_17_16/meta/settings.go +++ b/server/kibanaClient/7_17_16/meta/settings.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package meta type FleetOutput_p struct { diff --git a/server/kibanaClient/8_13_0/client.go b/server/kibanaClient/8_13_0/client.go index b036eb9..b977ab7 100644 --- a/server/kibanaClient/8_13_0/client.go +++ b/server/kibanaClient/8_13_0/client.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package kibanaClient import ( diff --git a/server/kibanaClient/8_13_0/clientFleetAPI+.go b/server/kibanaClient/8_13_0/clientFleetAPI+.go index 62a5672..087a1e3 100644 --- a/server/kibanaClient/8_13_0/clientFleetAPI+.go +++ b/server/kibanaClient/8_13_0/clientFleetAPI+.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package kibanaClient import ( diff --git a/server/kibanaClient/8_13_0/gjsonProcess.go b/server/kibanaClient/8_13_0/gjsonProcess.go index 488e45b..ce729ad 100644 --- a/server/kibanaClient/8_13_0/gjsonProcess.go +++ b/server/kibanaClient/8_13_0/gjsonProcess.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package kibanaClient import ( diff --git a/server/kibanaClient/8_13_0/meta/packagePolicy.go b/server/kibanaClient/8_13_0/meta/packagePolicy.go index bfc4334..29a679b 100644 --- a/server/kibanaClient/8_13_0/meta/packagePolicy.go +++ b/server/kibanaClient/8_13_0/meta/packagePolicy.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package meta import "github.com/elastic/elastic-agent-libs/kibana" diff --git a/server/kibanaClient/8_13_0/meta/packageinfo.go b/server/kibanaClient/8_13_0/meta/packageinfo.go index 72c6145..252a99c 100644 --- a/server/kibanaClient/8_13_0/meta/packageinfo.go +++ b/server/kibanaClient/8_13_0/meta/packageinfo.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package meta const ( diff --git a/server/logger/sdkLogger.go b/server/logger/sdkLogger.go index e42b5e1..6d0c778 100644 --- a/server/logger/sdkLogger.go +++ b/server/logger/sdkLogger.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package logger import ( diff --git a/server/main.go b/server/main.go index 875f40f..88d1c68 100755 --- a/server/main.go +++ b/server/main.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package main import ( diff --git a/server/pluginclient/meta.go b/server/pluginclient/meta.go index 43e9c37..fdd2382 100644 --- a/server/pluginclient/meta.go +++ b/server/pluginclient/meta.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package pluginclient import "gitee.com/openeuler/PilotGo/sdk/plugin/client" diff --git a/server/pluginclient/pluginClient.go b/server/pluginclient/pluginClient.go index 8bc5836..e4648ff 100644 --- a/server/pluginclient/pluginClient.go +++ b/server/pluginclient/pluginClient.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package pluginclient import ( diff --git a/server/service/dao/indexManager.go b/server/service/dao/indexManager.go index 1e42c0a..d588cde 100644 --- a/server/service/dao/indexManager.go +++ b/server/service/dao/indexManager.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: yajun + * Date: Thu Sep 26 13:48:18 2024 +0800 + */ package dao import ( diff --git a/server/service/dao/searchtest.go b/server/service/dao/searchtest.go index 323f176..ee1a1e3 100644 --- a/server/service/dao/searchtest.go +++ b/server/service/dao/searchtest.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: yajun + * Date: Thu Sep 26 13:48:18 2024 +0800 + */ package dao // import ( diff --git a/server/service/log/LogStream.go b/server/service/log/LogStream.go index 6bcd579..c022fe9 100644 --- a/server/service/log/LogStream.go +++ b/server/service/log/LogStream.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Thu Jul 4 16:12:28 2024 +0800 + */ package log import ( diff --git a/server/service/log/LogTimeAixs.go b/server/service/log/LogTimeAixs.go index d279c37..2918f4c 100755 --- a/server/service/log/LogTimeAixs.go +++ b/server/service/log/LogTimeAixs.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Thu Jul 4 16:12:28 2024 +0800 + */ package log import ( diff --git a/server/service/log/meta.go b/server/service/log/meta.go index 72394f3..f52c8b9 100644 --- a/server/service/log/meta.go +++ b/server/service/log/meta.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Thu Jul 4 16:12:28 2024 +0800 + */ package log import "github.com/tidwall/gjson" diff --git a/server/service/model/SearchParams.go b/server/service/model/SearchParams.go index 22927ac..0ff7beb 100644 --- a/server/service/model/SearchParams.go +++ b/server/service/model/SearchParams.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: yajun + * Date: Tue Jul 23 14:47:26 2024 +0800 + */ package model // 搜索参数 diff --git a/server/service/template/meta.go b/server/service/template/meta.go index badc651..bea7f04 100755 --- a/server/service/template/meta.go +++ b/server/service/template/meta.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jul 1 09:37:39 2024 +0800 + */ package template /* diff --git a/server/service/template/template.go b/server/service/template/template.go index c0453ad..e0d7bae 100755 --- a/server/service/template/template.go +++ b/server/service/template/template.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jul 1 09:37:39 2024 +0800 + */ package template import ( diff --git a/server/signal/signalMonitor.go b/server/signal/signalMonitor.go index ddb233b..00be373 100644 --- a/server/signal/signalMonitor.go +++ b/server/signal/signalMonitor.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Mon Jun 24 09:21:47 2024 +0800 + */ package signal import ( diff --git a/web/index.html b/web/index.html index 676ff8a..ebbb992 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 02adfb5..b8b3db5 100644 --- a/web/src/App.vue +++ b/web/src/App.vue @@ -1,3 +1,10 @@ + diff --git a/web/src/api/index.ts b/web/src/api/index.ts index 81c6299..050bed4 100644 --- a/web/src/api/index.ts +++ b/web/src/api/index.ts @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Thu Jun 20 10:05:48 2024 +0800 + */ import request from "./request"; // test diff --git a/web/src/api/request.ts b/web/src/api/request.ts index 93f36d0..77f8414 100644 --- a/web/src/api/request.ts +++ b/web/src/api/request.ts @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Thu Jun 20 10:05:48 2024 +0800 + */ import axios from 'axios'; import router from '../router/index'; diff --git a/web/src/main.ts b/web/src/main.ts index f237b84..70a4570 100644 --- a/web/src/main.ts +++ b/web/src/main.ts @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Thu Jun 20 10:05:48 2024 +0800 + */ import { createApp } from 'vue' import '@/style/main.less' import App from './App.vue' diff --git a/web/src/router/index.ts b/web/src/router/index.ts index 8dde746..935d5b3 100644 --- a/web/src/router/index.ts +++ b/web/src/router/index.ts @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Thu Jun 20 10:05:48 2024 +0800 + */ import { createRouter, createWebHashHistory } from "vue-router"; import type { RouteRecordRaw } from "vue-router"; import Home from "@/views/Home.vue"; diff --git a/web/src/store/index.ts b/web/src/store/index.ts index 5619a06..123c615 100644 --- a/web/src/store/index.ts +++ b/web/src/store/index.ts @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-ELK licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: Wangjunqi123 + * Date: Thu Jun 20 10:05:48 2024 +0800 + */ // store数据持久化 import { createPinia } from 'pinia' import piniaPersisted from 'pinia-plugin-persistedstate' diff --git a/web/src/views/Home.vue b/web/src/views/Home.vue index 63bd157..c327e0a 100644 --- a/web/src/views/Home.vue +++ b/web/src/views/Home.vue @@ -1,3 +1,10 @@ +