diff --git a/category/get_cpu_info.py b/category/get_cpu_info.py index 037e4d8a72beb5bc6982b5785f394782e26e29d8..1d63e1e6e728138d9b36c228057938a9e26fb335 100644 --- a/category/get_cpu_info.py +++ b/category/get_cpu_info.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Mon Nov 20 15:50:39 2023 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 @@ -244,4 +251,4 @@ class CPUInfo: self.__get_pid_cpustat_info() self.__get_mpstat_info(self.__interval, self.__times) self.__get_sar_info(self.__interval, self.__times) - self.__get_numastat_info() \ No newline at end of file + self.__get_numastat_info() diff --git a/category/get_disk_info.py b/category/get_disk_info.py index c28340ab162439d66778282d6002f956a2cad106..30ad190225a79c2559c24dc6afd27eb87f9151b4 100644 --- a/category/get_disk_info.py +++ b/category/get_disk_info.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: wuzhaomin + Date: Tue Feb 27 14:04:12 2024 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/category/get_jvm_info.py b/category/get_jvm_info.py index 7badea60d6be351c63e4d22c2f65f41e4ed12727..c96d37432410b99108c20894c34e7859539be322 100644 --- a/category/get_jvm_info.py +++ b/category/get_jvm_info.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: 李璐 + Date: Tue Jun 25 18:05:43 2024 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 @@ -80,4 +87,4 @@ class JVMInfo: if Command.cmd_exists('jstat'): self.__get_jstat_class() - self.__get_jstat_gc() \ No newline at end of file + self.__get_jstat_gc() diff --git a/category/get_memory_info.py b/category/get_memory_info.py index a88568e3915e1946598e92fdb320db95749a1306..c62beceaa9092d07b6265b3b11eb5588546842c4 100644 --- a/category/get_memory_info.py +++ b/category/get_memory_info.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: lixiaoyong1 + Date: Tue Feb 27 13:54:14 2024 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/category/get_net_info.py b/category/get_net_info.py index c17d53b95b5018ddf42e42ced84a3e2f2181018b..4e76daf72f6f723b18a138c1b07b20d5eec9bb48 100644 --- a/category/get_net_info.py +++ b/category/get_net_info.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: 李璐 + Date: Tue Feb 27 11:40:58 2024 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/category/get_perf_info.py b/category/get_perf_info.py index fb4e8e08c3e575445b3ef5fec3083e2b697d6c1e..8d22731cfb9156dfa00d3011f862d9d3a39b64b6 100644 --- a/category/get_perf_info.py +++ b/category/get_perf_info.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: xiejing + Date: Wed Jun 12 10:38:05 2024 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/category/get_sysparam_info.py b/category/get_sysparam_info.py index cff6799e713acf8693e830001a7e412165ce3f15..e77562fff48b007a2472d831f645f4c9a59a5d90 100644 --- a/category/get_sysparam_info.py +++ b/category/get_sysparam_info.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: lixiaoyong1 + Date: Fri Mar 22 14:21:39 2024 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/category/get_system_message.py b/category/get_system_message.py index 3457c3615bc70e5ce65d8053c2db968bb9a4ab6b..3190e0c6347699c7a0ea1ef5e4fa87efad715973 100644 --- a/category/get_system_message.py +++ b/category/get_system_message.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: wangxiaomeng + Date: Wed Jun 12 10:48:40 2024 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/common/command.py b/common/command.py index 43f0e5b8bdce9c0829d5b6b9b29cd962d3d3d4cc..da9e304a6dff0d2cb2ff676713eb30aa1c2cf84e 100644 --- a/common/command.py +++ b/common/command.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Thu Nov 23 14:47:50 2023 +0800 +''' # -*- coding:utf-8 -*- #!/usr/bin/env python # cython:language_level=3 diff --git a/common/conf_check.py b/common/conf_check.py index 785c8a66f12228392b4a10e8dc7e68db0b8dcf18..517459051bc2781c323ab5087e1a5bf83ebac796 100644 --- a/common/conf_check.py +++ b/common/conf_check.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: wuzhaomin + Date: Wed Jun 26 14:37:51 2024 +0800 +''' # -*- coding:utf-8 -*- #!/usr/bin/env python # cython:language_level=3 diff --git a/common/config.py b/common/config.py index 49e734400eaeee9fc927d0ed93e24f2ba9f8a314..c19c6459a94ede6506e4e386061cf1c09c0ed05d 100644 --- a/common/config.py +++ b/common/config.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Fri Nov 17 09:30:22 2023 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/common/customizefunctionthread.py b/common/customizefunctionthread.py index b4edd74d1db9f489beb754d8cd567e3c284078a4..2dd0d1b43951d2a94fd0b0a7b7589e0c5d10add1 100644 --- a/common/customizefunctionthread.py +++ b/common/customizefunctionthread.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Tue Nov 28 09:34:21 2023 +0800 +''' import threading # 线程类 diff --git a/common/decorator_wrap.py b/common/decorator_wrap.py index 5ca01c47b1640c24fdaf6f6e1e531a6d94d662fd..1648f76abf97bf1097c5ee42d01a33c32cebdeba 100644 --- a/common/decorator_wrap.py +++ b/common/decorator_wrap.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Tue Nov 28 09:35:26 2023 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/common/file.py b/common/file.py index fb871f7a332e222f75c4cb8bdf37847492ec369a..b8e4f007bfb40002ef9ca5b3c91c6aa2eea75e5c 100644 --- a/common/file.py +++ b/common/file.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Tue Nov 28 09:39:45 2023 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/common/global_call.py b/common/global_call.py index 06e8d9664c1369e0a70fb178f6f4cb3e4723c8c9..ac65bdb6c91c5af854a635870be120bfc21a11a7 100644 --- a/common/global_call.py +++ b/common/global_call.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Tue Nov 28 09:52:53 2023 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/common/global_parameter.py b/common/global_parameter.py index 05c12c9c1358a27bf36e8888e95124bed8ca019b..30e932517dd700566d4f48b0a632cf13cd6d3e0f 100644 --- a/common/global_parameter.py +++ b/common/global_parameter.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Tue Nov 28 10:01:23 2023 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/common/log.py b/common/log.py index efda35fd2b313bb71d4a18da42a1b2023e1438ae..7f92e8a8aac2598a73b810b304d018e586fc94d8 100644 --- a/common/log.py +++ b/common/log.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Mon Nov 20 11:31:33 2023 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 @@ -87,4 +94,4 @@ class Logger: @findcaller def error(self, msg, caller=''): self.__print('error', "{} - {}".format(caller, msg)) - \ No newline at end of file + diff --git a/common/threadpool.py b/common/threadpool.py index a4d9fd76f246b5d8426f139d437990903c22d94a..2a454402039d13619ceba48e7b6585b9ead5ef28 100644 --- a/common/threadpool.py +++ b/common/threadpool.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Tue Nov 28 10:05:54 2023 +0800 +''' # -*- coding:utf-8 -*- #!/usr/bin/env python # cython:language_level=3 @@ -45,4 +52,4 @@ class ThreadPool(): data = future.result() Logger().debug("Thread task execution ends {} ".format(data)) - \ No newline at end of file + diff --git a/common/tool_cmd.py b/common/tool_cmd.py index 94bbbe829e2bcc1b11b8a14e5d168860626ae53b..dccf468aff67d0c3fd573027e5613882d471a337 100644 --- a/common/tool_cmd.py +++ b/common/tool_cmd.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Tue Nov 28 10:03:01 2023 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/extuner.py b/extuner.py index 53a59f0af07452757f3200b5d4f4a6822b318c4c..8e2814b6a7b65110e60fcbfcd3e928f9b9740822 100644 --- a/extuner.py +++ b/extuner.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Thu Nov 16 17:11:10 2023 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/kyreport/extuner_report.html b/kyreport/extuner_report.html index 448739e1c5b1eb894cb3486cc5379fbbe01f9a9d..b6f0834e64c08e3ec62b3490513200fa6b8b2ef5 100644 --- a/kyreport/extuner_report.html +++ b/kyreport/extuner_report.html @@ -1,3 +1,10 @@ + diff --git a/kyreport/ky_data_collection.py b/kyreport/ky_data_collection.py index 37ee0f36a9afb6a5b542e303d24a349069248585..627bcdee0f5ab78742c3f74a563d8197a60fb90a 100644 --- a/kyreport/ky_data_collection.py +++ b/kyreport/ky_data_collection.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Fri Aug 2 15:11:35 2024 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/kyreport/ky_report.py b/kyreport/ky_report.py index 24ec04a85985534f8d034fcee9f3a90b3ea7f7a1..970c1b33ffa22a51a08254bdf0dd9332bbd7d93c 100644 --- a/kyreport/ky_report.py +++ b/kyreport/ky_report.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Wed Aug 14 00:05:21 2024 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/main.py b/main.py index 5a39a4c83062eaa8794e9e2a1a3b0511d3965808..3fe6edca8f15509d5a07371217362f8f2fb43d99 100644 --- a/main.py +++ b/main.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Thu Nov 16 17:11:10 2023 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3 diff --git a/summary_info.py b/summary_info.py index 30cc21c759ba8d1025731f334fdfe1eafc07d6f7..f821be8c7856ae16e165d05e2a237ab97d223932 100644 --- a/summary_info.py +++ b/summary_info.py @@ -1,3 +1,10 @@ +''' + Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + extuner licensed under the Mulan Permissive Software License, Version 2. + See LICENSE file for more details. + Author: dongjiao + Date: Fri Nov 17 09:30:22 2023 +0800 +''' #!/usr/bin/env python # -*- coding: UTF-8 -*- # cython:language_level=3