Ver código fonte

首次提交

lcb 3 meses atrás
commit
0e5851f383

BIN
.api_test.py.swp


+ 3 - 0
.idea/.gitignore

@@ -0,0 +1,3 @@
+# 默认忽略的文件
+/shelf/
+/workspace.xml

+ 8 - 0
.idea/CMS_部署服务器.iml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="PYTHON_MODULE" version="4">
+  <component name="NewModuleRootManager">
+    <content url="file://$MODULE_DIR$" />
+    <orderEntry type="jdk" jdkName="C:\ProgramData\anaconda3" jdkType="Python SDK" />
+    <orderEntry type="sourceFolder" forTests="false" />
+  </component>
+</module>

+ 6 - 0
.idea/inspectionProfiles/profiles_settings.xml

@@ -0,0 +1,6 @@
+<component name="InspectionProjectProfileManager">
+  <settings>
+    <option name="USE_PROJECT_PROFILE" value="false" />
+    <version value="1.0" />
+  </settings>
+</component>

+ 7 - 0
.idea/misc.xml

@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="Black">
+    <option name="sdkName" value="C:\ProgramData\anaconda3" />
+  </component>
+  <component name="ProjectRootManager" version="2" project-jdk-name="C:\ProgramData\anaconda3" project-jdk-type="Python SDK" />
+</project>

+ 8 - 0
.idea/modules.xml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectModuleManager">
+    <modules>
+      <module fileurl="file://$PROJECT_DIR$/.idea/CMS_部署服务器.iml" filepath="$PROJECT_DIR$/.idea/CMS_部署服务器.iml" />
+    </modules>
+  </component>
+</project>

+ 6 - 0
.idea/vcs.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="$PROJECT_DIR$" vcs="Git" />
+  </component>
+</project>

Diferenças do arquivo suprimidas por serem muito extensas
+ 1432 - 0
Miniconda3-latest-Linux-x86_64.sh


+ 161 - 0
README.md

@@ -0,0 +1,161 @@
+## CMSAnalyst API 接口文档
+
+### 概述
+
+此 API 提供了多种分析方法,旨在处理加速度数据并进行时域、频域、包络谱和趋势分析。该 API 通过 FastAPI 构建,并提供文件上传与分析功能,支持生成分析结果并返回JSON格式数据。
+
+### 基本配置
+
+### API 路由
+
+#### 1. 上传数据文件
+
+- **路径**: `/upload/`
+
+- **方法**: `POST`
+
+- 参数:
+
+  `file` (必需): 上传的加速度数据文件(`.csv` 格式)。
+
+- 响应:
+
+  - 成功时,返回消息:`{"message": "文件上传成功", "file_path": "<文件路径>"}`
+- 错误时,返回 HTTP 错误代码和消息。
+
+#### 2. 通用分析接口
+
+- **路径**: `/analyze/{analysis_type}`
+
+- **方法**: `POST`
+
+- **参数**:
+
+  - `analysis_type` (必需): 指定分析类型,支持的值为 `envelope`、`frequency` 、`trend`或 `time`,表示分别进行包络谱分析、频域分析趋势分析或时域分析。
+  - `input_data` (必需): 请求体中包含 `ids`:list,`windcode`。
+
+- **请求体** (JSON 格式):
+
+  ```
+  json复制代码{
+    "ids": [id1,id2...,idn],
+    "windcode":str#场站编号
+
+  }
+  ```
+
+- **响应**:
+
+  - 成功时,返回:
+
+    ```
+    json复制代码{
+      "message": "<分析类型> 分析完成",
+      "result_file": "<结果文件路径>"
+    }
+    ```
+
+  - 错误时,返回:
+
+    ```
+    json复制代码{
+      "error": "<错误信息>"
+    }
+    ```
+
+#### 3. 包络谱分析接口
+
+- **路径**: `/analyze/{trend}`
+
+- **方法**: `POST`
+
+- **参数**:
+
+  - `input_data` (必需): 请求体中包含多个id以及场站信息编号,`fmin` 和 `fmax`(可选,默认从配置加载)。
+
+- **请求体** (JSON 格式):
+
+  ```
+  json复制代码{
+    "ids": [id1,id2...,idn],
+    "windcode":str#场站编号,
+    "fmin": <最低频率(可选,默认值)>,
+    "fmax": <最高频率(可选,默认值)>
+  }
+  ```
+
+- **响应**:
+
+  - 成功时,返回:
+
+    ```
+    json复制代码{
+      "message": "完成包络谱分析",
+      "trend_analysis_results": "<分析结果 CSV 文件路径>"
+    }
+    ```
+
+  - 错误时,返回:
+
+    ```
+    json复制代码{
+      "error": "<错误信息>"
+    }
+    ```
+
+### 请求示例
+
+#### 上传数据文件
+
+```
+bash复制代码curl -X 'POST' \
+  'http://localhost:8000/upload/' \
+  -H 'accept: application/json' \
+  -F 'file=@path_to_your_file.csv'
+```
+
+#### 通用分析接口
+
+包络谱分析请求示例:
+
+```
+bash复制代码curl -X 'POST' \
+  'http://localhost:8000/analyze/envelope' \
+  -H 'accept: application/json' \
+  -H 'Content-Type: application/json' \
+  -d '{
+    "data_path": "/path/to/data.csv",
+    "fmin": 10,
+    "fmax": 1000
+  }'
+```
+
+#### 趋势分析接口
+
+```
+bash复制代码curl -X 'POST' \
+  'http://localhost:8000/trend-analysis/' \
+  -H 'accept: application/json' \
+  -H 'Content-Type: application/json' \
+  -d '{
+    "data_paths": ["/path/to/data1.csv", "/path/to/data2.csv"],
+    "fmin": 20,
+    "fmax": 500
+  }'
+```
+
+### 数据格式
+
+- 数据文件应为 CSV 格式,其中每列代表一个加速度传感器的数据,文件内容应为一列数值(时间序列数据)。
+- 包络谱、频域分析及时域分析返回的结果为 HTML 格式的图表。
+- 趋势分析的结果为包含多个统计指标的 CSV 文件。
+
+### 错误处理
+
+- 如果指定的分析类型无效(如 `/analyze/invalid_analysis`),将返回 HTTP 400 错误,详细说明“无效的分析类型”。
+- 如果数据文件路径无效或文件格式不正确,将返回 HTTP 500 错误,包含详细的错误信息。
+
+### 注意事项
+
+- **依赖包**:此 API 使用 `FastAPI`、`Plotly`、`NumPy`、`SciPy`、`Pandas` 等库,请确保已安装相关依赖。
+- **文件存储**:测试api的文件为api_test.py,分析结果格式示例在 `output.json` 中。

BIN
__pycache__/cms_class_20241201.cpython-312.pyc


BIN
__pycache__/cms_class_20241201.cpython-39.pyc


+ 2848 - 0
api.log

@@ -0,0 +1,2848 @@
+nohup: ignoring input
+INFO:     Started server process [41319]
+INFO:     Waiting for application startup.
+INFO:     Application startup complete.
+INFO:     Uvicorn running on http://0.0.0.0:8888 (Press CTRL+C to quit)
+INFO:     111.203.200.207:43149 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.207:18080 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:48287 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:7637 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:20736 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:12046 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:27409 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:11337 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:11470 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:27756 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:37951 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:23172 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:34995 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:49113 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:30985 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:28218 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:18149 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.207:46280 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.207:33538 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.207:2962 - "POST /analysis/envelope HTTP/1.1" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 16:02:02
+2024-12-04 16:02:02
+2024-12-04 16:02:02
+2024-12-04 16:05:33
+2024-12-04 16:05:33
+2024-12-04 16:05:33
+2024-12-04 16:09:04
+2024-12-04 16:09:04
+2024-12-04 16:09:04
+2024-12-04 16:12:35
+2024-12-04 16:12:35
+2024-12-04 16:12:35
+2024-12-04 16:16:06
+2024-12-04 16:16:06
+2024-12-04 16:16:06
+2024-12-04 16:19:37
+2024-12-04 16:19:37
+2024-12-04 16:19:37
+2024-12-04 16:23:08
+2024-12-04 16:23:08
+2024-12-04 16:23:08
+2024-12-04 16:26:38
+2024-12-04 16:26:38
+2024-12-04 16:26:38
+2024-12-04 16:30:09
+2024-12-04 16:30:09
+2024-12-04 16:30:09
+2024-12-04 16:33:40
+2024-12-04 16:33:40
+2024-12-04 16:33:40
+2024-12-04 16:37:11
+2024-12-04 16:37:11
+2024-12-04 16:37:11
+2024-12-04 16:40:42
+2024-12-04 16:40:42
+2024-12-04 16:40:42
+2024-12-04 16:44:13
+2024-12-04 16:44:13
+2024-12-04 16:44:13
+2024-12-04 16:47:43
+2024-12-04 16:47:43
+2024-12-04 16:47:43
+2024-12-04 16:51:14
+2024-12-04 16:51:14
+2024-12-04 16:51:14
+2024-12-04 16:54:45
+2024-12-04 16:54:45
+2024-12-04 16:54:45
+2024-12-04 16:58:15
+2024-12-04 16:58:15
+2024-12-04 16:58:15
+2024-12-04 17:01:46
+2024-12-04 17:01:46
+2024-12-04 17:01:46
+2024-12-04 17:05:17
+2024-12-04 17:05:17
+2024-12-04 17:05:17
+2024-12-04 17:08:48
+2024-12-04 17:08:48
+2024-12-04 17:08:48
+2024-12-04 17:12:18
+2024-12-04 17:12:18
+2024-12-04 17:12:18
+2024-12-04 17:15:49
+2024-12-04 17:15:49
+2024-12-04 17:15:49
+2024-12-04 17:19:20
+2024-12-04 17:19:20
+2024-12-04 17:19:20
+2024-12-04 17:22:51
+2024-12-04 17:22:51
+2024-12-04 17:22:51
+2024-12-04 17:26:22
+2024-12-04 17:26:22
+2024-12-04 17:26:22
+2024-12-04 17:29:53
+2024-12-04 17:29:53
+2024-12-04 17:29:53
+2024-12-04 17:33:24
+2024-12-04 17:33:24
+2024-12-04 17:33:24
+2024-12-04 17:36:55
+2024-12-04 17:36:55
+2024-12-04 17:36:55
+2024-12-04 17:40:26
+2024-12-04 17:40:26
+2024-12-04 17:40:26
+2024-12-04 17:43:56
+2024-12-04 17:43:56
+2024-12-04 17:43:56
+2024-12-04 17:47:27
+2024-12-04 17:47:27
+2024-12-04 17:47:27
+2024-12-04 17:50:58
+2024-12-04 17:50:58
+2024-12-04 17:50:58
+2024-12-04 17:54:28
+2024-12-04 17:54:28
+2024-12-04 17:54:28
+2024-12-04 17:57:59
+2024-12-04 17:57:59
+2024-12-04 17:57:59
+2024-12-04 18:01:29
+2024-12-04 18:01:29
+2024-12-04 18:01:29
+2024-12-04 18:05:00
+2024-12-04 18:05:00
+2024-12-04 18:05:00
+2024-12-04 18:08:31
+2024-12-04 18:08:31
+2024-12-04 18:08:31
+2024-12-04 18:12:02
+2024-12-04 18:12:02
+2024-12-04 18:12:02
+2024-12-04 18:15:33
+2024-12-04 18:15:33
+2024-12-04 18:15:33
+2024-12-04 18:19:03
+2024-12-04 18:19:03
+2024-12-04 18:19:03
+2024-12-04 18:22:34
+2024-12-04 18:22:34
+2024-12-04 18:22:34
+2024-12-04 19:01:13
+2024-12-04 19:01:13
+2024-12-04 19:01:13
+2024-12-04 19:04:44
+2024-12-04 19:04:44
+2024-12-04 19:04:44
+2024-12-04 19:08:15
+2024-12-04 19:08:15
+2024-12-04 19:08:15
+2024-12-04 19:11:46
+2024-12-04 19:11:46
+2024-12-04 19:11:46
+2024-12-04 19:15:16
+2024-12-04 19:15:16
+2024-12-04 19:15:16
+2024-12-04 19:18:47
+2024-12-04 19:18:47
+2024-12-04 19:18:47
+2024-12-04 19:22:18
+2024-12-04 19:22:18
+2024-12-04 19:22:18
+2024-12-04 19:25:49
+2024-12-04 19:25:49
+2024-12-04 19:25:49
+2024-12-04 19:29:19
+2024-12-04 19:29:19
+2024-12-04 19:29:19
+2024-12-04 19:32:50
+2024-12-04 19:32:50
+2024-12-04 19:32:50
+2024-12-04 19:36:21
+2024-12-04 19:36:21
+2024-12-04 19:36:21
+2024-12-04 19:39:51
+2024-12-04 19:39:51
+2024-12-04 19:39:51
+2024-12-04 19:43:22
+2024-12-04 19:43:22
+2024-12-04 19:43:22
+2024-12-04 19:46:53
+2024-12-04 19:46:53
+2024-12-04 19:46:53
+2024-12-04 19:50:24
+2024-12-04 19:50:24
+2024-12-04 19:50:24
+2024-12-04 19:53:54
+2024-12-04 19:53:54
+2024-12-04 19:53:54
+2024-12-04 19:57:25
+2024-12-04 19:57:25
+2024-12-04 19:57:25
+2024-12-04 20:00:56
+2024-12-04 20:00:56
+2024-12-04 20:00:56
+2024-12-04 20:04:26
+2024-12-04 20:04:26
+2024-12-04 20:04:26
+2024-12-04 20:07:57
+2024-12-04 20:07:57
+2024-12-04 20:07:57
+2024-12-04 20:11:28
+2024-12-04 20:11:28
+2024-12-04 20:11:28
+2024-12-04 20:14:58
+2024-12-04 20:14:58
+2024-12-04 20:14:58
+2024-12-04 20:18:29
+2024-12-04 20:18:29
+2024-12-04 20:18:29
+2024-12-04 20:22:00
+2024-12-04 20:22:00
+2024-12-04 20:22:00
+2024-12-04 20:25:30
+2024-12-04 20:25:30
+2024-12-04 20:25:30
+2024-12-04 20:29:01
+2024-12-04 20:29:01
+2024-12-04 20:29:01
+2024-12-04 20:32:32
+2024-12-04 20:32:32
+2024-12-04 20:32:32
+2024-12-04 20:36:02
+2024-12-04 20:36:02
+2024-12-04 20:36:02
+2024-12-04 20:39:33
+2024-12-04 20:39:33
+2024-12-04 20:39:33
+2024-12-04 20:43:03
+2024-12-04 20:43:03
+2024-12-04 20:43:03
+2024-12-04 20:46:34
+2024-12-04 20:46:34
+2024-12-04 20:46:34
+2024-12-04 20:50:05
+2024-12-04 20:50:05
+2024-12-04 20:50:05
+2024-12-04 20:53:35
+2024-12-04 20:53:35
+2024-12-04 20:53:35
+2024-12-04 20:57:06
+2024-12-04 20:57:06
+2024-12-04 20:57:06
+2024-12-04 21:00:36
+2024-12-04 21:00:36
+2024-12-04 21:00:36
+2024-12-04 21:04:07
+2024-12-04 21:04:07
+2024-12-04 21:04:07
+2024-12-04 21:07:38
+2024-12-04 21:07:38
+2024-12-04 21:07:38
+2024-12-04 21:11:08
+2024-12-04 21:11:08
+2024-12-04 21:11:08
+2024-12-04 21:14:39
+2024-12-04 21:14:39
+2024-12-04 21:14:39
+2024-12-04 21:18:10
+2024-12-04 21:18:10
+2024-12-04 21:18:10
+2024-12-04 21:21:41
+2024-12-04 21:21:41
+2024-12-04 21:21:41
+2024-12-04 21:25:11
+2024-12-04 21:25:11
+2024-12-04 21:25:11
+2024-12-04 21:28:42
+2024-12-04 21:28:42
+2024-12-04 21:28:42
+2024-12-04 21:32:13
+2024-12-04 21:32:13
+2024-12-04 21:32:13
+2024-12-04 21:35:44
+2024-12-04 21:35:44
+2024-12-04 21:35:44
+2024-12-04 21:39:14
+2024-12-04 21:39:14
+2024-12-04 21:39:14
+2024-12-04 21:42:45
+2024-12-04 21:42:45
+2024-12-04 21:42:45
+2024-12-04 21:46:16
+2024-12-04 21:46:16
+2024-12-04 21:46:16
+2024-12-04 21:49:46
+2024-12-04 21:49:46
+2024-12-04 21:49:46
+2024-12-04 21:53:17
+2024-12-04 21:53:17
+2024-12-04 21:53:17
+2024-12-04 21:56:48
+2024-12-04 21:56:48
+2024-12-04 21:56:48
+2024-12-04 22:00:19
+2024-12-04 22:00:19
+2024-12-04 22:00:19
+2024-12-04 22:03:50
+2024-12-04 22:03:50
+2024-12-04 22:03:50
+2024-12-04 22:07:20
+2024-12-04 22:07:20
+2024-12-04 22:07:20
+2024-12-04 22:10:51
+2024-12-04 22:10:51
+2024-12-04 22:10:51
+2024-12-04 22:14:22
+2024-12-04 22:14:22
+2024-12-04 22:14:22
+2024-12-04 22:17:53
+2024-12-04 22:17:53
+2024-12-04 22:17:53
+2024-12-04 22:21:24
+2024-12-04 22:21:24
+2024-12-04 22:21:24
+2024-12-04 22:24:54
+2024-12-04 22:24:54
+2024-12-04 22:24:54
+2024-12-04 22:28:25
+2024-12-04 22:28:25
+2024-12-04 22:28:25
+2024-12-04 22:31:56
+2024-12-04 22:31:56
+2024-12-04 22:31:56
+2024-12-04 22:35:27
+2024-12-04 22:35:27
+2024-12-04 22:35:27
+2024-12-04 22:38:57
+2024-12-04 22:38:57
+2024-12-04 22:38:57
+2024-12-04 22:42:28
+2024-12-04 22:42:28
+2024-12-04 22:42:28
+2024-12-04 22:45:59
+2024-12-04 22:45:59
+2024-12-04 22:45:59
+2024-12-04 22:49:30
+2024-12-04 22:49:30
+2024-12-04 22:49:30
+2024-12-04 22:53:01
+2024-12-04 22:53:01
+2024-12-04 22:53:01
+2024-12-04 22:56:31
+2024-12-04 22:56:31
+2024-12-04 22:56:31
+2024-12-04 23:00:02
+2024-12-04 23:00:02
+2024-12-04 23:00:02
+2024-12-04 23:03:32
+2024-12-04 23:03:32
+2024-12-04 23:03:32
+2024-12-04 23:07:03
+2024-12-04 23:07:03
+2024-12-04 23:07:03
+2024-12-04 23:10:33
+2024-12-04 23:10:33
+2024-12-04 23:10:33
+2024-12-04 23:14:04
+2024-12-04 23:14:04
+2024-12-04 23:14:04
+2024-12-04 23:17:35
+2024-12-04 23:17:35
+2024-12-04 23:17:35
+2024-12-04 23:21:06
+2024-12-04 23:21:06
+2024-12-04 23:21:06
+2024-12-04 23:24:37
+2024-12-04 23:24:37
+2024-12-04 23:24:37
+2024-12-04 23:28:08
+2024-12-04 23:28:08
+2024-12-04 23:28:08
+2024-12-04 23:31:39
+2024-12-04 23:31:39
+2024-12-04 23:31:39
+2024-12-04 23:35:10
+2024-12-04 23:35:10
+2024-12-04 23:35:10
+2024-12-04 23:38:41
+2024-12-04 23:38:41
+2024-12-04 23:38:41
+2024-12-04 23:42:11
+2024-12-04 23:42:11
+2024-12-04 23:42:11
+2024-12-04 23:45:42
+2024-12-04 23:45:42
+2024-12-04 23:45:42
+2024-12-04 23:49:13
+2024-12-04 23:49:13
+2024-12-04 23:49:13
+2024-12-04 23:52:44
+2024-12-04 23:52:44
+2024-12-04 23:52:44
+2024-12-04 23:56:14
+2024-12-04 23:56:14
+2024-12-04 23:56:14
+2024-12-04 23:59:46
+2024-12-04 23:59:46
+2024-12-04 23:59:46
+INFO:     111.203.200.207:4269 - "POST /analysis/trend HTTP/1.1" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 16:02:02
+2024-12-04 16:02:02
+2024-12-04 16:02:02
+2024-12-04 16:05:33
+2024-12-04 16:05:33
+2024-12-04 16:05:33
+2024-12-04 16:09:04
+2024-12-04 16:09:04
+2024-12-04 16:09:04
+2024-12-04 16:12:35
+2024-12-04 16:12:35
+2024-12-04 16:12:35
+2024-12-04 16:16:06
+2024-12-04 16:16:06
+2024-12-04 16:16:06
+2024-12-04 16:19:37
+2024-12-04 16:19:37
+2024-12-04 16:19:37
+2024-12-04 16:23:08
+2024-12-04 16:23:08
+2024-12-04 16:23:08
+2024-12-04 16:26:38
+2024-12-04 16:26:38
+2024-12-04 16:26:38
+2024-12-04 16:30:09
+2024-12-04 16:30:09
+2024-12-04 16:30:09
+2024-12-04 16:33:40
+2024-12-04 16:33:40
+2024-12-04 16:33:40
+2024-12-04 16:37:11
+2024-12-04 16:37:11
+2024-12-04 16:37:11
+2024-12-04 16:40:42
+2024-12-04 16:40:42
+2024-12-04 16:40:42
+2024-12-04 16:44:13
+2024-12-04 16:44:13
+2024-12-04 16:44:13
+2024-12-04 16:47:43
+2024-12-04 16:47:43
+2024-12-04 16:47:43
+2024-12-04 16:51:14
+2024-12-04 16:51:14
+2024-12-04 16:51:14
+2024-12-04 16:54:45
+2024-12-04 16:54:45
+2024-12-04 16:54:45
+2024-12-04 16:58:15
+2024-12-04 16:58:15
+2024-12-04 16:58:15
+2024-12-04 17:01:46
+2024-12-04 17:01:46
+2024-12-04 17:01:46
+2024-12-04 17:05:17
+2024-12-04 17:05:17
+2024-12-04 17:05:17
+2024-12-04 17:08:48
+2024-12-04 17:08:48
+2024-12-04 17:08:48
+2024-12-04 17:12:18
+2024-12-04 17:12:18
+2024-12-04 17:12:18
+2024-12-04 17:15:49
+2024-12-04 17:15:49
+2024-12-04 17:15:49
+2024-12-04 17:19:20
+2024-12-04 17:19:20
+2024-12-04 17:19:20
+2024-12-04 17:22:51
+2024-12-04 17:22:51
+2024-12-04 17:22:51
+2024-12-04 17:26:22
+2024-12-04 17:26:22
+2024-12-04 17:26:22
+2024-12-04 17:29:53
+2024-12-04 17:29:53
+2024-12-04 17:29:53
+2024-12-04 17:33:24
+2024-12-04 17:33:24
+2024-12-04 17:33:24
+2024-12-04 17:36:55
+2024-12-04 17:36:55
+2024-12-04 17:36:55
+2024-12-04 17:40:26
+2024-12-04 17:40:26
+2024-12-04 17:40:26
+2024-12-04 17:43:56
+2024-12-04 17:43:56
+2024-12-04 17:43:56
+2024-12-04 17:47:27
+2024-12-04 17:47:27
+2024-12-04 17:47:27
+2024-12-04 17:50:58
+2024-12-04 17:50:58
+2024-12-04 17:50:58
+2024-12-04 17:54:28
+2024-12-04 17:54:28
+2024-12-04 17:54:28
+2024-12-04 17:57:59
+2024-12-04 17:57:59
+2024-12-04 17:57:59
+2024-12-04 18:01:29
+2024-12-04 18:01:29
+2024-12-04 18:01:29
+2024-12-04 18:05:00
+2024-12-04 18:05:00
+2024-12-04 18:05:00
+2024-12-04 18:08:31
+2024-12-04 18:08:31
+2024-12-04 18:08:31
+2024-12-04 18:12:02
+2024-12-04 18:12:02
+2024-12-04 18:12:02
+2024-12-04 18:15:33
+2024-12-04 18:15:33
+2024-12-04 18:15:33
+2024-12-04 18:19:03
+2024-12-04 18:19:03
+2024-12-04 18:19:03
+2024-12-04 18:22:34
+2024-12-04 18:22:34
+2024-12-04 18:22:34
+2024-12-04 19:01:13
+2024-12-04 19:01:13
+2024-12-04 19:01:13
+2024-12-04 19:04:44
+2024-12-04 19:04:44
+2024-12-04 19:04:44
+2024-12-04 19:08:15
+2024-12-04 19:08:15
+2024-12-04 19:08:15
+2024-12-04 19:11:46
+2024-12-04 19:11:46
+2024-12-04 19:11:46
+2024-12-04 19:15:16
+2024-12-04 19:15:16
+2024-12-04 19:15:16
+2024-12-04 19:18:47
+2024-12-04 19:18:47
+2024-12-04 19:18:47
+2024-12-04 19:22:18
+2024-12-04 19:22:18
+2024-12-04 19:22:18
+2024-12-04 19:25:49
+2024-12-04 19:25:49
+2024-12-04 19:25:49
+2024-12-04 19:29:19
+2024-12-04 19:29:19
+2024-12-04 19:29:19
+2024-12-04 19:32:50
+2024-12-04 19:32:50
+2024-12-04 19:32:50
+2024-12-04 19:36:21
+2024-12-04 19:36:21
+2024-12-04 19:36:21
+2024-12-04 19:39:51
+2024-12-04 19:39:51
+2024-12-04 19:39:51
+2024-12-04 19:43:22
+2024-12-04 19:43:22
+2024-12-04 19:43:22
+2024-12-04 19:46:53
+2024-12-04 19:46:53
+2024-12-04 19:46:53
+2024-12-04 19:50:24
+2024-12-04 19:50:24
+2024-12-04 19:50:24
+2024-12-04 19:53:54
+2024-12-04 19:53:54
+2024-12-04 19:53:54
+2024-12-04 19:57:25
+2024-12-04 19:57:25
+2024-12-04 19:57:25
+2024-12-04 20:00:56
+2024-12-04 20:00:56
+2024-12-04 20:00:56
+2024-12-04 20:04:26
+2024-12-04 20:04:26
+2024-12-04 20:04:26
+2024-12-04 20:07:57
+2024-12-04 20:07:57
+2024-12-04 20:07:57
+2024-12-04 20:11:28
+2024-12-04 20:11:28
+2024-12-04 20:11:28
+2024-12-04 20:14:58
+2024-12-04 20:14:58
+2024-12-04 20:14:58
+2024-12-04 20:18:29
+2024-12-04 20:18:29
+2024-12-04 20:18:29
+2024-12-04 20:22:00
+2024-12-04 20:22:00
+2024-12-04 20:22:00
+2024-12-04 20:25:30
+2024-12-04 20:25:30
+2024-12-04 20:25:30
+2024-12-04 20:29:01
+2024-12-04 20:29:01
+2024-12-04 20:29:01
+2024-12-04 20:32:32
+2024-12-04 20:32:32
+2024-12-04 20:32:32
+2024-12-04 20:36:02
+2024-12-04 20:36:02
+2024-12-04 20:36:02
+2024-12-04 20:39:33
+2024-12-04 20:39:33
+2024-12-04 20:39:33
+2024-12-04 20:43:03
+2024-12-04 20:43:03
+2024-12-04 20:43:03
+2024-12-04 20:46:34
+2024-12-04 20:46:34
+2024-12-04 20:46:34
+2024-12-04 20:50:05
+2024-12-04 20:50:05
+2024-12-04 20:50:05
+2024-12-04 20:53:35
+2024-12-04 20:53:35
+2024-12-04 20:53:35
+2024-12-04 20:57:06
+2024-12-04 20:57:06
+2024-12-04 20:57:06
+2024-12-04 21:00:36
+2024-12-04 21:00:36
+2024-12-04 21:00:36
+2024-12-04 21:04:07
+2024-12-04 21:04:07
+2024-12-04 21:04:07
+2024-12-04 21:07:38
+2024-12-04 21:07:38
+2024-12-04 21:07:38
+2024-12-04 21:11:08
+2024-12-04 21:11:08
+2024-12-04 21:11:08
+2024-12-04 21:14:39
+2024-12-04 21:14:39
+2024-12-04 21:14:39
+2024-12-04 21:18:10
+2024-12-04 21:18:10
+2024-12-04 21:18:10
+2024-12-04 21:21:41
+2024-12-04 21:21:41
+2024-12-04 21:21:41
+2024-12-04 21:25:11
+2024-12-04 21:25:11
+2024-12-04 21:25:11
+2024-12-04 21:28:42
+2024-12-04 21:28:42
+2024-12-04 21:28:42
+2024-12-04 21:32:13
+2024-12-04 21:32:13
+2024-12-04 21:32:13
+2024-12-04 21:35:44
+2024-12-04 21:35:44
+2024-12-04 21:35:44
+2024-12-04 21:39:14
+2024-12-04 21:39:14
+2024-12-04 21:39:14
+2024-12-04 21:42:45
+2024-12-04 21:42:45
+2024-12-04 21:42:45
+2024-12-04 21:46:16
+2024-12-04 21:46:16
+2024-12-04 21:46:16
+2024-12-04 21:49:46
+2024-12-04 21:49:46
+2024-12-04 21:49:46
+2024-12-04 21:53:17
+2024-12-04 21:53:17
+2024-12-04 21:53:17
+2024-12-04 21:56:48
+2024-12-04 21:56:48
+2024-12-04 21:56:48
+2024-12-04 22:00:19
+2024-12-04 22:00:19
+2024-12-04 22:00:19
+2024-12-04 22:03:50
+2024-12-04 22:03:50
+2024-12-04 22:03:50
+2024-12-04 22:07:20
+2024-12-04 22:07:20
+2024-12-04 22:07:20
+2024-12-04 22:10:51
+2024-12-04 22:10:51
+2024-12-04 22:10:51
+2024-12-04 22:14:22
+2024-12-04 22:14:22
+2024-12-04 22:14:22
+2024-12-04 22:17:53
+2024-12-04 22:17:53
+2024-12-04 22:17:53
+2024-12-04 22:21:24
+2024-12-04 22:21:24
+2024-12-04 22:21:24
+2024-12-04 22:24:54
+2024-12-04 22:24:54
+2024-12-04 22:24:54
+2024-12-04 22:28:25
+2024-12-04 22:28:25
+2024-12-04 22:28:25
+2024-12-04 22:31:56
+2024-12-04 22:31:56
+2024-12-04 22:31:56
+2024-12-04 22:35:27
+2024-12-04 22:35:27
+2024-12-04 22:35:27
+2024-12-04 22:38:57
+2024-12-04 22:38:57
+2024-12-04 22:38:57
+2024-12-04 22:42:28
+2024-12-04 22:42:28
+2024-12-04 22:42:28
+2024-12-04 22:45:59
+2024-12-04 22:45:59
+2024-12-04 22:45:59
+2024-12-04 22:49:30
+2024-12-04 22:49:30
+2024-12-04 22:49:30
+2024-12-04 22:53:01
+2024-12-04 22:53:01
+2024-12-04 22:53:01
+2024-12-04 22:56:31
+2024-12-04 22:56:31
+2024-12-04 22:56:31
+2024-12-04 23:00:02
+2024-12-04 23:00:02
+2024-12-04 23:00:02
+2024-12-04 23:03:32
+2024-12-04 23:03:32
+2024-12-04 23:03:32
+2024-12-04 23:07:03
+2024-12-04 23:07:03
+2024-12-04 23:07:03
+2024-12-04 23:10:33
+2024-12-04 23:10:33
+2024-12-04 23:10:33
+2024-12-04 23:14:04
+2024-12-04 23:14:04
+2024-12-04 23:14:04
+2024-12-04 23:17:35
+2024-12-04 23:17:35
+2024-12-04 23:17:35
+2024-12-04 23:21:06
+2024-12-04 23:21:06
+2024-12-04 23:21:06
+2024-12-04 23:24:37
+2024-12-04 23:24:37
+2024-12-04 23:24:37
+2024-12-04 23:28:08
+2024-12-04 23:28:08
+2024-12-04 23:28:08
+2024-12-04 23:31:39
+2024-12-04 23:31:39
+2024-12-04 23:31:39
+2024-12-04 23:35:10
+2024-12-04 23:35:10
+2024-12-04 23:35:10
+2024-12-04 23:38:41
+2024-12-04 23:38:41
+2024-12-04 23:38:41
+2024-12-04 23:42:11
+2024-12-04 23:42:11
+2024-12-04 23:42:11
+2024-12-04 23:45:42
+2024-12-04 23:45:42
+2024-12-04 23:45:42
+2024-12-04 23:49:13
+2024-12-04 23:49:13
+2024-12-04 23:49:13
+2024-12-04 23:52:44
+2024-12-04 23:52:44
+2024-12-04 23:52:44
+2024-12-04 23:56:14
+2024-12-04 23:56:14
+2024-12-04 23:56:14
+2024-12-04 23:59:46
+2024-12-04 23:59:46
+2024-12-04 23:59:46
+INFO:     111.203.200.207:43194 - "POST /analysis/trend HTTP/1.1" 200 OK
+INFO:     111.203.200.207:18997 - "POST /analysis/frequency HTTP/1.1" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 16:02:02
+2024-12-04 16:02:02
+2024-12-04 16:02:02
+2024-12-04 16:05:33
+2024-12-04 16:05:33
+2024-12-04 16:05:33
+2024-12-04 16:09:04
+2024-12-04 16:09:04
+2024-12-04 16:09:04
+2024-12-04 16:12:35
+2024-12-04 16:12:35
+2024-12-04 16:12:35
+2024-12-04 16:16:06
+2024-12-04 16:16:06
+2024-12-04 16:16:06
+2024-12-04 16:19:37
+2024-12-04 16:19:37
+2024-12-04 16:19:37
+2024-12-04 16:23:08
+2024-12-04 16:23:08
+2024-12-04 16:23:08
+2024-12-04 16:26:38
+2024-12-04 16:26:38
+2024-12-04 16:26:38
+2024-12-04 16:30:09
+2024-12-04 16:30:09
+2024-12-04 16:30:09
+2024-12-04 16:33:40
+2024-12-04 16:33:40
+2024-12-04 16:33:40
+2024-12-04 16:37:11
+2024-12-04 16:37:11
+2024-12-04 16:37:11
+2024-12-04 16:40:42
+2024-12-04 16:40:42
+2024-12-04 16:40:42
+2024-12-04 16:44:13
+2024-12-04 16:44:13
+2024-12-04 16:44:13
+2024-12-04 16:47:43
+2024-12-04 16:47:43
+2024-12-04 16:47:43
+2024-12-04 16:51:14
+2024-12-04 16:51:14
+2024-12-04 16:51:14
+2024-12-04 16:54:45
+2024-12-04 16:54:45
+2024-12-04 16:54:45
+2024-12-04 16:58:15
+2024-12-04 16:58:15
+2024-12-04 16:58:15
+2024-12-04 17:01:46
+2024-12-04 17:01:46
+2024-12-04 17:01:46
+2024-12-04 17:05:17
+2024-12-04 17:05:17
+2024-12-04 17:05:17
+2024-12-04 17:08:48
+2024-12-04 17:08:48
+2024-12-04 17:08:48
+2024-12-04 17:12:18
+2024-12-04 17:12:18
+2024-12-04 17:12:18
+2024-12-04 17:15:49
+2024-12-04 17:15:49
+2024-12-04 17:15:49
+2024-12-04 17:19:20
+2024-12-04 17:19:20
+2024-12-04 17:19:20
+2024-12-04 17:22:51
+2024-12-04 17:22:51
+2024-12-04 17:22:51
+2024-12-04 17:26:22
+2024-12-04 17:26:22
+2024-12-04 17:26:22
+2024-12-04 17:29:53
+2024-12-04 17:29:53
+2024-12-04 17:29:53
+2024-12-04 17:33:24
+2024-12-04 17:33:24
+2024-12-04 17:33:24
+2024-12-04 17:36:55
+2024-12-04 17:36:55
+2024-12-04 17:36:55
+2024-12-04 17:40:26
+2024-12-04 17:40:26
+2024-12-04 17:40:26
+2024-12-04 17:43:56
+2024-12-04 17:43:56
+2024-12-04 17:43:56
+2024-12-04 17:47:27
+2024-12-04 17:47:27
+2024-12-04 17:47:27
+2024-12-04 17:50:58
+2024-12-04 17:50:58
+2024-12-04 17:50:58
+2024-12-04 17:54:28
+2024-12-04 17:54:28
+2024-12-04 17:54:28
+2024-12-04 17:57:59
+2024-12-04 17:57:59
+2024-12-04 17:57:59
+2024-12-04 18:01:29
+2024-12-04 18:01:29
+2024-12-04 18:01:29
+2024-12-04 18:05:00
+2024-12-04 18:05:00
+2024-12-04 18:05:00
+2024-12-04 18:08:31
+2024-12-04 18:08:31
+2024-12-04 18:08:31
+2024-12-04 18:12:02
+2024-12-04 18:12:02
+2024-12-04 18:12:02
+2024-12-04 18:15:33
+2024-12-04 18:15:33
+2024-12-04 18:15:33
+2024-12-04 18:19:03
+2024-12-04 18:19:03
+2024-12-04 18:19:03
+2024-12-04 18:22:34
+2024-12-04 18:22:34
+2024-12-04 18:22:34
+2024-12-04 19:01:13
+2024-12-04 19:01:13
+2024-12-04 19:01:13
+2024-12-04 19:04:44
+2024-12-04 19:04:44
+2024-12-04 19:04:44
+2024-12-04 19:08:15
+2024-12-04 19:08:15
+2024-12-04 19:08:15
+2024-12-04 19:11:46
+2024-12-04 19:11:46
+2024-12-04 19:11:46
+2024-12-04 19:15:16
+2024-12-04 19:15:16
+2024-12-04 19:15:16
+2024-12-04 19:18:47
+2024-12-04 19:18:47
+2024-12-04 19:18:47
+2024-12-04 19:22:18
+2024-12-04 19:22:18
+2024-12-04 19:22:18
+2024-12-04 19:25:49
+2024-12-04 19:25:49
+2024-12-04 19:25:49
+2024-12-04 19:29:19
+2024-12-04 19:29:19
+2024-12-04 19:29:19
+2024-12-04 19:32:50
+2024-12-04 19:32:50
+2024-12-04 19:32:50
+2024-12-04 19:36:21
+2024-12-04 19:36:21
+2024-12-04 19:36:21
+2024-12-04 19:39:51
+2024-12-04 19:39:51
+2024-12-04 19:39:51
+2024-12-04 19:43:22
+2024-12-04 19:43:22
+2024-12-04 19:43:22
+2024-12-04 19:46:53
+2024-12-04 19:46:53
+2024-12-04 19:46:53
+2024-12-04 19:50:24
+2024-12-04 19:50:24
+2024-12-04 19:50:24
+2024-12-04 19:53:54
+2024-12-04 19:53:54
+2024-12-04 19:53:54
+2024-12-04 19:57:25
+2024-12-04 19:57:25
+2024-12-04 19:57:25
+2024-12-04 20:00:56
+2024-12-04 20:00:56
+2024-12-04 20:00:56
+2024-12-04 20:04:26
+2024-12-04 20:04:26
+2024-12-04 20:04:26
+2024-12-04 20:07:57
+2024-12-04 20:07:57
+2024-12-04 20:07:57
+2024-12-04 20:11:28
+2024-12-04 20:11:28
+2024-12-04 20:11:28
+2024-12-04 20:14:58
+2024-12-04 20:14:58
+2024-12-04 20:14:58
+2024-12-04 20:18:29
+2024-12-04 20:18:29
+2024-12-04 20:18:29
+2024-12-04 20:22:00
+2024-12-04 20:22:00
+2024-12-04 20:22:00
+2024-12-04 20:25:30
+2024-12-04 20:25:30
+2024-12-04 20:25:30
+2024-12-04 20:29:01
+2024-12-04 20:29:01
+2024-12-04 20:29:01
+2024-12-04 20:32:32
+2024-12-04 20:32:32
+2024-12-04 20:32:32
+2024-12-04 20:36:02
+2024-12-04 20:36:02
+2024-12-04 20:36:02
+2024-12-04 20:39:33
+2024-12-04 20:39:33
+2024-12-04 20:39:33
+2024-12-04 20:43:03
+2024-12-04 20:43:03
+2024-12-04 20:43:03
+2024-12-04 20:46:34
+2024-12-04 20:46:34
+2024-12-04 20:46:34
+2024-12-04 20:50:05
+2024-12-04 20:50:05
+2024-12-04 20:50:05
+2024-12-04 20:53:35
+2024-12-04 20:53:35
+2024-12-04 20:53:35
+2024-12-04 20:57:06
+2024-12-04 20:57:06
+2024-12-04 20:57:06
+2024-12-04 21:00:36
+2024-12-04 21:00:36
+2024-12-04 21:00:36
+2024-12-04 21:04:07
+2024-12-04 21:04:07
+2024-12-04 21:04:07
+2024-12-04 21:07:38
+2024-12-04 21:07:38
+2024-12-04 21:07:38
+2024-12-04 21:11:08
+2024-12-04 21:11:08
+2024-12-04 21:11:08
+2024-12-04 21:14:39
+2024-12-04 21:14:39
+2024-12-04 21:14:39
+2024-12-04 21:18:10
+2024-12-04 21:18:10
+2024-12-04 21:18:10
+2024-12-04 21:21:41
+2024-12-04 21:21:41
+2024-12-04 21:21:41
+2024-12-04 21:25:11
+2024-12-04 21:25:11
+2024-12-04 21:25:11
+2024-12-04 21:28:42
+2024-12-04 21:28:42
+2024-12-04 21:28:42
+2024-12-04 21:32:13
+2024-12-04 21:32:13
+2024-12-04 21:32:13
+2024-12-04 21:35:44
+2024-12-04 21:35:44
+2024-12-04 21:35:44
+2024-12-04 21:39:14
+2024-12-04 21:39:14
+2024-12-04 21:39:14
+2024-12-04 21:42:45
+2024-12-04 21:42:45
+2024-12-04 21:42:45
+2024-12-04 21:46:16
+2024-12-04 21:46:16
+2024-12-04 21:46:16
+2024-12-04 21:49:46
+2024-12-04 21:49:46
+2024-12-04 21:49:46
+2024-12-04 21:53:17
+2024-12-04 21:53:17
+2024-12-04 21:53:17
+2024-12-04 21:56:48
+2024-12-04 21:56:48
+2024-12-04 21:56:48
+2024-12-04 22:00:19
+2024-12-04 22:00:19
+2024-12-04 22:00:19
+2024-12-04 22:03:50
+2024-12-04 22:03:50
+2024-12-04 22:03:50
+2024-12-04 22:07:20
+2024-12-04 22:07:20
+2024-12-04 22:07:20
+2024-12-04 22:10:51
+2024-12-04 22:10:51
+2024-12-04 22:10:51
+2024-12-04 22:14:22
+2024-12-04 22:14:22
+2024-12-04 22:14:22
+2024-12-04 22:17:53
+2024-12-04 22:17:53
+2024-12-04 22:17:53
+2024-12-04 22:21:24
+2024-12-04 22:21:24
+2024-12-04 22:21:24
+2024-12-04 22:24:54
+2024-12-04 22:24:54
+2024-12-04 22:24:54
+2024-12-04 22:28:25
+2024-12-04 22:28:25
+2024-12-04 22:28:25
+2024-12-04 22:31:56
+2024-12-04 22:31:56
+2024-12-04 22:31:56
+2024-12-04 22:35:27
+2024-12-04 22:35:27
+2024-12-04 22:35:27
+2024-12-04 22:38:57
+2024-12-04 22:38:57
+2024-12-04 22:38:57
+2024-12-04 22:42:28
+2024-12-04 22:42:28
+2024-12-04 22:42:28
+2024-12-04 22:45:59
+2024-12-04 22:45:59
+2024-12-04 22:45:59
+2024-12-04 22:49:30
+2024-12-04 22:49:30
+2024-12-04 22:49:30
+2024-12-04 22:53:01
+2024-12-04 22:53:01
+2024-12-04 22:53:01
+2024-12-04 22:56:31
+2024-12-04 22:56:31
+2024-12-04 22:56:31
+2024-12-04 23:00:02
+2024-12-04 23:00:02
+2024-12-04 23:00:02
+2024-12-04 23:03:32
+2024-12-04 23:03:32
+2024-12-04 23:03:32
+2024-12-04 23:07:03
+2024-12-04 23:07:03
+2024-12-04 23:07:03
+2024-12-04 23:10:33
+2024-12-04 23:10:33
+2024-12-04 23:10:33
+2024-12-04 23:14:04
+2024-12-04 23:14:04
+2024-12-04 23:14:04
+2024-12-04 23:17:35
+2024-12-04 23:17:35
+2024-12-04 23:17:35
+2024-12-04 23:21:06
+2024-12-04 23:21:06
+2024-12-04 23:21:06
+2024-12-04 23:24:37
+2024-12-04 23:24:37
+2024-12-04 23:24:37
+2024-12-04 23:28:08
+2024-12-04 23:28:08
+2024-12-04 23:28:08
+2024-12-04 23:31:39
+2024-12-04 23:31:39
+2024-12-04 23:31:39
+2024-12-04 23:35:10
+2024-12-04 23:35:10
+2024-12-04 23:35:10
+2024-12-04 23:38:41
+2024-12-04 23:38:41
+2024-12-04 23:38:41
+2024-12-04 23:42:11
+2024-12-04 23:42:11
+2024-12-04 23:42:11
+2024-12-04 23:45:42
+2024-12-04 23:45:42
+2024-12-04 23:45:42
+2024-12-04 23:49:13
+2024-12-04 23:49:13
+2024-12-04 23:49:13
+2024-12-04 23:52:44
+2024-12-04 23:52:44
+2024-12-04 23:52:44
+2024-12-04 23:56:14
+2024-12-04 23:56:14
+2024-12-04 23:56:14
+2024-12-04 23:59:46
+2024-12-04 23:59:46
+2024-12-04 23:59:46
+INFO:     111.203.200.207:24336 - "POST /analysis/trend HTTP/1.1" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+INFO:     111.203.200.207:22555 - "POST /analysis/trend HTTP/1.1" 200 OK
+INFO:     111.203.200.207:53210 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.207:49112 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:      - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.207:20433 - "POST /analysis/time HTTP/1.1" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+INFO:     111.203.200.207:31875 - "POST /analysis/trend HTTP/1.1" 200 OK
+INFO:     111.203.200.207:21298 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.207:43465 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.207:30346 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.207:9364 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.207:21084 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.207:22718 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.207:27413 - "POST /analysis/envelope HTTP/1.1" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+INFO:     111.203.200.207:45814 - "POST /analysis/trend HTTP/1.1" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+INFO:     111.203.200.207:27781 - "POST /analysis/trend HTTP/1.1" 200 OK
+INFO:     87.236.176.42:59283 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     111.203.200.207:37321 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.207:9502 - "POST /analysis/frequency HTTP/1.1" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+INFO:     111.203.200.207:52984 - "POST /analysis/trend HTTP/1.1" 200 OK
+INFO:     111.203.200.207:32160 - "POST /analysis/envelope HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     152.32.235.78:55440 - "GET / HTTP/1.1" 404 Not Found
+INFO:     152.32.235.78:44100 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     152.32.235.78:44104 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     152.32.235.78:44108 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     95.214.53.198:37176 - "GET ../../etc HTTP/1.1" 404 Not Found
+INFO:     185.247.137.247:49305 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     15.235.224.238:46952 - "GET / HTTP/1.1" 404 Not Found
+INFO:     15.235.224.238:47790 - "GET / HTTP/1.1" 404 Not Found
+INFO:     114.246.34.20:4265 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     114.246.34.20:14290 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     114.246.34.20:13219 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     114.246.34.20:13241 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     114.246.34.20:14575 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     114.246.34.20:13352 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     114.246.34.20:5157 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     114.246.34.20:1682 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     114.246.34.20:5361 - "POST /analysis/time HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     87.236.176.103:48511 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     114.246.34.20:5721 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     114.246.34.20:2338 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     114.246.34.20:2580 - "POST /analysis/envelope HTTP/1.1" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+INFO:     114.246.34.20:12539 - "POST /analysis/trend HTTP/1.1" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+INFO:     114.246.34.20:14597 - "POST /analysis/trend HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+INFO:     223.113.128.142:42138 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     52.81.187.72:43082 - "GET / HTTP/1.1" 404 Not Found
+INFO:     52.81.187.72:43086 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     52.81.187.72:43088 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     52.81.187.72:43092 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.190.150:53468 - "POST /token HTTP/1.1" 404 Not Found
+INFO:     118.193.37.40:51614 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.66.166:34512 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.66.166:34534 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.66.166:34542 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.66.166:34544 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     192.168.50.235:38366 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:38450 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:38478 - "POST /analysis/frequency HTTP/1.0" 200 OK
+INFO:     192.168.50.235:41442 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     223.113.128.227:51456 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     140.179.7.43:37458 - "GET / HTTP/1.1" 404 Not Found
+INFO:     140.179.7.43:37472 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     140.179.7.43:37476 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     140.179.7.43:37484 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     39.101.141.146:60984 - "GET /v1/models HTTP/1.1" 404 Not Found
+INFO:     39.101.141.146:34202 - "GET /v1/models HTTP/1.1" 404 Not Found
+INFO:     39.101.141.146:45228 - "GET /v1/models HTTP/1.1" 404 Not Found
+INFO:     39.101.141.146:50834 - "GET /v1/models HTTP/1.1" 404 Not Found
+INFO:     101.36.121.140:59748 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     52.80.60.159:33840 - "GET / HTTP/1.1" 404 Not Found
+INFO:     52.80.60.159:33850 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     52.80.60.159:33866 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     52.80.60.159:33882 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     117.147.104.177:8940 - "GET / HTTP/1.1" 404 Not Found
+INFO:     223.113.128.168:40208 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     71.132.45.69:44046 - "GET / HTTP/1.1" 404 Not Found
+INFO:     71.132.45.69:44056 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     71.132.45.69:44060 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     71.132.45.69:44066 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.188.200:46500 - "POST /token HTTP/1.1" 404 Not Found
+INFO:     223.113.128.154:36430 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.101.112:48852 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.101.112:48854 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.101.112:48860 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.101.112:48856 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     192.168.50.235:42464 - "POST /analysis/frequency HTTP/1.0" 200 OK
+INFO:     39.101.141.146:47456 - "GET /version HTTP/1.1" 404 Not Found
+INFO:     39.101.141.146:49462 - "GET /version HTTP/1.1" 404 Not Found
+INFO:     39.101.141.146:34736 - "GET /version HTTP/1.1" 404 Not Found
+INFO:     152.32.169.188:43060 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.65.166:55746 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.65.166:55752 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.65.166:55758 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.65.166:55762 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     223.113.128.168:54464 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.20.144:49266 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.20.144:49288 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.20.144:49310 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.20.144:49306 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     39.101.141.146:34518 - "GET /version HTTP/1.1" 404 Not Found
+INFO:     39.101.141.146:55386 - "GET /version HTTP/1.1" 404 Not Found
+INFO:     39.101.141.146:51604 - "GET /version HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     152.32.172.212:56256 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.66.241:48464 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.66.241:48484 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.66.241:48528 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.66.241:48526 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     87.236.176.4:55495 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     103.149.26.207:46518 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.101.188:49362 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.101.188:49372 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.101.188:49376 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.101.188:49374 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.137.178:56250 - "POST /token HTTP/1.1" 404 Not Found
+INFO:     117.147.104.177:8772 - "GET / HTTP/1.1" 404 Not Found
+INFO:     223.113.128.162:51218 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.101.188:35588 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.101.188:35594 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.101.188:35598 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.101.188:35600 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     223.113.128.142:49104 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.99.100:36904 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.99.100:36922 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.99.100:36928 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.99.100:36930 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     223.113.128.171:47720 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.66.166:46842 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.66.166:46852 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.66.166:46864 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.66.166:46862 - "GET /robots.txt HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     3.133.93.247:47104 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     101.36.117.207:60664 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.101.79:34738 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.101.79:34748 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.101.79:34756 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.101.79:34754 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     117.147.104.207:15211 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.189.197:34208 - "POST /token HTTP/1.1" 404 Not Found
+INFO:     223.113.128.182:54960 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.64.160:47356 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.64.160:47384 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.64.160:47396 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.64.160:47392 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     223.113.128.188:50950 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     52.81.236.145:47222 - "GET / HTTP/1.1" 404 Not Found
+INFO:     52.81.236.145:47238 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     52.81.236.145:47250 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     52.81.236.145:47248 - "GET /robots.txt HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     39.101.141.146:43620 - "GET /v1/models HTTP/1.1" 404 Not Found
+INFO:     39.101.141.146:34282 - "GET /v1/models HTTP/1.1" 404 Not Found
+INFO:     39.101.141.146:53534 - "GET /v1/models HTTP/1.1" 404 Not Found
+INFO:     101.36.117.207:53646 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.189.197:60460 - "POST /token HTTP/1.1" 404 Not Found
+INFO:     106.75.65.166:33590 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.65.166:33600 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.65.166:33606 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.65.166:33608 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     223.113.128.165:56856 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     52.81.208.114:38592 - "GET / HTTP/1.1" 404 Not Found
+INFO:     52.81.208.114:38608 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     52.81.208.114:38612 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     52.81.208.114:38618 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     192.168.50.235:57220 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:57238 - "POST /analysis/frequency HTTP/1.0" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+INFO:     192.168.50.235:57260 - "POST /analysis/trend HTTP/1.0" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+INFO:     192.168.50.235:57270 - "POST /analysis/trend HTTP/1.0" 200 OK
+INFO:     152.32.216.14:59820 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     52.81.236.145:45646 - "GET / HTTP/1.1" 404 Not Found
+INFO:     52.81.236.145:45650 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     52.81.236.145:45656 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     52.81.236.145:45670 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     15.235.224.238:50200 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     223.113.128.158:44270 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.66.75:47034 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.66.75:47040 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.66.75:47048 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.66.75:47046 - "GET /robots.txt HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     103.149.26.207:50246 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     52.80.214.58:41928 - "GET / HTTP/1.1" 404 Not Found
+INFO:     52.80.214.58:41942 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     52.80.214.58:41946 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     52.80.214.58:41950 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.164.40:36194 - "POST /token HTTP/1.1" 404 Not Found
+INFO:     223.113.128.169:43026 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     185.247.137.205:36407 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.66.46:50824 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.66.46:50832 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.66.46:50838 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.66.46:50840 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     223.113.128.160:43172 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.66.187:56812 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.66.187:56818 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.66.187:56826 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.66.187:56828 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     223.113.128.149:59732 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.98.180:43814 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.98.180:43834 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.98.180:43870 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.98.180:43872 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     223.113.128.145:40194 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.66.75:55892 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.66.75:55900 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.66.75:55910 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.66.75:55912 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     223.113.128.188:43222 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.17.115:57698 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.17.115:57712 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.17.115:57722 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.17.115:57720 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     223.113.128.193:36866 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     52.81.78.71:59044 - "GET / HTTP/1.1" 404 Not Found
+INFO:     52.81.78.71:59060 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     52.81.78.71:59072 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     52.81.78.71:59062 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.156.189:40610 - "POST /token HTTP/1.1" 404 Not Found
+INFO:     101.36.106.165:45106 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     52.81.87.90:37548 - "GET / HTTP/1.1" 404 Not Found
+INFO:     52.81.87.90:37564 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     52.81.87.90:37570 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     52.81.87.90:37578 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     111.7.96.159:26268 - "GET / HTTP/1.1" 404 Not Found
+INFO:     223.113.128.166:43062 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.64.247:55828 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.64.247:55832 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.64.247:55834 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.64.247:55836 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     45.249.246.137:54948 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.66.187:46658 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.66.187:46710 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.66.187:46724 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.66.187:46730 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     223.113.128.153:51704 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.67.68:59018 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.67.68:59024 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.67.68:59036 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.67.68:59040 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.137.178:49042 - "POST /token HTTP/1.1" 404 Not Found
+INFO:     223.113.128.222:51530 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.66.103:55010 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.66.103:55012 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.66.103:55020 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     106.75.66.103:55022 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.186.101:41630 - "POST /token HTTP/1.1" 404 Not Found
+INFO:     87.236.176.19:47151 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     45.95.232.6:46632 - "GET / HTTP/1.1" 404 Not Found
+INFO:     15.235.224.238:54708 - "GET / HTTP/1.1" 404 Not Found
+INFO:     18.118.121.126:56016 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     15.235.224.238:45934 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     185.247.137.237:46273 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     125.122.32.66:57008 - "GET / HTTP/1.1" 404 Not Found
+INFO:     192.168.50.235:36316 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:36326 - "POST /analysis/frequency HTTP/1.0" 200 OK
+2024-12-04 15:51:00
+2024-12-04 15:51:00
+2024-12-04 15:51:00
+2024-12-04 15:54:35
+2024-12-04 15:54:35
+2024-12-04 15:54:35
+2024-12-04 15:58:07
+2024-12-04 15:58:07
+2024-12-04 15:58:07
+2024-12-04 16:01:38
+2024-12-04 16:01:38
+2024-12-04 16:01:38
+2024-12-04 16:05:10
+2024-12-04 16:05:10
+2024-12-04 16:05:10
+2024-12-04 16:08:41
+2024-12-04 16:08:41
+2024-12-04 16:08:41
+2024-12-04 16:12:11
+2024-12-04 16:12:11
+2024-12-04 16:12:11
+2024-12-04 16:15:43
+2024-12-04 16:15:43
+2024-12-04 16:15:43
+2024-12-04 16:19:14
+2024-12-04 16:19:14
+2024-12-04 16:19:14
+2024-12-04 16:22:45
+2024-12-04 16:22:45
+2024-12-04 16:22:45
+2024-12-04 16:26:16
+2024-12-04 16:26:16
+2024-12-04 16:26:16
+2024-12-04 16:29:47
+2024-12-04 16:29:47
+2024-12-04 16:29:47
+2024-12-04 16:33:18
+2024-12-04 16:33:18
+2024-12-04 16:33:18
+2024-12-04 16:36:49
+2024-12-04 16:36:49
+2024-12-04 16:36:49
+2024-12-04 16:40:20
+2024-12-04 16:40:20
+2024-12-04 16:40:20
+2024-12-04 16:43:51
+2024-12-04 16:43:51
+2024-12-04 16:43:51
+2024-12-04 16:47:22
+2024-12-04 16:47:22
+2024-12-04 16:47:22
+2024-12-04 16:50:53
+2024-12-04 16:50:53
+2024-12-04 16:50:53
+2024-12-04 16:54:23
+2024-12-04 16:54:23
+2024-12-04 16:54:23
+2024-12-04 16:57:54
+2024-12-04 16:57:54
+2024-12-04 16:57:54
+2024-12-04 17:01:25
+2024-12-04 17:01:25
+2024-12-04 17:01:25
+2024-12-04 17:04:56
+2024-12-04 17:04:56
+2024-12-04 17:04:56
+2024-12-04 17:08:27
+2024-12-04 17:08:27
+2024-12-04 17:08:27
+2024-12-04 17:11:57
+2024-12-04 17:11:57
+2024-12-04 17:11:57
+2024-12-04 17:15:28
+2024-12-04 17:15:28
+2024-12-04 17:15:28
+2024-12-04 17:18:59
+2024-12-04 17:18:59
+2024-12-04 17:18:59
+2024-12-04 17:22:29
+2024-12-04 17:22:29
+2024-12-04 17:22:29
+2024-12-04 17:26:00
+2024-12-04 17:26:00
+2024-12-04 17:26:00
+2024-12-04 17:29:31
+2024-12-04 17:29:31
+2024-12-04 17:29:31
+2024-12-04 17:33:01
+2024-12-04 17:33:01
+2024-12-04 17:33:01
+2024-12-04 17:36:32
+2024-12-04 17:36:32
+2024-12-04 17:36:32
+2024-12-04 17:40:03
+2024-12-04 17:40:03
+2024-12-04 17:40:03
+2024-12-04 17:43:34
+2024-12-04 17:43:34
+2024-12-04 17:43:34
+2024-12-04 17:47:04
+2024-12-04 17:47:04
+2024-12-04 17:47:04
+2024-12-04 17:50:35
+2024-12-04 17:50:35
+2024-12-04 17:50:35
+2024-12-04 17:54:07
+2024-12-04 17:54:07
+2024-12-04 17:54:07
+2024-12-04 17:57:37
+2024-12-04 17:57:37
+2024-12-04 17:57:37
+2024-12-04 18:01:08
+2024-12-04 18:01:08
+2024-12-04 18:01:08
+2024-12-04 18:04:39
+2024-12-04 18:04:39
+2024-12-04 18:04:39
+2024-12-04 18:08:10
+2024-12-04 18:08:10
+2024-12-04 18:08:10
+2024-12-04 18:11:40
+2024-12-04 18:11:40
+2024-12-04 18:11:40
+2024-12-04 18:15:12
+2024-12-04 18:15:12
+2024-12-04 18:15:12
+2024-12-04 18:18:42
+2024-12-04 18:18:42
+2024-12-04 18:18:42
+2024-12-04 18:22:13
+2024-12-04 18:22:13
+2024-12-04 18:22:13
+2024-12-04 19:00:52
+2024-12-04 19:00:52
+2024-12-04 19:00:52
+2024-12-04 19:04:22
+2024-12-04 19:04:22
+2024-12-04 19:04:22
+2024-12-04 19:07:53
+2024-12-04 19:07:53
+2024-12-04 19:07:53
+2024-12-04 19:11:24
+2024-12-04 19:11:24
+2024-12-04 19:11:24
+2024-12-04 19:14:55
+2024-12-04 19:14:55
+2024-12-04 19:14:55
+2024-12-04 19:18:26
+2024-12-04 19:18:26
+2024-12-04 19:18:26
+2024-12-04 19:21:56
+2024-12-04 19:21:56
+2024-12-04 19:21:56
+2024-12-04 19:25:27
+2024-12-04 19:25:27
+2024-12-04 19:25:27
+2024-12-04 19:28:58
+2024-12-04 19:28:58
+2024-12-04 19:28:58
+2024-12-04 19:32:29
+2024-12-04 19:32:29
+2024-12-04 19:32:29
+2024-12-04 19:35:59
+2024-12-04 19:35:59
+2024-12-04 19:35:59
+2024-12-04 19:39:30
+2024-12-04 19:39:30
+2024-12-04 19:39:30
+2024-12-04 19:43:01
+2024-12-04 19:43:01
+2024-12-04 19:43:01
+2024-12-04 19:46:31
+2024-12-04 19:46:31
+2024-12-04 19:46:31
+2024-12-04 19:50:02
+2024-12-04 19:50:02
+2024-12-04 19:50:02
+2024-12-04 19:53:32
+2024-12-04 19:53:32
+2024-12-04 19:53:32
+2024-12-04 19:57:03
+2024-12-04 19:57:03
+2024-12-04 19:57:03
+2024-12-04 20:00:34
+2024-12-04 20:00:34
+2024-12-04 20:00:34
+2024-12-04 20:04:05
+2024-12-04 20:04:05
+2024-12-04 20:04:05
+2024-12-04 20:07:35
+2024-12-04 20:07:35
+2024-12-04 20:07:35
+2024-12-04 20:11:06
+2024-12-04 20:11:06
+2024-12-04 20:11:06
+2024-12-04 20:14:37
+2024-12-04 20:14:37
+2024-12-04 20:14:37
+2024-12-04 20:18:08
+2024-12-04 20:18:08
+2024-12-04 20:18:08
+2024-12-04 20:21:38
+2024-12-04 20:21:38
+2024-12-04 20:21:38
+2024-12-04 20:25:09
+2024-12-04 20:25:09
+2024-12-04 20:25:09
+2024-12-04 20:28:39
+2024-12-04 20:28:39
+2024-12-04 20:28:39
+2024-12-04 20:32:10
+2024-12-04 20:32:10
+2024-12-04 20:32:10
+2024-12-04 20:35:41
+2024-12-04 20:35:41
+2024-12-04 20:35:41
+2024-12-04 20:39:12
+2024-12-04 20:39:12
+2024-12-04 20:39:12
+2024-12-04 20:42:42
+2024-12-04 20:42:42
+2024-12-04 20:42:42
+2024-12-04 20:46:13
+2024-12-04 20:46:13
+2024-12-04 20:46:13
+2024-12-04 20:49:44
+2024-12-04 20:49:44
+2024-12-04 20:49:44
+2024-12-04 20:53:14
+2024-12-04 20:53:14
+2024-12-04 20:53:14
+2024-12-04 20:56:44
+2024-12-04 20:56:44
+2024-12-04 20:56:44
+2024-12-04 21:00:15
+2024-12-04 21:00:15
+2024-12-04 21:00:15
+2024-12-04 21:03:45
+2024-12-04 21:03:45
+2024-12-04 21:03:45
+2024-12-04 21:07:16
+2024-12-04 21:07:16
+2024-12-04 21:07:16
+2024-12-04 21:10:46
+2024-12-04 21:10:46
+2024-12-04 21:10:46
+2024-12-04 21:14:17
+2024-12-04 21:14:17
+2024-12-04 21:14:17
+2024-12-04 21:17:48
+2024-12-04 21:17:48
+2024-12-04 21:17:48
+2024-12-04 21:21:18
+2024-12-04 21:21:18
+2024-12-04 21:21:18
+2024-12-04 21:24:50
+2024-12-04 21:24:50
+2024-12-04 21:24:50
+2024-12-04 21:28:20
+2024-12-04 21:28:20
+2024-12-04 21:28:20
+2024-12-04 21:31:51
+2024-12-04 21:31:51
+2024-12-04 21:31:51
+2024-12-04 21:35:22
+2024-12-04 21:35:22
+2024-12-04 21:35:22
+2024-12-04 21:38:52
+2024-12-04 21:38:52
+2024-12-04 21:38:52
+2024-12-04 21:42:23
+2024-12-04 21:42:23
+2024-12-04 21:42:23
+2024-12-04 21:45:54
+2024-12-04 21:45:54
+2024-12-04 21:45:54
+2024-12-04 21:49:25
+2024-12-04 21:49:25
+2024-12-04 21:49:25
+2024-12-04 21:52:55
+2024-12-04 21:52:55
+2024-12-04 21:52:55
+2024-12-04 21:56:26
+2024-12-04 21:56:26
+2024-12-04 21:56:26
+2024-12-04 21:59:56
+2024-12-04 21:59:56
+2024-12-04 21:59:56
+2024-12-04 22:03:30
+2024-12-04 22:03:30
+2024-12-04 22:03:30
+2024-12-04 22:07:00
+2024-12-04 22:07:00
+2024-12-04 22:07:00
+2024-12-04 22:10:31
+2024-12-04 22:10:31
+2024-12-04 22:10:31
+2024-12-04 22:14:02
+2024-12-04 22:14:02
+2024-12-04 22:14:02
+2024-12-04 22:17:33
+2024-12-04 22:17:33
+2024-12-04 22:17:33
+2024-12-04 22:21:04
+2024-12-04 22:21:04
+2024-12-04 22:21:04
+2024-12-04 22:24:35
+2024-12-04 22:24:35
+2024-12-04 22:24:35
+2024-12-04 22:28:05
+2024-12-04 22:28:05
+2024-12-04 22:28:05
+2024-12-04 22:31:36
+2024-12-04 22:31:36
+2024-12-04 22:31:36
+2024-12-04 22:35:07
+2024-12-04 22:35:07
+2024-12-04 22:35:07
+2024-12-04 22:38:38
+2024-12-04 22:38:38
+2024-12-04 22:38:38
+2024-12-04 22:42:09
+2024-12-04 22:42:09
+2024-12-04 22:42:09
+2024-12-04 22:45:41
+2024-12-04 22:45:41
+2024-12-04 22:45:41
+2024-12-04 22:49:12
+2024-12-04 22:49:12
+2024-12-04 22:49:12
+2024-12-04 22:52:43
+2024-12-04 22:52:43
+2024-12-04 22:52:43
+2024-12-04 22:56:15
+2024-12-04 22:56:15
+2024-12-04 22:56:15
+2024-12-04 22:59:46
+2024-12-04 22:59:46
+2024-12-04 22:59:46
+2024-12-04 23:03:18
+2024-12-04 23:03:18
+2024-12-04 23:03:18
+2024-12-04 23:06:49
+2024-12-04 23:06:49
+2024-12-04 23:06:49
+2024-12-04 23:10:19
+2024-12-04 23:10:19
+2024-12-04 23:10:19
+2024-12-04 23:13:51
+2024-12-04 23:13:51
+2024-12-04 23:13:51
+2024-12-04 23:17:21
+2024-12-04 23:17:21
+2024-12-04 23:17:21
+2024-12-04 23:20:53
+2024-12-04 23:20:53
+2024-12-04 23:20:53
+2024-12-04 23:24:23
+2024-12-04 23:24:23
+2024-12-04 23:24:23
+2024-12-04 23:27:54
+2024-12-04 23:27:54
+2024-12-04 23:27:54
+2024-12-04 23:31:26
+2024-12-04 23:31:26
+2024-12-04 23:31:26
+2024-12-04 23:34:57
+2024-12-04 23:34:57
+2024-12-04 23:34:57
+2024-12-04 23:38:28
+2024-12-04 23:38:28
+2024-12-04 23:38:28
+2024-12-04 23:41:59
+2024-12-04 23:41:59
+2024-12-04 23:41:59
+2024-12-04 23:45:31
+2024-12-04 23:45:31
+2024-12-04 23:45:31
+2024-12-04 23:49:02
+2024-12-04 23:49:02
+2024-12-04 23:49:02
+2024-12-04 23:52:32
+2024-12-04 23:52:32
+2024-12-04 23:52:32
+2024-12-04 23:56:03
+2024-12-04 23:56:03
+2024-12-04 23:56:03
+2024-12-04 23:59:34
+2024-12-04 23:59:34
+2024-12-04 23:59:34
+INFO:     192.168.50.235:36528 - "POST /analysis/trend HTTP/1.0" 200 OK
+INFO:     192.168.50.235:36542 - "POST /analysis/frequency HTTP/1.0" 200 OK
+INFO:     192.168.50.235:36666 - "POST /analysis/frequency HTTP/1.0" 200 OK
+INFO:     192.168.50.235:36770 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:36828 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:36850 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:36894 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:36918 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:36964 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:36990 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:36998 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:37010 - "POST /analysis/frequency HTTP/1.0" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 16:02:02
+2024-12-04 16:02:02
+2024-12-04 16:02:02
+2024-12-04 16:05:33
+2024-12-04 16:05:33
+2024-12-04 16:05:33
+2024-12-04 16:09:04
+2024-12-04 16:09:04
+2024-12-04 16:09:04
+2024-12-04 16:12:35
+2024-12-04 16:12:35
+2024-12-04 16:12:35
+2024-12-04 16:16:06
+2024-12-04 16:16:06
+2024-12-04 16:16:06
+2024-12-04 16:19:37
+2024-12-04 16:19:37
+2024-12-04 16:19:37
+2024-12-04 16:23:08
+2024-12-04 16:23:08
+2024-12-04 16:23:08
+2024-12-04 16:26:38
+2024-12-04 16:26:38
+2024-12-04 16:26:38
+2024-12-04 16:30:09
+2024-12-04 16:30:09
+2024-12-04 16:30:09
+2024-12-04 16:33:40
+2024-12-04 16:33:40
+2024-12-04 16:33:40
+2024-12-04 16:37:11
+2024-12-04 16:37:11
+2024-12-04 16:37:11
+2024-12-04 16:40:42
+2024-12-04 16:40:42
+2024-12-04 16:40:42
+2024-12-04 16:44:13
+2024-12-04 16:44:13
+2024-12-04 16:44:13
+2024-12-04 16:47:43
+2024-12-04 16:47:43
+2024-12-04 16:47:43
+2024-12-04 16:51:14
+2024-12-04 16:51:14
+2024-12-04 16:51:14
+2024-12-04 16:54:45
+2024-12-04 16:54:45
+2024-12-04 16:54:45
+2024-12-04 16:58:15
+2024-12-04 16:58:15
+2024-12-04 16:58:15
+2024-12-04 17:01:46
+2024-12-04 17:01:46
+2024-12-04 17:01:46
+2024-12-04 17:05:17
+2024-12-04 17:05:17
+2024-12-04 17:05:17
+2024-12-04 17:08:48
+2024-12-04 17:08:48
+2024-12-04 17:08:48
+2024-12-04 17:12:18
+2024-12-04 17:12:18
+2024-12-04 17:12:18
+2024-12-04 17:15:49
+2024-12-04 17:15:49
+2024-12-04 17:15:49
+2024-12-04 17:19:20
+2024-12-04 17:19:20
+2024-12-04 17:19:20
+2024-12-04 17:22:51
+2024-12-04 17:22:51
+2024-12-04 17:22:51
+2024-12-04 17:26:22
+2024-12-04 17:26:22
+2024-12-04 17:26:22
+2024-12-04 17:29:53
+2024-12-04 17:29:53
+2024-12-04 17:29:53
+2024-12-04 17:33:24
+2024-12-04 17:33:24
+2024-12-04 17:33:24
+2024-12-04 17:36:55
+2024-12-04 17:36:55
+2024-12-04 17:36:55
+2024-12-04 17:40:26
+2024-12-04 17:40:26
+2024-12-04 17:40:26
+2024-12-04 17:43:56
+2024-12-04 17:43:56
+2024-12-04 17:43:56
+2024-12-04 17:47:27
+2024-12-04 17:47:27
+2024-12-04 17:47:27
+2024-12-04 17:50:58
+2024-12-04 17:50:58
+2024-12-04 17:50:58
+2024-12-04 17:54:28
+2024-12-04 17:54:28
+2024-12-04 17:54:28
+2024-12-04 17:57:59
+2024-12-04 17:57:59
+2024-12-04 17:57:59
+2024-12-04 18:01:29
+2024-12-04 18:01:29
+2024-12-04 18:01:29
+2024-12-04 18:05:00
+2024-12-04 18:05:00
+2024-12-04 18:05:00
+2024-12-04 18:08:31
+2024-12-04 18:08:31
+2024-12-04 18:08:31
+2024-12-04 18:12:02
+2024-12-04 18:12:02
+2024-12-04 18:12:02
+2024-12-04 18:15:33
+2024-12-04 18:15:33
+2024-12-04 18:15:33
+2024-12-04 18:19:03
+2024-12-04 18:19:03
+2024-12-04 18:19:03
+2024-12-04 18:22:34
+2024-12-04 18:22:34
+2024-12-04 18:22:34
+2024-12-04 19:01:13
+2024-12-04 19:01:13
+2024-12-04 19:01:13
+2024-12-04 19:04:44
+2024-12-04 19:04:44
+2024-12-04 19:04:44
+2024-12-04 19:08:15
+2024-12-04 19:08:15
+2024-12-04 19:08:15
+2024-12-04 19:11:46
+2024-12-04 19:11:46
+2024-12-04 19:11:46
+2024-12-04 19:15:16
+2024-12-04 19:15:16
+2024-12-04 19:15:16
+2024-12-04 19:18:47
+2024-12-04 19:18:47
+2024-12-04 19:18:47
+2024-12-04 19:22:18
+2024-12-04 19:22:18
+2024-12-04 19:22:18
+2024-12-04 19:25:49
+2024-12-04 19:25:49
+2024-12-04 19:25:49
+2024-12-04 19:29:19
+2024-12-04 19:29:19
+2024-12-04 19:29:19
+2024-12-04 19:32:50
+2024-12-04 19:32:50
+2024-12-04 19:32:50
+2024-12-04 19:36:21
+2024-12-04 19:36:21
+2024-12-04 19:36:21
+2024-12-04 19:39:51
+2024-12-04 19:39:51
+2024-12-04 19:39:51
+2024-12-04 19:43:22
+2024-12-04 19:43:22
+2024-12-04 19:43:22
+2024-12-04 19:46:53
+2024-12-04 19:46:53
+2024-12-04 19:46:53
+2024-12-04 19:50:24
+2024-12-04 19:50:24
+2024-12-04 19:50:24
+2024-12-04 19:53:54
+2024-12-04 19:53:54
+2024-12-04 19:53:54
+2024-12-04 19:57:25
+2024-12-04 19:57:25
+2024-12-04 19:57:25
+2024-12-04 20:00:56
+2024-12-04 20:00:56
+2024-12-04 20:00:56
+2024-12-04 20:04:26
+2024-12-04 20:04:26
+2024-12-04 20:04:26
+2024-12-04 20:07:57
+2024-12-04 20:07:57
+2024-12-04 20:07:57
+2024-12-04 20:11:28
+2024-12-04 20:11:28
+2024-12-04 20:11:28
+2024-12-04 20:14:58
+2024-12-04 20:14:58
+2024-12-04 20:14:58
+2024-12-04 20:18:29
+2024-12-04 20:18:29
+2024-12-04 20:18:29
+2024-12-04 20:22:00
+2024-12-04 20:22:00
+2024-12-04 20:22:00
+2024-12-04 20:25:30
+2024-12-04 20:25:30
+2024-12-04 20:25:30
+2024-12-04 20:29:01
+2024-12-04 20:29:01
+2024-12-04 20:29:01
+2024-12-04 20:32:32
+2024-12-04 20:32:32
+2024-12-04 20:32:32
+2024-12-04 20:36:02
+2024-12-04 20:36:02
+2024-12-04 20:36:02
+2024-12-04 20:39:33
+2024-12-04 20:39:33
+2024-12-04 20:39:33
+2024-12-04 20:43:03
+2024-12-04 20:43:03
+2024-12-04 20:43:03
+2024-12-04 20:46:34
+2024-12-04 20:46:34
+2024-12-04 20:46:34
+2024-12-04 20:50:05
+2024-12-04 20:50:05
+2024-12-04 20:50:05
+2024-12-04 20:53:35
+2024-12-04 20:53:35
+2024-12-04 20:53:35
+2024-12-04 20:57:06
+2024-12-04 20:57:06
+2024-12-04 20:57:06
+2024-12-04 21:00:36
+2024-12-04 21:00:36
+2024-12-04 21:00:36
+2024-12-04 21:04:07
+2024-12-04 21:04:07
+2024-12-04 21:04:07
+2024-12-04 21:07:38
+2024-12-04 21:07:38
+2024-12-04 21:07:38
+2024-12-04 21:11:08
+2024-12-04 21:11:08
+2024-12-04 21:11:08
+2024-12-04 21:14:39
+2024-12-04 21:14:39
+2024-12-04 21:14:39
+2024-12-04 21:18:10
+2024-12-04 21:18:10
+2024-12-04 21:18:10
+2024-12-04 21:21:41
+2024-12-04 21:21:41
+2024-12-04 21:21:41
+2024-12-04 21:25:11
+2024-12-04 21:25:11
+2024-12-04 21:25:11
+2024-12-04 21:28:42
+2024-12-04 21:28:42
+2024-12-04 21:28:42
+2024-12-04 21:32:13
+2024-12-04 21:32:13
+2024-12-04 21:32:13
+2024-12-04 21:35:44
+2024-12-04 21:35:44
+2024-12-04 21:35:44
+2024-12-04 21:39:14
+2024-12-04 21:39:14
+2024-12-04 21:39:14
+2024-12-04 21:42:45
+2024-12-04 21:42:45
+2024-12-04 21:42:45
+2024-12-04 21:46:16
+2024-12-04 21:46:16
+2024-12-04 21:46:16
+2024-12-04 21:49:46
+2024-12-04 21:49:46
+2024-12-04 21:49:46
+2024-12-04 21:53:17
+2024-12-04 21:53:17
+2024-12-04 21:53:17
+2024-12-04 21:56:48
+2024-12-04 21:56:48
+2024-12-04 21:56:48
+2024-12-04 22:00:19
+2024-12-04 22:00:19
+2024-12-04 22:00:19
+2024-12-04 22:03:50
+2024-12-04 22:03:50
+2024-12-04 22:03:50
+2024-12-04 22:07:20
+2024-12-04 22:07:20
+2024-12-04 22:07:20
+2024-12-04 22:10:51
+2024-12-04 22:10:51
+2024-12-04 22:10:51
+2024-12-04 22:14:22
+2024-12-04 22:14:22
+2024-12-04 22:14:22
+2024-12-04 22:17:53
+2024-12-04 22:17:53
+2024-12-04 22:17:53
+2024-12-04 22:21:24
+2024-12-04 22:21:24
+2024-12-04 22:21:24
+2024-12-04 22:24:54
+2024-12-04 22:24:54
+2024-12-04 22:24:54
+2024-12-04 22:28:25
+2024-12-04 22:28:25
+2024-12-04 22:28:25
+2024-12-04 22:31:56
+2024-12-04 22:31:56
+2024-12-04 22:31:56
+2024-12-04 22:35:27
+2024-12-04 22:35:27
+2024-12-04 22:35:27
+2024-12-04 22:38:57
+2024-12-04 22:38:57
+2024-12-04 22:38:57
+2024-12-04 22:42:28
+2024-12-04 22:42:28
+2024-12-04 22:42:28
+2024-12-04 22:45:59
+2024-12-04 22:45:59
+2024-12-04 22:45:59
+2024-12-04 22:49:30
+2024-12-04 22:49:30
+2024-12-04 22:49:30
+2024-12-04 22:53:01
+2024-12-04 22:53:01
+2024-12-04 22:53:01
+2024-12-04 22:56:31
+2024-12-04 22:56:31
+2024-12-04 22:56:31
+2024-12-04 23:00:02
+2024-12-04 23:00:02
+2024-12-04 23:00:02
+2024-12-04 23:03:32
+2024-12-04 23:03:32
+2024-12-04 23:03:32
+2024-12-04 23:07:03
+2024-12-04 23:07:03
+2024-12-04 23:07:03
+2024-12-04 23:10:33
+2024-12-04 23:10:33
+2024-12-04 23:10:33
+2024-12-04 23:14:04
+2024-12-04 23:14:04
+2024-12-04 23:14:04
+2024-12-04 23:17:35
+2024-12-04 23:17:35
+2024-12-04 23:17:35
+2024-12-04 23:21:06
+2024-12-04 23:21:06
+2024-12-04 23:21:06
+2024-12-04 23:24:37
+2024-12-04 23:24:37
+2024-12-04 23:24:37
+2024-12-04 23:28:08
+2024-12-04 23:28:08
+2024-12-04 23:28:08
+2024-12-04 23:31:39
+2024-12-04 23:31:39
+2024-12-04 23:31:39
+2024-12-04 23:35:10
+2024-12-04 23:35:10
+2024-12-04 23:35:10
+2024-12-04 23:38:41
+2024-12-04 23:38:41
+2024-12-04 23:38:41
+2024-12-04 23:42:11
+2024-12-04 23:42:11
+2024-12-04 23:42:11
+2024-12-04 23:45:42
+2024-12-04 23:45:42
+2024-12-04 23:45:42
+2024-12-04 23:49:13
+2024-12-04 23:49:13
+2024-12-04 23:49:13
+2024-12-04 23:52:44
+2024-12-04 23:52:44
+2024-12-04 23:52:44
+2024-12-04 23:56:14
+2024-12-04 23:56:14
+2024-12-04 23:56:14
+2024-12-04 23:59:46
+2024-12-04 23:59:46
+2024-12-04 23:59:46
+INFO:     192.168.50.235:37104 - "POST /analysis/trend HTTP/1.0" 200 OK
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:55:00
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 15:58:31
+2024-12-04 16:02:02
+2024-12-04 16:02:02
+2024-12-04 16:02:02
+2024-12-04 16:05:33
+2024-12-04 16:05:33
+2024-12-04 16:05:33
+2024-12-04 16:09:04
+2024-12-04 16:09:04
+2024-12-04 16:09:04
+2024-12-04 16:12:35
+2024-12-04 16:12:35
+2024-12-04 16:12:35
+2024-12-04 16:16:06
+2024-12-04 16:16:06
+2024-12-04 16:16:06
+2024-12-04 16:19:37
+2024-12-04 16:19:37
+2024-12-04 16:19:37
+2024-12-04 16:23:08
+2024-12-04 16:23:08
+2024-12-04 16:23:08
+2024-12-04 16:26:38
+2024-12-04 16:26:38
+2024-12-04 16:26:38
+2024-12-04 16:30:09
+2024-12-04 16:30:09
+2024-12-04 16:30:09
+2024-12-04 16:33:40
+2024-12-04 16:33:40
+2024-12-04 16:33:40
+2024-12-04 16:37:11
+2024-12-04 16:37:11
+2024-12-04 16:37:11
+2024-12-04 16:40:42
+2024-12-04 16:40:42
+2024-12-04 16:40:42
+2024-12-04 16:44:13
+2024-12-04 16:44:13
+2024-12-04 16:44:13
+2024-12-04 16:47:43
+2024-12-04 16:47:43
+2024-12-04 16:47:43
+2024-12-04 16:51:14
+2024-12-04 16:51:14
+2024-12-04 16:51:14
+2024-12-04 16:54:45
+2024-12-04 16:54:45
+2024-12-04 16:54:45
+2024-12-04 16:58:15
+2024-12-04 16:58:15
+2024-12-04 16:58:15
+2024-12-04 17:01:46
+2024-12-04 17:01:46
+2024-12-04 17:01:46
+2024-12-04 17:05:17
+2024-12-04 17:05:17
+2024-12-04 17:05:17
+2024-12-04 17:08:48
+2024-12-04 17:08:48
+2024-12-04 17:08:48
+2024-12-04 17:12:18
+2024-12-04 17:12:18
+2024-12-04 17:12:18
+2024-12-04 17:15:49
+2024-12-04 17:15:49
+2024-12-04 17:15:49
+2024-12-04 17:19:20
+2024-12-04 17:19:20
+2024-12-04 17:19:20
+2024-12-04 17:22:51
+2024-12-04 17:22:51
+2024-12-04 17:22:51
+2024-12-04 17:26:22
+2024-12-04 17:26:22
+2024-12-04 17:26:22
+2024-12-04 17:29:53
+2024-12-04 17:29:53
+2024-12-04 17:29:53
+2024-12-04 17:33:24
+2024-12-04 17:33:24
+2024-12-04 17:33:24
+2024-12-04 17:36:55
+2024-12-04 17:36:55
+2024-12-04 17:36:55
+2024-12-04 17:40:26
+2024-12-04 17:40:26
+2024-12-04 17:40:26
+2024-12-04 17:43:56
+2024-12-04 17:43:56
+2024-12-04 17:43:56
+2024-12-04 17:47:27
+2024-12-04 17:47:27
+2024-12-04 17:47:27
+2024-12-04 17:50:58
+2024-12-04 17:50:58
+2024-12-04 17:50:58
+2024-12-04 17:54:28
+2024-12-04 17:54:28
+2024-12-04 17:54:28
+2024-12-04 17:57:59
+2024-12-04 17:57:59
+2024-12-04 17:57:59
+2024-12-04 18:01:29
+2024-12-04 18:01:29
+2024-12-04 18:01:29
+2024-12-04 18:05:00
+2024-12-04 18:05:00
+2024-12-04 18:05:00
+2024-12-04 18:08:31
+2024-12-04 18:08:31
+2024-12-04 18:08:31
+2024-12-04 18:12:02
+2024-12-04 18:12:02
+2024-12-04 18:12:02
+2024-12-04 18:15:33
+2024-12-04 18:15:33
+2024-12-04 18:15:33
+2024-12-04 18:19:03
+2024-12-04 18:19:03
+2024-12-04 18:19:03
+2024-12-04 18:22:34
+2024-12-04 18:22:34
+2024-12-04 18:22:34
+2024-12-04 19:01:13
+2024-12-04 19:01:13
+2024-12-04 19:01:13
+2024-12-04 19:04:44
+2024-12-04 19:04:44
+2024-12-04 19:04:44
+2024-12-04 19:08:15
+2024-12-04 19:08:15
+2024-12-04 19:08:15
+2024-12-04 19:11:46
+2024-12-04 19:11:46
+2024-12-04 19:11:46
+2024-12-04 19:15:16
+2024-12-04 19:15:16
+2024-12-04 19:15:16
+2024-12-04 19:18:47
+2024-12-04 19:18:47
+2024-12-04 19:18:47
+2024-12-04 19:22:18
+2024-12-04 19:22:18
+2024-12-04 19:22:18
+2024-12-04 19:25:49
+2024-12-04 19:25:49
+2024-12-04 19:25:49
+2024-12-04 19:29:19
+2024-12-04 19:29:19
+2024-12-04 19:29:19
+2024-12-04 19:32:50
+2024-12-04 19:32:50
+2024-12-04 19:32:50
+2024-12-04 19:36:21
+2024-12-04 19:36:21
+2024-12-04 19:36:21
+2024-12-04 19:39:51
+2024-12-04 19:39:51
+2024-12-04 19:39:51
+2024-12-04 19:43:22
+2024-12-04 19:43:22
+2024-12-04 19:43:22
+2024-12-04 19:46:53
+2024-12-04 19:46:53
+2024-12-04 19:46:53
+2024-12-04 19:50:24
+2024-12-04 19:50:24
+2024-12-04 19:50:24
+2024-12-04 19:53:54
+2024-12-04 19:53:54
+2024-12-04 19:53:54
+2024-12-04 19:57:25
+2024-12-04 19:57:25
+2024-12-04 19:57:25
+2024-12-04 20:00:56
+2024-12-04 20:00:56
+2024-12-04 20:00:56
+2024-12-04 20:04:26
+2024-12-04 20:04:26
+2024-12-04 20:04:26
+2024-12-04 20:07:57
+2024-12-04 20:07:57
+2024-12-04 20:07:57
+2024-12-04 20:11:28
+2024-12-04 20:11:28
+2024-12-04 20:11:28
+2024-12-04 20:14:58
+2024-12-04 20:14:58
+2024-12-04 20:14:58
+2024-12-04 20:18:29
+2024-12-04 20:18:29
+2024-12-04 20:18:29
+2024-12-04 20:22:00
+2024-12-04 20:22:00
+2024-12-04 20:22:00
+2024-12-04 20:25:30
+2024-12-04 20:25:30
+2024-12-04 20:25:30
+2024-12-04 20:29:01
+2024-12-04 20:29:01
+2024-12-04 20:29:01
+2024-12-04 20:32:32
+2024-12-04 20:32:32
+2024-12-04 20:32:32
+2024-12-04 20:36:02
+2024-12-04 20:36:02
+2024-12-04 20:36:02
+2024-12-04 20:39:33
+2024-12-04 20:39:33
+2024-12-04 20:39:33
+2024-12-04 20:43:03
+2024-12-04 20:43:03
+2024-12-04 20:43:03
+2024-12-04 20:46:34
+2024-12-04 20:46:34
+2024-12-04 20:46:34
+2024-12-04 20:50:05
+2024-12-04 20:50:05
+2024-12-04 20:50:05
+2024-12-04 20:53:35
+2024-12-04 20:53:35
+2024-12-04 20:53:35
+2024-12-04 20:57:06
+2024-12-04 20:57:06
+2024-12-04 20:57:06
+2024-12-04 21:00:36
+2024-12-04 21:00:36
+2024-12-04 21:00:36
+2024-12-04 21:04:07
+2024-12-04 21:04:07
+2024-12-04 21:04:07
+2024-12-04 21:07:38
+2024-12-04 21:07:38
+2024-12-04 21:07:38
+2024-12-04 21:11:08
+2024-12-04 21:11:08
+2024-12-04 21:11:08
+2024-12-04 21:14:39
+2024-12-04 21:14:39
+2024-12-04 21:14:39
+2024-12-04 21:18:10
+2024-12-04 21:18:10
+2024-12-04 21:18:10
+2024-12-04 21:21:41
+2024-12-04 21:21:41
+2024-12-04 21:21:41
+2024-12-04 21:25:11
+2024-12-04 21:25:11
+2024-12-04 21:25:11
+2024-12-04 21:28:42
+2024-12-04 21:28:42
+2024-12-04 21:28:42
+2024-12-04 21:32:13
+2024-12-04 21:32:13
+2024-12-04 21:32:13
+2024-12-04 21:35:44
+2024-12-04 21:35:44
+2024-12-04 21:35:44
+2024-12-04 21:39:14
+2024-12-04 21:39:14
+2024-12-04 21:39:14
+2024-12-04 21:42:45
+2024-12-04 21:42:45
+2024-12-04 21:42:45
+2024-12-04 21:46:16
+2024-12-04 21:46:16
+2024-12-04 21:46:16
+2024-12-04 21:49:46
+2024-12-04 21:49:46
+2024-12-04 21:49:46
+2024-12-04 21:53:17
+2024-12-04 21:53:17
+2024-12-04 21:53:17
+2024-12-04 21:56:48
+2024-12-04 21:56:48
+2024-12-04 21:56:48
+2024-12-04 22:00:19
+2024-12-04 22:00:19
+2024-12-04 22:00:19
+2024-12-04 22:03:50
+2024-12-04 22:03:50
+2024-12-04 22:03:50
+2024-12-04 22:07:20
+2024-12-04 22:07:20
+2024-12-04 22:07:20
+2024-12-04 22:10:51
+2024-12-04 22:10:51
+2024-12-04 22:10:51
+2024-12-04 22:14:22
+2024-12-04 22:14:22
+2024-12-04 22:14:22
+2024-12-04 22:17:53
+2024-12-04 22:17:53
+2024-12-04 22:17:53
+2024-12-04 22:21:24
+2024-12-04 22:21:24
+2024-12-04 22:21:24
+2024-12-04 22:24:54
+2024-12-04 22:24:54
+2024-12-04 22:24:54
+2024-12-04 22:28:25
+2024-12-04 22:28:25
+2024-12-04 22:28:25
+2024-12-04 22:31:56
+2024-12-04 22:31:56
+2024-12-04 22:31:56
+2024-12-04 22:35:27
+2024-12-04 22:35:27
+2024-12-04 22:35:27
+2024-12-04 22:38:57
+2024-12-04 22:38:57
+2024-12-04 22:38:57
+2024-12-04 22:42:28
+2024-12-04 22:42:28
+2024-12-04 22:42:28
+2024-12-04 22:45:59
+2024-12-04 22:45:59
+2024-12-04 22:45:59
+2024-12-04 22:49:30
+2024-12-04 22:49:30
+2024-12-04 22:49:30
+2024-12-04 22:53:01
+2024-12-04 22:53:01
+2024-12-04 22:53:01
+2024-12-04 22:56:31
+2024-12-04 22:56:31
+2024-12-04 22:56:31
+2024-12-04 23:00:02
+2024-12-04 23:00:02
+2024-12-04 23:00:02
+2024-12-04 23:03:32
+2024-12-04 23:03:32
+2024-12-04 23:03:32
+2024-12-04 23:07:03
+2024-12-04 23:07:03
+2024-12-04 23:07:03
+2024-12-04 23:10:33
+2024-12-04 23:10:33
+2024-12-04 23:10:33
+2024-12-04 23:14:04
+2024-12-04 23:14:04
+2024-12-04 23:14:04
+2024-12-04 23:17:35
+2024-12-04 23:17:35
+2024-12-04 23:17:35
+2024-12-04 23:21:06
+2024-12-04 23:21:06
+2024-12-04 23:21:06
+2024-12-04 23:24:37
+2024-12-04 23:24:37
+2024-12-04 23:24:37
+2024-12-04 23:28:08
+2024-12-04 23:28:08
+2024-12-04 23:28:08
+2024-12-04 23:31:39
+2024-12-04 23:31:39
+2024-12-04 23:31:39
+2024-12-04 23:35:10
+2024-12-04 23:35:10
+2024-12-04 23:35:10
+2024-12-04 23:38:41
+2024-12-04 23:38:41
+2024-12-04 23:38:41
+2024-12-04 23:42:11
+2024-12-04 23:42:11
+2024-12-04 23:42:11
+2024-12-04 23:45:42
+2024-12-04 23:45:42
+2024-12-04 23:45:42
+2024-12-04 23:49:13
+2024-12-04 23:49:13
+2024-12-04 23:49:13
+2024-12-04 23:52:44
+2024-12-04 23:52:44
+2024-12-04 23:52:44
+2024-12-04 23:56:14
+2024-12-04 23:56:14
+2024-12-04 23:56:14
+2024-12-04 23:59:46
+2024-12-04 23:59:46
+2024-12-04 23:59:46
+INFO:     192.168.50.235:37118 - "POST /analysis/trend HTTP/1.0" 200 OK
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     165.154.138.34:50074 - "GET / HTTP/1.1" 404 Not Found
+INFO:     165.154.138.34:50078 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     165.154.138.34:50084 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     165.154.138.34:50088 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     87.236.176.53:58033 - "GET / HTTP/1.1" 404 Not Found
+INFO:     114.246.35.209:10861 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     114.246.35.209:6622 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     114.246.35.209:10099 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     114.246.35.209:5786 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     114.246.35.209:12451 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     114.246.35.209:4196 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     114.246.35.209:4199 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     114.246.35.209:16361 - "POST /analysis/frequency HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     118.193.56.149:39698 - "GET / HTTP/1.1" 404 Not Found
+INFO:     118.193.56.149:44604 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     118.193.56.149:57026 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     118.193.56.149:34704 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     185.247.137.165:36333 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     15.235.224.238:45586 - "GET / HTTP/1.1" 404 Not Found
+INFO:     152.32.225.35:55872 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     223.113.128.132:49090 - "GET / HTTP/1.1" 404 Not Found
+INFO:     223.113.128.132:49104 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     223.113.128.132:49114 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     223.113.128.132:49112 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:64169 - "GET / HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:57367 - "GET / HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:57367 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:64169 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:64169 - "GET / HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:57368 - "GET / HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:57368 - "GET / HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:64170 - "GET /analysis/time HTTP/1.1" 405 Method Not Allowed
+INFO:     192.168.50.201:64170 - "GET /analysis/time HTTP/1.1" 405 Method Not Allowed
+INFO:     192.168.50.201:57378 - "GET / HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:57378 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:57370 - "GET /analysis/time HTTP/1.1" 405 Method Not Allowed
+INFO:     192.168.50.201:57398 - "GET /analysis/time HTTP/1.1" 405 Method Not Allowed
+INFO:     106.75.157.47:54714 - "POST /token HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     185.247.137.212:42513 - "GET / HTTP/1.1" 404 Not Found
+INFO:     3.145.107.125:49314 - "GET / HTTP/1.1" 404 Not Found
+INFO:     3.145.107.125:49326 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     192.168.50.235:41118 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:41162 - "POST /analysis/time HTTP/1.0" 200 OK
+WARNING:  Invalid HTTP request received.
+INFO:     192.168.50.235:44658 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:44688 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:44752 - "POST /analysis/frequency HTTP/1.0" 200 OK
+INFO:     192.168.50.235:44790 - "POST /analysis/frequency HTTP/1.0" 200 OK
+INFO:     192.168.50.235:44870 - "POST /analysis/envelope HTTP/1.0" 200 OK
+INFO:     192.168.50.235:51806 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:52436 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:52504 - "POST /analysis/time HTTP/1.0" 200 OK
+INFO:     192.168.50.235:52796 - "POST /analysis/time HTTP/1.0" 200 OK
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.

+ 187 - 0
api_20241201.py

@@ -0,0 +1,187 @@
+# coding=utf-8
+from fastapi import FastAPI,  UploadFile, HTTPException
+from fastapi.responses import JSONResponse
+from typing import List, Optional
+from pydantic import BaseModel
+import os
+import json
+import shutil
+import pandas as pd
+import uvicorn
+from cms_class_20241201 import CMSAnalyst
+from typing import List, Optional, Union
+from pydantic import BaseModel, Field, model_validator
+
+# 初始化 FastAPI 应用
+app = FastAPI()
+
+
+'''
+input:
+{
+    "ids":[12345,121212],
+    "windCode":"xxxx",
+    "analysisType":"xxxxx",
+    "fmin":int(xxxx) (None),
+    "fmax":"int(xxxx) (None),
+}
+
+
+output:
+
+{
+data:[
+    {
+    "type":"envelope_spectrum",
+    "x":list(x),
+    "y":list(y),
+    "title":title,
+    "xaxis":xaxis,
+    "yaxis":yaxis
+    },
+    {
+    "type":"bandpass_filtered",
+    "x":list(x),
+    "y":list(y),
+    "title":title,
+    "xaxis":xaxis,
+    "yaxis":yaxis
+    },
+
+
+    # 其他情况:
+    {
+    "type":"trend_analysis",
+    "Mean": mean_value,
+    "Max": max_value,
+    "Min": min_value,
+    "Xrms": Xrms,
+    "Xp": Xp,
+    "If": If,
+    "Cf": Cf,
+    "Sf": Sf,
+    "Ce": Ce,
+    "Cw": Cw,
+    "Cq": Cq
+    }
+],
+
+"code": 200,
+"message":success
+}
+
+'''
+# 请求模型定义
+class AnalysisInput(BaseModel):
+    # ids: List
+    ids: List[int]
+    windCode: str
+    analysisType: str
+    fmin: Optional[int] = None
+    fmax: Optional[int] = None
+
+    @model_validator(mode='before')
+    def convert_ids(cls, values):
+        if isinstance(values.get('ids'), int):
+            values['ids'] = [values['ids']]
+        return values
+
+# url = "http://127.0.0.1:8888/analysis/trend"
+
+
+@app.post("/analysis/{analysisType}")
+async def analyze(analysisType: str, input_data:AnalysisInput):
+
+    analysis_map = {
+        "envelope": "envelope_spectrum",#包络谱分析
+        "frequency": "frequency_domain",#频域分析
+        "time": "time_domain",#时域分析
+        "trend": "trend_analysis"#趋势分析
+    }
+
+
+    if analysisType not in analysis_map:
+        raise HTTPException(status_code=400, detail="非可用的分析类型")
+
+
+    try:
+        cms = CMSAnalyst(input_data.fmin, input_data.fmax, input_data.windCode, input_data.ids)
+
+        func = getattr(cms, analysis_map[analysisType])
+        # if callable(func):
+        #     func_res = func()
+        # func_res = json.loads(func_res)
+        # func_res['type'] = analysisType
+        # # return {
+        # #     "message": "success",
+        # #     "data": [func_res],
+        # # }
+        if callable(func):    # 用于判断一个对象是否可以被调用,是的话返回true
+            func_res = func()
+        if isinstance(func_res, str):
+            func_res = json.loads(func_res)    # 字符串转化为字典形式
+        if isinstance(func_res, dict):
+            func_res['type'] = analysisType
+        elif isinstance(func_res, list):
+            func_res = {'type': analysisType, 'data': func_res}
+        else:
+            # 处理其他情况,例如其他数据类型
+            func_res = {'type': analysisType, 'data': str(func_res)}
+        return json.dumps(func_res,ensure_ascii=False)   #对象转化为字符串形式
+        # return JSONResponse(content=func_res)#返回json格式
+    except Exception as e:
+          return {"message": "error", "detail": str(e)}
+
+# @app.post("/analysis/{analysisType}")
+# async def analyze(analysisType: str, input_data:AnalysisInput):
+#     try:
+#         analysis_map = {
+#             "envelope": ["envelope_spectrum","bandpass_filtered"],
+#             "frequency": "frequency_domain",
+#             "time": "time_domain",
+#             "trend": "trend_analysis"
+#         }
+
+
+#         if analysisType not in analysis_map:
+#             raise HTTPException(status_code=400, detail="非可用的分析类型")
+
+
+#         try:
+#             cms = CMSAnalyst(input_data.fmin, input_data.fmax, input_data.windCode, input_data.ids)
+            
+#             if analysisType == "envelope":
+#                 tmp = []
+#                 for type_func in analysis_map[analysisType]:
+#                     func = getattr(cms, type_func)
+#                     if callable(func):
+#                         func_res = func()
+#                     func_res['type'] = analysisType
+#                     tmp.append(func_res)
+
+#                 return {
+#                     "message": "success",
+#                     "data": tmp,
+#                 }
+            
+#             else:
+#                 func = getattr(cms, analysis_map[analysisType])
+#                 if callable(func):
+#                     func_res = func()
+#                 func_res['type'] = analysisType
+#                 return {
+#                     "message": "success",
+#                     "data": [func_res],
+#                 }
+#         except Exception as e:
+#             return {"message": "error", "detail": str(e)}
+#     except:
+#         raise HTTPException(status_code=400, detail="接口返回错误")
+
+
+if __name__ == "__main__":
+    uvicorn.run(
+        app,
+        host=("0.0.0.0"),
+        port=8888
+    )

+ 69 - 0
api_test.py

@@ -0,0 +1,69 @@
+import requests
+import json
+
+url = 'http://172.17.0.1:8888/analysis/time'
+
+data={
+    "ids":[67803,67804],
+    "windCode":"SKF001",
+    "analysisType":"time",
+    "fmin":None,
+    "fmax":None,
+}
+
+json_data = json.dumps(data)
+print(json_data)
+headers = {
+    'Content-Type': 'application/json'
+}
+
+response = requests.post(url, headers=headers, data=json_data)
+# print("response:",response.json())
+if response.status_code == 200:
+    # print(response.json())
+    # print("response.text",response.text)  # 打印原始响应内容
+    try:
+        data = response.json()
+        print(data)
+    except json.JSONDecodeError as e:
+        print(f"解析JSON时出错: {e}")
+else:
+    print(f"Error: {response.text}")
+
+
+'''
+{"ids": [67803, 67804], 
+"windCode": "SKF001_wave", 
+"analysisType": "trend", 
+"fmin": null, 
+"fmax": null}
+{"type": "trend",
+ "data": [{"fs": 2560.0, 
+            "Mean": -0.0, 
+            "Max": 4.84, 
+            "Min": -6.0, 
+            "Xrms": 1.59, 
+            "Xp": 5.42, 
+            "If": 4.26, 
+            "Cf": 3.42,
+            "Sf": -128989487.68,
+            "Ce": 5.02, 
+            "Cw": 1.58, 
+            "Cq": 2.91, 
+            "velocity_rms": 0.03491697493565808, 
+            "time_stamp": "2024-07-01 00:00:14"},  
+        {"fs": 2560.0, 
+        "Mean": 0.0, 
+        "Max": 0.13, 
+        "Min": -0.17,
+        "Xrms": 0.06, 
+        "Xp": 0.15, 
+        "If": 3.13, 
+        "Cf": 2.56, 
+        "Sf": 115003052.92, 
+        "Ce": 3.63, 
+        "Cw": 1.51, 
+        "Cq": 2.6, 
+        "velocity_rms": 0.05647856377107759, 
+        "time_stamp": "2024-07-01 00:00:27"}]}
+'''

+ 535 - 0
cms_class_20241201.py

@@ -0,0 +1,535 @@
+import numpy as np
+from scipy.signal import hilbert
+from scipy.fft import ifft
+import plotly.graph_objs as go
+import pandas as pd
+from sqlalchemy import create_engine, text
+import sqlalchemy
+import json
+import ast
+import math
+
+'''
+# 输入:
+{
+    "ids":[12345,121212],
+    "windCode":"xxxx",
+    "analysisType":"xxxxx",
+    "fmin":int(xxxx) (None),
+    "fmax":"int(xxxx) (None),
+}
+
+[{id:xxxx,"time":xxx},{}]
+
+id[123456]
+
+# 通过id,读取mysql,获取数据
+engine = create_engine('mysql+pymysql://root:admin123456@192.168.50.235:30306/energy_data')
+
+def get_by_id(table_name,id):
+    lastday_df_sql = f"SELECT * FROM {table_name} where id = {id} "
+    # print(lastday_df_sql)
+    df = pd.read_sql(lastday_df_sql, engine)
+    return df
+
+select distinct id, timeStamp from table_name group by ids
+
+ids  time 
+1   xxx
+2   xxxx
+
+df_data = []    
+# for id in ids:
+# sql_data = get_by_id('SKF001_wave',id)
+# df_data.append(sql_data)
+# print(sql_data)
+
+[df1,df2]
+'''
+
+
+'''
+数据库字段:
+"samplingFrequency"
+"timeStamp"
+"mesureData"
+'''
+# %%
+
+# %%
+
+# 主要的类
+class CMSAnalyst:
+    def __init__(self, fmin, fmax, table_name,ids):
+
+        # envelope_spectrum_analysis
+        # datas是[df1,df2,.....]
+        self.datas = self._get_by_id(table_name,ids)
+        self.datas = [df[['mesure_data','time_stamp','sampling_frequency','wind_turbine_number','rotational_speed','mesure_point_name']] for df in self.datas]
+        # 只输入一个id,返回一个[df],所以拿到self.data[0]
+        self.data_filter = self.datas[0]
+        # print(self.data_filter)
+        # 取数据列
+        self.data = np.array(ast.literal_eval(self.data_filter['mesure_data'][0]))
+        self.envelope_spectrum_m = self.data.shape[0]
+        self.envelope_spectrum_n = 1
+        self.fs = int(self.data_filter['sampling_frequency'].iloc[0])
+        self.envelope_spectrum_t = np.arange(self.envelope_spectrum_m) / self.fs
+        self.fmin = fmin if fmin is not None else 0 
+        self.fmax = fmax if fmax is not None else float('inf') 
+        self.envelope_spectrum_y = self._bandpass_filter(self.data)
+        self.f, self.HP = self._calculate_envelope_spectrum(self.envelope_spectrum_y)
+        self.wind_code = self.data_filter['wind_turbine_number'].iloc[0]
+        self.rpm_Gen = self.data_filter['rotational_speed'].iloc[0]
+        self.mesure_point_name = self.data_filter['mesure_point_name'].iloc[0]
+        self.fn_Gen = round(self.rpm_Gen/60,2)
+
+        self.CF = self.Characteristic_Frequency()
+        print(self.CF)
+        self.CF = pd.DataFrame(self.CF,index=[0])
+        print(self.CF)
+        print(self.rpm_Gen)
+        if self.CF['type'].iloc[0] == 'bearing':
+            n_rolls_m = self.CF['n_rolls'].iloc[0]
+            d_rolls_m = self.CF['d_rolls'].iloc[0]
+            D_diameter_m = self.CF['D_diameter'].iloc[0]
+            theta_deg_m = self.CF['theta_deg'].iloc[0]
+            print(n_rolls_m)
+            print(d_rolls_m)
+            print(D_diameter_m)
+            print(theta_deg_m)
+            self.bearing_frequencies = self.calculate_bearing_frequencies(n_rolls_m, d_rolls_m, D_diameter_m, theta_deg_m, self.rpm_Gen)
+        print(self.bearing_frequencies)
+        self.bearing_frequencies = pd.DataFrame(self.bearing_frequencies,index=[0])
+        print(self.bearing_frequencies)
+        # frequency_domain_analysis
+        (
+            self.frequency_domain_analysis_t,
+            self.frequency_domain_analysis_f,
+            self.frequency_domain_analysis_m,
+            self.frequency_domain_analysis_mag,
+            self.frequency_domain_analysis_Xrms,
+        ) = self._calculate_spectrum(self.data)
+
+        # time_domain_analysis
+        self.time_domain_analysis_t = np.arange(self.data.shape[0]) / self.fs
+        
+    def _get_by_id(self, windcode, ids):
+        df_res = []
+        engine = create_engine('mysql+pymysql://root:admin123456@192.168.50.235:30306/energy_data_prod')
+        for id in ids:
+            table_name=windcode+'_wave'
+            lastday_df_sql = f"SELECT * FROM {table_name} where id = {id} "
+            # print(lastday_df_sql)
+            df = pd.read_sql(lastday_df_sql, engine)
+            df_res.append(df)
+        return df_res
+
+    # envelope_spectrum_analysis
+    def _bandpass_filter(self, data):
+        """带通滤波"""
+        
+        m= data.shape[0]
+        ni = round(self.fmin * self.envelope_spectrum_m / self.fs + 1)
+        # na = round(self.fmax * self.envelope_spectrum_m / self.fs + 1)
+        if self.fmax == float('inf'):
+            na = m
+        else:
+            na = round(self.fmax * m / self.fs + 1)
+        col = 1
+        y = np.zeros((self.envelope_spectrum_m, col))
+        # for p in range(col):
+        #     print(data.shape,p)
+        z = np.fft.fft(data)
+        a = np.zeros(self.envelope_spectrum_m, dtype=complex)
+        a[ni:na] = z[ni:na]
+        a[self.envelope_spectrum_m - na + 1 : self.envelope_spectrum_m - ni + 1] = z[
+            self.envelope_spectrum_m - na + 1 : self.envelope_spectrum_m - ni + 1
+        ]
+        z = np.fft.ifft(a)
+        y[:, 0] = np.real(z)
+
+        return y
+
+    def _calculate_envelope_spectrum(self, y):
+        """计算包络谱"""
+        m, n = y.shape
+        HP = np.zeros((m, n))
+        col = 1
+        for p in range(col):
+            H = np.abs(hilbert(y[:, p] - np.mean(y[:, p])))
+            HP[:, p] = np.abs(np.fft.fft(H - np.mean(H))) * 2 / m
+        f = np.fft.fftfreq(m, d=1 / self.fs)
+        return f, HP
+
+
+    def envelope_spectrum(self):
+        """绘制包络谱"""
+        # 只取正频率部分
+        positive_frequencies = self.f[: self.envelope_spectrum_m // 2]
+        positive_HP = self.HP[: self.envelope_spectrum_m // 2, 0]
+
+        x = positive_frequencies
+        y = positive_HP
+        title = "包络谱"
+        xaxis = "频率(Hz)"
+        yaxis = "加速度(m/s^2)"
+        Xrms = np.sqrt(np.mean(y**2))  # 加速度均方根值(有效值)
+        rpm_Gen = round(self.rpm_Gen, 2)
+        BPFI_1X = round(self.bearing_frequencies['BPFI'].iloc[0], 2)
+        BPFO_1X = round(self.bearing_frequencies['BPFO'].iloc[0], 2)
+        BSF_1X = round(self.bearing_frequencies['BSF'].iloc[0], 2)
+        FTF_1X = round(self.bearing_frequencies['FTF'].iloc[0], 2)
+        fn_Gen = round(self.fn_Gen, 2)
+        _3P_1X = round(self.fn_Gen, 2) * 3
+
+        if self.CF['type'].iloc[0] == 'bearing':
+            result = {
+                "fs":self.fs,
+                "Xrms":round(Xrms, 2),
+                "x":list(x),
+                "y":list(y),
+                "title":title,
+                "xaxis":xaxis,
+                "yaxis":yaxis,
+                "rpm_Gen": round(rpm_Gen, 2),  # 转速r/min
+                "BPFI":  [{"Xaxis": BPFI_1X ,"val": "1BPFI"},{"Xaxis": BPFI_1X*2 ,"val": "2BPFI"},
+                          {"Xaxis": BPFI_1X*3, "val": "3BPFI"}, {"Xaxis": BPFI_1X*4, "val": "4BPFI"},
+                          {"Xaxis": BPFI_1X*5, "val": "5BPFI"}, {"Xaxis": BPFI_1X*6, "val": "6BPFI"}],
+                "BPFO": [{"Xaxis": BPFO_1X ,"val": "1BPFO"},{"Xaxis": BPFO_1X*2 ,"val": "2BPFO"},
+                          {"Xaxis": BPFO_1X*3, "val": "3BPFO"}, {"Xaxis": BPFO_1X*4, "val": "4BPFO"},
+                          {"Xaxis": BPFO_1X*5, "val": "5BPFO"}, {"Xaxis": BPFO_1X*6, "val": "6BPFO"}],
+                "BSF": [{"Xaxis": BSF_1X ,"val": "1BSF"},{"Xaxis": BSF_1X*2 ,"val": "2BSF"},
+                          {"Xaxis": BSF_1X*3, "val": "3BSF"}, {"Xaxis": BSF_1X*4, "val": "4BSF"},
+                          {"Xaxis": BSF_1X*5, "val": "5BSF"}, {"Xaxis": BSF_1X*6, "val": "6BSF"}],
+                "FTF": [{"Xaxis": FTF_1X ,"val": "1FTF"},{"Xaxis": FTF_1X*2 ,"val": "2FTF"},
+                          {"Xaxis": FTF_1X*3, "val": "3FTF"}, {"Xaxis": FTF_1X*4, "val": "4FTF"},
+                          {"Xaxis": FTF_1X*5, "val": "5FTF"}, {"Xaxis": FTF_1X*6, "val": "6FTF"}],
+                "fn_Gen":[{"Xaxis": fn_Gen ,"val": "1X"},{"Xaxis": fn_Gen*2 ,"val": "2X"},
+                          {"Xaxis": fn_Gen*3, "val": "3X"}, {"Xaxis": fn_Gen*4, "val": "4X"},
+                          {"Xaxis": fn_Gen*5, "val": "5X"}, {"Xaxis": fn_Gen*6, "val": "6X"}],
+                "B3P":_3P_1X,
+            }
+        # result = json.dumps(result, ensure_ascii=False)
+        return result
+
+
+    # frequency_domain_analysis
+
+    def _calculate_spectrum(self, data):
+        """计算频谱"""
+        m = data.shape[0]
+        n = 1
+        t = np.arange(m) / self.fs
+        mag = np.zeros((m, n))
+        Xrms = np.sqrt(np.mean(data**2))  # 加速度均方根值(有效值)
+        # col=1
+        # for p in range(col):
+        mag = np.abs(np.fft.fft(data - np.mean(data))) * 2 / m
+        f = np.fft.fftfreq(m, d=1 / self.fs)
+        return t, f, m, mag, Xrms
+
+    def frequency_domain(self):
+        """绘制频域波形参数"""
+        # 只取正频率部分
+        positive_frequencies = self.frequency_domain_analysis_f[
+            : self.frequency_domain_analysis_m // 2
+        ]
+        positive_mag = self.frequency_domain_analysis_mag[
+            : self.frequency_domain_analysis_m // 2
+        ]
+
+        x = positive_frequencies
+        y = positive_mag
+        title = "频域信号"
+        xaxis = "频率(Hz)"
+        yaxis = "加速度(m/s^2)"
+        Xrms = self.frequency_domain_analysis_Xrms
+
+        rpm_Gen = round(self.rpm_Gen, 2)
+        BPFI_1X = round(self.bearing_frequencies['BPFI'].iloc[0], 2)
+        BPFO_1X =  round(self.bearing_frequencies['BPFO'].iloc[0], 2)
+        BSF_1X =  round(self.bearing_frequencies['BSF'].iloc[0], 2)
+        FTF_1X = round(self.bearing_frequencies['FTF'].iloc[0], 2)
+        fn_Gen = round(self.fn_Gen, 2)
+        _3P_1X = round(self.fn_Gen, 2) * 3
+
+        if self.CF['type'].iloc[0] == 'bearing':
+            result = {
+                "fs":self.fs,
+                "Xrms":round(Xrms, 2),
+                "x":list(x),
+                "y":list(y),
+                "title":title,
+                "xaxis":xaxis,
+                "yaxis":yaxis,
+                "rpm_Gen": round(rpm_Gen, 2),  # 转速r/min
+                "BPFI":  [{"Xaxis": BPFI_1X ,"val": "1BPFI"},{"Xaxis": BPFI_1X*2 ,"val": "2BPFI"},
+                          {"Xaxis": BPFI_1X*3, "val": "3BPFI"}, {"Xaxis": BPFI_1X*4, "val": "4BPFI"},
+                          {"Xaxis": BPFI_1X*5, "val": "5BPFI"}, {"Xaxis": BPFI_1X*6, "val": "6BPFI"}],
+                "BPFO": [{"Xaxis": BPFO_1X ,"val": "1BPFO"},{"Xaxis": BPFO_1X*2 ,"val": "2BPFO"},
+                          {"Xaxis": BPFO_1X*3, "val": "3BPFO"}, {"Xaxis": BPFO_1X*4, "val": "4BPFO"},
+                          {"Xaxis": BPFO_1X*5, "val": "5BPFO"}, {"Xaxis": BPFO_1X*6, "val": "6BPFO"}],
+                "BSF": [{"Xaxis": BSF_1X ,"val": "1BSF"},{"Xaxis": BSF_1X*2 ,"val": "2BSF"},
+                          {"Xaxis": BSF_1X*3, "val": "3BSF"}, {"Xaxis": BSF_1X*4, "val": "4BSF"},
+                          {"Xaxis": BSF_1X*5, "val": "5BSF"}, {"Xaxis": BSF_1X*6, "val": "6BSF"}],
+                "FTF": [{"Xaxis": FTF_1X ,"val": "1FTF"},{"Xaxis": FTF_1X*2 ,"val": "2FTF"},
+                          {"Xaxis": FTF_1X*3, "val": "3FTF"}, {"Xaxis": FTF_1X*4, "val": "4FTF"},
+                          {"Xaxis": FTF_1X*5, "val": "5FTF"}, {"Xaxis": FTF_1X*6, "val": "6FTF"}],
+                "fn_Gen":[{"Xaxis": fn_Gen ,"val": "1X"},{"Xaxis": fn_Gen*2 ,"val": "2X"},
+                          {"Xaxis": fn_Gen*3, "val": "3X"}, {"Xaxis": fn_Gen*4, "val": "4X"},
+                          {"Xaxis": fn_Gen*5, "val": "5X"}, {"Xaxis": fn_Gen*6, "val": "6X"}],
+                "B3P":_3P_1X,
+            }
+        result = json.dumps(result, ensure_ascii=False)
+        return result
+
+    # time_domain_analysis
+    def time_domain(self):
+        """绘制时域波形参数"""        
+        x = self.time_domain_analysis_t
+        y = self.data
+        rpm_Gen =self.rpm_Gen
+        title = "时间域信号"
+        xaxis = "时间(s)"
+        yaxis = "加速度(m/s^2)"
+        # 图片右侧统计量
+        mean_value = np.mean(y)#平均值
+        max_value = np.max(y)#最大值
+        min_value = np.min(y)#最小值
+        Xrms = np.sqrt(np.mean(y**2))  # 加速度均方根值(有效值)
+        Xp = (max_value - min_value) / 2  # 峰值(单峰最大值) # 峰值
+        Xpp=max_value-min_value#峰峰值
+        Cf = Xp / Xrms  # 峰值指标
+        Sf = Xrms / mean_value  # 波形指标
+        If = Xp / np.mean(np.abs(y))  # 脉冲指标
+        Xr = np.mean(np.sqrt(np.abs(y))) ** 2  # 方根幅值
+        Ce = Xp / Xr  # 裕度指标
+        # 计算每个数据点的绝对值减去均值后的三次方,并求和
+        sum_abs_diff_cubed_3 = np.mean((np.abs(y) - mean_value) ** 3)
+        # 计算偏度指标
+        Cw = sum_abs_diff_cubed_3 / (Xrms**3)
+        # 计算每个数据点的绝对值减去均值后的四次方,并求和
+        sum_abs_diff_cubed_4 = np.mean((np.abs(y) - mean_value) ** 4)
+        # 计算峭度指标
+        Cq = sum_abs_diff_cubed_4 / (Xrms**4)
+        result = {
+                 
+            "x":list(x),
+            "y":list(y),
+            "title":title,
+            "xaxis":xaxis,
+            "yaxis":yaxis,
+            "fs":self.fs,
+            "Xrms":round(Xrms, 2),#有效值
+            "mean_value":round(mean_value, 2),# 均值 
+            "max_value":round(max_value, 2),# 最大值 
+            "min_value":round(min_value, 2),  # 最小值          
+            "Xp":round(Xp, 2),# 峰值
+            "Xpp":round(Xpp, 2),# 峰峰值
+            "Cf":round(Cf, 2),# 峰值指标
+            "Sf":round(Sf, 2),# 波形因子
+            "If":round(If, 2),# 脉冲指标
+            "Ce":round(Ce, 2),# 裕度指标
+            "Cw":round(Cw, 2) ,# 偏度指标
+            "Cq":round(Cq, 2) ,# 峭度指标
+            "rpm_Gen": round(rpm_Gen, 2),  # 转速r/min
+
+        }
+
+        result = json.dumps(result, ensure_ascii=False)
+
+        return result
+
+
+    # trend_analysis
+
+    def trend_analysis(self):
+
+        all_stats = []
+
+        # 定义积分函数
+        def _integrate(data, dt):
+            return np.cumsum(data) * dt
+
+        # 定义计算统计指标的函数
+        def _calculate_stats(data):
+            mean_value = np.mean(data)
+            max_value = np.max(data)
+            min_value = np.min(data)
+            Xrms = np.sqrt(np.mean(data**2))  # 加速度均方根值(有效值)
+            # Xrms = filtered_acceleration_rms  # 加速度均方根值(有效值)
+            Xp = (max_value - min_value) / 2  # 峰值(单峰最大值) # 峰值
+            Cf = Xp / Xrms  # 峰值指标
+            Sf = Xrms / mean_value  # 波形指标
+            If = Xp / np.mean(np.abs(data))  # 脉冲指标
+            Xr = np.mean(np.sqrt(np.abs(data))) ** 2  # 方根幅值
+            Ce = Xp / Xr  # 裕度指标
+
+            # 计算每个数据点的绝对值减去均值后的三次方,并求和
+            sum_abs_diff_cubed_3 = np.mean((np.abs(data) - mean_value) ** 3)
+            # 计算偏度指标
+            Cw = sum_abs_diff_cubed_3 / (Xrms**3)
+            # 计算每个数据点的绝对值减去均值后的四次方,并求和
+            sum_abs_diff_cubed_4 = np.mean((np.abs(data) - mean_value) ** 4)
+            # 计算峭度指标
+            Cq = sum_abs_diff_cubed_4 / (Xrms**4)
+            #
+
+            return {
+                "fs":self.fs,#采样频率
+                "Mean": round(mean_value, 2),#平均值
+                "Max": round(max_value, 2),#最大值
+                "Min": round(min_value, 2),#最小值
+                "Xrms": round(Xrms, 2),#有效值
+                "Xp": round(Xp, 2),#峰值
+                "If": round(If, 2), # 脉冲指标
+                "Cf": round(Cf, 2),#峰值指标
+                "Sf": round(Sf, 2),#波形指标
+                "Ce": round(Ce, 2),#裕度指标
+                "Cw": round(Cw, 2) ,#偏度指标
+                "Cq": round(Cq, 2),#峭度指标
+                #velocity_rms :速度有效值
+                #time_stamp:时间戳
+            }
+
+        for data in self.datas:
+            fs=int(self.data_filter['sampling_frequency'].iloc[0])
+            dt = 1 / fs
+            time_stamp=data['time_stamp'][0]
+            print(time_stamp)
+            data=np.array(ast.literal_eval(data['mesure_data'][0]))
+
+            velocity = _integrate(data, dt)
+            velocity_rms = np.sqrt(np.mean(velocity**2))
+            stats = _calculate_stats(data)
+            stats["velocity_rms"] = round(velocity_rms, 2)#速度有效值
+            stats["time_stamp"] = str(time_stamp)#时间戳
+
+            all_stats.append(stats)
+
+            # df = pd.DataFrame(all_stats)
+        all_stats = json.dumps(all_stats,  ensure_ascii=False)
+        return all_stats
+
+    def Characteristic_Frequency(self):
+        """提取轴承、齿轮等参数"""
+        # 1、从测点名称中提取部件名称(计算特征频率的部件)
+        str1 = self.mesure_point_name
+        str2 = ["main_bearing", "front_main_bearing", "rear_main_bearing", "generator_non_drive_end"]
+        for str in str2:
+            if str in str1:
+                parts = str
+                if parts == "front_main_bearing":
+                    parts = "front_bearing"
+                elif parts == "rear_main_bearing":
+                    parts = "rear_bearing"
+
+        print(parts)
+
+        # 2、连接233的数据库'energy_show',从表'wind_engine_group'查找风机编号'engine_code'对应的机型编号'mill_type_code'
+        engine_code = self.wind_code
+        Engine2 = create_engine('mysql+pymysql://admin:admin123456@192.168.50.233:3306/energy_show')
+        df_sql2 = f"SELECT * FROM {'wind_engine_group'} where engine_code = {'engine_code'} "
+        df2 = pd.read_sql(df_sql2, Engine2)
+        mill_type_code = df2['mill_type_code'].iloc[0]
+        print(mill_type_code)
+
+        # 3、从表'unit_bearings'中通过机型编号'mill_type_code'查找部件'brand'、'model'的参数信息
+        Engine3 = create_engine('mysql+pymysql://admin:admin123456@192.168.50.233:3306/energy_show')
+        df_sql3 = f"SELECT * FROM {'unit_bearings'} where mill_type_code = {'mill_type_code'} "
+        df3 = pd.read_sql(df_sql3, Engine3)
+        brand = 'front_bearing' + '_brand'  # parts代替'front_bearing'
+        model = 'front_bearing' + '_model'  # parts代替'front_bearing'
+        print(brand)
+        _brand = df3[brand].iloc[0]
+        _model = df3[model].iloc[0]
+        print(_brand)
+        print(_model)
+
+        # 4、从表'unit_dict_brand_model'中通过'_brand'、'_model'查找部件的参数信息
+        Engine4 = create_engine('mysql+pymysql://admin:admin123456@192.168.50.233:3306/energy_show')
+        df_sql4 = f"SELECT * FROM unit_dict_brand_model where manufacture = %s AND model_number = %s"
+        params = [(_brand, _model)]
+        df4 = pd.read_sql(df_sql4, Engine4, params=params)
+        if 'bearing' in parts:
+            n_rolls = df4['rolls_number'].iloc[0]
+            d_rolls = df4['rolls_diameter'].iloc[0]
+            D_diameter = df4['circle_diameter'].iloc[0]
+            theta_deg = df4['theta_deg'].iloc[0]
+            result = {
+                "type":'bearing',
+                "n_rolls":round(n_rolls, 2),
+                "d_rolls":round(d_rolls, 2),
+                "D_diameter":round(D_diameter, 2),
+                "theta_deg":round(theta_deg, 2),
+            }
+        # result = json.dumps(result, ensure_ascii=False)
+            return result
+
+    def calculate_bearing_frequencies(self, n, d, D, theta_deg, rpm):
+        """
+        计算轴承各部件特征频率
+
+        参数:
+        n (int): 滚动体数量
+        d (float): 滚动体直径(单位:mm)
+        D (float): 轴承节圆直径(滚动体中心圆直径,单位:mm)
+        theta_deg (float): 接触角(单位:度)
+        rpm (float): 转速(转/分钟)
+
+        返回:
+        dict: 包含各特征频率的字典(单位:Hz)
+        """
+        # 转换角度为弧度
+        theta = math.radians(theta_deg)
+
+        # 转换直径单位为米(保持单位一致性,实际计算中比值抵消单位影响)
+        # 注意:由于公式中使用的是比值,单位可以保持mm不需要转换
+        ratio = d / D
+
+        # 基础频率计算(转/秒)
+        f_r = rpm / 60.0
+
+        # 计算各特征频率
+        BPFI = n / 2 * (1 + ratio * math.cos(theta)) * f_r  # 内圈故障频率
+        BPFO = n / 2 * (1 - ratio * math.cos(theta)) * f_r  # 外圈故障频率
+        BSF = (D / (2 * d)) * (1 - (ratio ** 2) * (math.cos(theta) ** 2)) * f_r  # 滚动体故障频率
+        FTF = 0.5 * (1 - ratio * math.cos(theta)) * f_r  # 保持架故障频率
+
+        return {
+            "BPFI": round(BPFI, 2),
+            "BPFO": round(BPFO, 2),
+            "BSF": round(BSF, 2),
+            "FTF": round(FTF, 2),
+
+        }
+
+if __name__ == "__main__":
+    table_name = "SKF001_wave"
+    ids = [67803,67804]
+    fmin, fmax = None, None
+
+    cms = CMSAnalyst(fmin, fmax,table_name,ids)
+    time_domain = cms.time_domain()
+    # print(time_domain)
+
+'''
+    trace = go.Scatter(
+        x=time_domain['x'],
+        y=time_domain['y'],
+        mode="lines",
+        name=time_domain['title'],
+    )
+    layout = go.Layout(
+        title= time_domain['title'],
+        xaxis=dict(title=time_domain["xaxis"]),
+        yaxis=dict(title=time_domain["yaxis"]),
+    )
+    fig = go.Figure(data=[trace], layout=layout)
+    fig.show()
+'''
+
+    # data_path_lsit = ["test1.csv", "test2.csv"]
+    # trend_analysis_test = cms.trend_analysis(data_path_lsit, fmin, fmax)
+    # print(trend_analysis_test)

+ 196 - 0
connect mysql.py

@@ -0,0 +1,196 @@
+import numpy as np
+from scipy.signal import hilbert
+from scipy.fft import ifft
+import plotly.graph_objs as go
+import pandas as pd
+import pymysql
+from sqlalchemy import create_engine, text
+import math
+
+# 与志亮的数据库连接
+
+#1、定义从235数据库中通过“windcode”风场编号和'ids'id号来查找波形数据记录
+def _get_by_id(windcode, ids):
+    df_res = []
+    engine = create_engine('mysql+pymysql://root:admin123456@192.168.50.235:30306/energy_data_prod')
+    for id in ids:
+        table_name = windcode + '_wave'
+        lastday_df_sql = f"SELECT * FROM {table_name} where id = {id} "
+        # print(lastday_df_sql)
+        df = pd.read_sql(lastday_df_sql, engine)
+        df_res.append(df)
+    return df_res
+
+#2、找到波形记录提取特定的列值
+datas = _get_by_id('WOF091200030', [115041])
+datas = [df[['mesure_data','time_stamp','sampling_frequency', 'wind_turbine_number', 'rotational_speed', 'mesure_point_name']] for df in datas]
+data_filter = datas[0]
+rpm_Gen = data_filter['rotational_speed'].iloc[0]
+wind_code = data_filter['wind_turbine_number'].iloc[0]
+mesure_point_name = data_filter['mesure_point_name'].iloc[0]
+fs = int(data_filter['sampling_frequency'].iloc[0])
+print(wind_code)
+print(fs)
+print(rpm_Gen)
+
+#3、从测点名称中提取部件名称(计算特征频率的部件)
+str1 = mesure_point_name
+str2 = ["main_bearing", "front_main_bearing", "rear_main_bearing", "generator_non_drive_end"]
+for str in str2:
+    if str in str1:
+        parts = str
+        if parts == "front_main_bearing":
+            parts = "front_bearing"
+        elif parts == "rear_main_bearing":
+            parts = "rear_bearing"
+print(parts)
+
+#4、连接233的数据库'energy_show',从表'wind_engine_group'查找风机编号'engine_code'对应的机型编号'mill_type_code'
+engine_code = wind_code
+Engine2 = create_engine('mysql+pymysql://admin:admin123456@192.168.50.233:3306/energy_show')
+df_sql2 = f"SELECT * FROM {'wind_engine_group'} where engine_code = {'engine_code'} "
+df2 = pd.read_sql(df_sql2, Engine2)
+mill_type_code = df2['mill_type_code'].iloc[0]
+print(mill_type_code)
+
+#5、从表'unit_bearings'中通过机型编号'mill_type_code'查找部件'brand'、'model'的参数信息
+Engine3 = create_engine('mysql+pymysql://admin:admin123456@192.168.50.233:3306/energy_show')
+df_sql3 = f"SELECT * FROM {'unit_bearings'} where mill_type_code = {'mill_type_code'} "
+df3 = pd.read_sql(df_sql3, Engine3)
+brand = parts+'_brand'            # parts代替'front_bearing'
+model = parts +'_model'           # parts代替'front_bearing'
+print(brand)
+_brand = df3[brand].iloc[0]
+_model = df3[model].iloc[0]
+print(_brand)
+print(_model)
+
+#6、从表'unit_dict_brand_model'中通过'_brand'、'_model'查找部件的参数信息
+Engine4 = create_engine('mysql+pymysql://admin:admin123456@192.168.50.233:3306/energy_show')
+df_sql4 = f"SELECT * FROM unit_dict_brand_model where manufacture = %s AND model_number = %s"
+params = [(_brand,  _model)]
+df4 = pd.read_sql(df_sql4, Engine4, params=params)
+if 'bearing' in parts:
+    n_rolls = df4['rolls_number'].iloc[0]
+    d_rolls = df4['rolls_diameter'].iloc[0]
+    D_diameter = df4['circle_diameter'].iloc[0]
+    theta_deg = df4['theta_deg'].iloc[0]
+print(n_rolls)
+print(d_rolls)
+print(D_diameter)
+print(theta_deg)
+
+def calculate_bearing_frequencies(n, d, D, theta_deg, rpm):
+    """
+    计算轴承各部件特征频率
+
+    参数:
+    n (int): 滚动体数量
+    d (float): 滚动体直径(单位:mm)
+    D (float): 轴承节圆直径(滚动体中心圆直径,单位:mm)
+    theta_deg (float): 接触角(单位:度)
+    rpm (float): 转速(转/分钟)
+
+    返回:
+    dict: 包含各特征频率的字典(单位:Hz)
+    """
+    # 转换角度为弧度
+    theta = math.radians(theta_deg)
+
+    # 转换直径单位为米(保持单位一致性,实际计算中比值抵消单位影响)
+    # 注意:由于公式中使用的是比值,单位可以保持mm不需要转换
+    ratio = d / D
+
+    # 基础频率计算(转/秒)
+    f_r = rpm / 60.0
+
+    # 计算各特征频率
+    BPFI = n / 2 * (1 + ratio * math.cos(theta)) * f_r  # 内圈故障频率
+    BPFO = n / 2 * (1 - ratio * math.cos(theta)) * f_r  # 外圈故障频率
+    BSF = (D / (2 * d)) * (1 - (ratio ** 2) * (math.cos(theta) ** 2)) * f_r  # 滚动体故障频率
+    FTF = 0.5 * (1 - ratio * math.cos(theta)) * f_r  # 保持架故障频率
+
+    return {
+        "BPFI": BPFI,
+        "BPFO": BPFO,
+        "BSF": BSF,
+        "FTF": FTF
+    }
+
+
+# 示例使用(6208深沟球轴承参数)
+if __name__ == "__main__":
+    # 轴承参数
+    n = n_rolls  # 滚动体数量
+    d = d_rolls  # 滚动体直径(mm)
+    D = D_diameter  # 节圆直径(mm)
+    theta_deg = theta_deg  # 接触角(度)
+    rpm = rpm_Gen  # 转速
+
+    frequencies = calculate_bearing_frequencies(n, d, D, theta_deg, rpm)
+
+    print("轴承特征频率(Hz):")
+    print(f"内圈故障频率 (BPFI): {frequencies['BPFI']:.2f} Hz")
+    print(f"外圈故障频率 (BPFO): {frequencies['BPFO']:.2f} Hz")
+    print(f"滚动体故障频率 (BSF): {frequencies['BSF']:.2f} Hz")
+    print(f"保持架故障频率 (FTF): {frequencies['FTF']:.2f} Hz")
+"""
+# 建立数据库连接
+connection = pymysql.connect(
+    host='192.168.50.233',      # 数据库地址
+    user='admin',           # 用户名
+    password='admin123456',  # 密码
+    database='energy_show',  # 数据库名
+    port=3306,             # 端口号(默认3306)
+    charset='utf8mb4'      # 字符编码
+)
+try:
+    with connection.cursor() as cursor:
+        # 编写 SQL 查询
+        sql = "select\
+            ub.mill_type_code,\
+            ub.front_bearing_brand,\
+            ub.front_bearing_model,\
+            udbm.rolls_number,\
+            udbm.rolls_diameter,\
+            udbm.circle_diameter,\
+            udbm.theta_deg,\
+            rub.rear_bearing_brand,\
+            rub.rear_bearing_model,\
+            rub.rrollsNumber,\
+            rub.rrollsDiameter,\
+            rub.rcircleDiameter,\
+            rub.thetaDeg\
+            from\
+            unit_bearings ub\
+            inner join unit_dict_brand_model udbm\
+            on ub.front_bearing_brand= udbm.manufacture and ub.front_bearing_model= udbm.model_number\
+            inner join\
+            (select\
+            ub.mill_type_code,\
+            ub.rear_bearing_brand,\
+            ub.rear_bearing_model,\
+            udbm.rolls_number as rrollsNumber,\
+            udbm.rolls_diameter as rrollsDiameter,\
+            udbm.circle_diameter as rcircleDiameter,\
+            udbm.theta_deg as thetaDeg\
+            from\
+            unit_bearings ub\
+            inner join unit_dict_brand_model udbm\
+            on ub.rear_bearing_brand = udbm.manufacture and ub.rear_bearing_model= udbm.model_number\
+            where\
+            ub.mill_type_code = 'WEM00001') rub\
+            on ub.mill_type_code = rub.mill_type_code\
+            where\
+            ub.mill_type_code = 'WEM00001'"
+        cursor.execute(sql)  # 参数化查询防止 SQL 注入
+
+        # 读取数据
+        # result = cursor.fetchone()  # 获取单条数据
+        result = cursor.fetchall()  # 获取所有数据
+
+        print(result)
+
+finally:
+    connection.close()  # 关闭数据库连接
+"""

+ 3813 - 0
logs/api.log

@@ -0,0 +1,3813 @@
+nohup: ignoring input
+INFO:     Started server process [29226]
+INFO:     Waiting for application startup.
+INFO:     Application startup complete.
+INFO:     Uvicorn running on http://0.0.0.0:8888 (Press CTRL+C to quit)
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.235:59808 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.235:44620 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:16135 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:15766 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:17367 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:57496 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:16975 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:18378 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:23286 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:22607 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:22735 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:22991 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:22830 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:22702 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:23135 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:24079 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:58543 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:58547 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:24206 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:23983 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:27411 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:26986 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:28097 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:27825 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59162 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:27903 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59175 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59180 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59446 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59452 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59625 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30008 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59651 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30052 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59742 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30474 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59828 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30426 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59842 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30075 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30586 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30587 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30459 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59863 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:29702 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:29830 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30086 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59877 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30087 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30278 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59902 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59907 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59912 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59928 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59932 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59940 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59942 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30094 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30095 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59954 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30031 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30977 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:31360 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59986 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59990 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:30753 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:31009 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:59998 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60002 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:31917 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60404 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60462 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:32530 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60517 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60531 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:32526 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60588 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:32591 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     192.168.50.201:60728 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
+INFO:     192.168.50.201:33623 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
+INFO:     192.168.50.201:32982 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
+INFO:     192.168.50.201:60807 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:33782 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60826 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:33647 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60948 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:33519 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60958 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61023 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61024 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61026 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61032 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61057 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34305 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61067 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61070 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34641 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61152 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61153 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61170 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34513 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61172 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61194 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:33840 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61203 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34352 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61211 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61213 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61218 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34481 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61224 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:33904 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:33905 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     192.168.50.201:61371 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
+INFO:     192.168.50.201:61374 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
+INFO:     192.168.50.201:34537 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61407 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34280 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61412 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61422 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34328 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34329 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61437 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61442 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61446 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61462 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34457 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61551 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61553 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61577 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61591 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34565 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:33925 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61669 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61670 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61674 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61691 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34084 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61717 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34149 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61740 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61741 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34660 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61774 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61778 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61783 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61785 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:34069 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61792 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61796 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61799 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61802 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61808 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61858 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:33983 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:62037 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     192.168.50.201:62719 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     192.168.50.201:36799 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     192.168.50.201:36350 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:37136 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:62769 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:62822 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:62829 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:37705 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:62838 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:62842 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:37365 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:37388 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:62924 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:37357 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:62948 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:62949 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:62956 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:37276 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:37500 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:62995 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63000 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63009 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63042 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:36967 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:37014 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63053 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63089 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63090 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:37888 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:38409 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63127 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:38793 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63139 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:38856 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63147 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:37971 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:38226 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63226 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63228 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:38186 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:38470 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:38167 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:38839 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:38646 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:38902 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:38351 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:37934 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63333 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:38110 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:39152 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63410 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:39720 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63436 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:39016 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:39868 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:39420 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63513 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63542 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:39882 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:39258 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63556 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:39226 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63562 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63564 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63571 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:40439 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:63999 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     192.168.50.201:64017 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:41801 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:41160 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:41416 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64028 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:41000 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64046 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64047 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:41832 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:41833 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:41193 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64057 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64081 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64082 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64083 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64084 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64088 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:41156 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64107 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:41061 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64150 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64156 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64167 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64182 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     192.168.50.201:41612 - "POST /analysis/spectrum HTTP/1.1" 422 Unprocessable Entity
+INFO:     192.168.50.201:64203 - "POST /analysis/spectrum HTTP/1.1" 422 Unprocessable Entity
+INFO:     192.168.50.201:41292 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64217 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64230 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64231 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+INFO:     192.168.50.201:64251 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64331 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64335 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64337 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64343 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64376 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64379 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64384 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:41778 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64410 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64413 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64452 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64453 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64474 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64476 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64481 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64484 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64528 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:41306 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:41946 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:41530 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64564 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64569 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64591 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64596 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:41083 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:41595 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64616 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:41722 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64637 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64639 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64654 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64655 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:41150 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64660 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64662 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64666 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64668 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:41854 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64674 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42752 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42112 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42369 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42032 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64690 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64765 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64776 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42245 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42884 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64933 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64938 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65224 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65227 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42547 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42290 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42954 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65312 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65313 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42154 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65440 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65464 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65466 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65468 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65492 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65495 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42662 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65519 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65521 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:65532 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42263 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42807 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49189 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49194 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49225 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49227 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42383 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49238 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49243 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42062 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49248 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49251 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49254 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42319 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49260 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42190 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49266 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42799 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42670 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49283 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49285 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:42926 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49293 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49754 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49757 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49819 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49825 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43177 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49834 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49842 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49844 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49848 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49872 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43524 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49879 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49883 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49885 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49889 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49891 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43716 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43701 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43387 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49946 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49947 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49948 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43898 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43014 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43270 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43142 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49963 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43143 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43398 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43399 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43078 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43335 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43206 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43046 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49987 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49991 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49993 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49996 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:49998 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43047 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43302 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43430 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:43622 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50157 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50161 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:46333 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50165 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50176 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50177 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50178 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50180 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50184 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50186 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50190 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50192 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50196 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:46459 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50257 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:47447 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:47158 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:47670 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50334 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50337 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50339 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:47222 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:47630 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50348 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:47710 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51445 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:50676 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:53460 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:53918 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:54306 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:54934 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:54647 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51137 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51141 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51144 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:55481 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51205 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51210 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:55908 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:55316 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51218 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51222 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:55700 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:55381 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:55348 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51246 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51276 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:55467 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51284 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:56171 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51325 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:55606 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:55926 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     192.168.50.201:55374 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51412 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:56794 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:57836 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:51496 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     192.168.50.201:51530 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60609 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60704 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60432 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61088 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60832 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:61408 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:60444 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64241 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:8487 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64328 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:9532 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:64693 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.201:54460 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:33475 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:6210 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:20087 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:38663 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:43394 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:43435 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:48213 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:28053 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59699 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59714 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59718 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59741 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59757 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59760 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59764 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59767 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59774 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59788 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59792 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59794 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59830 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59857 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59861 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59864 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59866 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59870 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59872 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59876 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59996 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:59999 - "POST /analysis/time HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:60018 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:60020 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:60045 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:60389 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:60394 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:60400 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     123.112.168.40:60449 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:60517 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61093 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61097 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61102 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61181 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61200 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61219 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61285 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61310 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61325 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61348 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     123.112.168.40:61364 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     123.112.168.40:61369 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61372 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61418 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61484 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61519 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61545 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61755 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61757 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61851 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:62045 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:62168 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:62204 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:62311 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:62346 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:62590 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:62672 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:62759 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:62984 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:62991 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:62996 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63020 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63027 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63039 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63047 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63149 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63154 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63163 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63267 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63272 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63299 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63472 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63477 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     123.112.168.40:63481 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63488 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63518 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63517 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63523 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63524 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63540 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63541 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63574 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63576 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63774 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63776 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63779 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63787 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63837 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63861 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63865 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63881 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63901 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63919 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63923 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63929 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64008 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64009 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64010 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64116 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64121 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64124 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64129 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64132 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64137 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64140 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64145 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64148 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64153 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64220 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64223 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64231 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64234 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64240 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64243 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64247 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64249 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64254 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64411 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64413 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64415 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64420 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64423 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64429 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64432 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64437 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64440 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64444 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64447 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64454 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64457 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64465 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64498 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64503 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64505 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64512 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64616 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64621 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64623 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64629 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64634 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:64643 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65135 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65139 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65148 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65151 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65184 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65186 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65193 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65194 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65195 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65197 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65236 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65238 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65241 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65246 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65311 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65316 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65321 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65403 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65410 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65431 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65488 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49159 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49165 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49223 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49226 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49319 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49323 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49350 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49814 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49866 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     123.112.168.40:49869 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49875 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49879 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49884 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49886 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49891 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49933 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49938 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49941 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49946 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49950 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49956 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:50079 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:50082 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:50087 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:50106 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:50137 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:50142 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:50148 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:50152 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:50157 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:50162 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     123.112.168.40:50218 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:48421 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:9339 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:11435 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:7407 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:11507 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:9818 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:55380 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:42629 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:4501 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:44571 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:35921 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:12189 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:23296 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:47671 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:28594 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.206:11689 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:35367 - "GET /analysis/time HTTP/1.1" 405 Method Not Allowed
+INFO:     111.203.200.206:18517 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:40636 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:18522 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:51118 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:21081 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:18523 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:9341 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:8321 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:34469 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:31439 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:19569 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:51469 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:53705 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:32219 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:44177 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:29240 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:41259 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:35022 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:32162 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:20983 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:6023 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:4070 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:1791 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:27429 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:19640 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:9013 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:3454 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:44573 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:17920 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:9780 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:36893 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:32194 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:38206 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:53757 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:19607 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.206:38206 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:29574 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:39315 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:21394 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:12216 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:21730 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:4535 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:34006 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:44554 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:8961 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:18500 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:38645 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:25360 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:31868 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:12664 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:11436 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:50245 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:39339 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:50253 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:38930 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:55540 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:6503 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:38940 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:55236 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:20078 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:20081 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:20088 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:1738 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:35010 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:4872 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:20986 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:53391 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:53428 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:25866 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:4510 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:14074 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:9895 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:51050 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:43437 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:7228 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.206:29345 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.206:45356 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:33171 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:1632 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:46550 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:23738 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:39128 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:16721 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:32253 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:5141 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:51714 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:31857 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:8885 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:21111 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:2346 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:21699 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:33214 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:11254 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:51809 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:45970 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:19560 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:31603 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:26227 - "POST /analysis/trend HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:21095 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:2344 - "POST /analysis/frequency HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:42008 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:11585 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:44917 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:29589 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:25981 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:50114 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:45311 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:21423 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:21300 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:1625 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:14020 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:44567 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:44606 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:19611 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:36977 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:19633 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:54697 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:55525 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:34022 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:42830 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:14131 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:34836 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:3332 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:11439 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:53720 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:53740 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:45343 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:16280 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:44218 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:12066 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:49290 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:6835 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:13559 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:6269 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:7171 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:25935 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:50152 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:21437 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:50380 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:17248 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:19912 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:3085 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:7778 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:31981 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:2341 - "POST /analysis/trend HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     80.66.83.114:48586 - "CONNECT hotmail-com.olc.protection.outlook.com%3A25 HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     80.66.83.114:33448 - "CONNECT hotmail-com.olc.protection.outlook.com%3A25 HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     80.66.83.114:55548 - "CONNECT 85.206.160.115%3A80 HTTP/1.1" 404 Not Found
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:13159 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:42873 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:8986 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:41207 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:9794 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:47106 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:30364 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:41216 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:41223 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:41231 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:41237 - "POST /analysis/frequency HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+INFO:     223.113.128.215:55224 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49880 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49881 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49882 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49920 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49936 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:49937 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63331 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63333 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     123.112.168.40:63340 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63342 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63346 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63348 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63352 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63354 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63358 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63360 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63364 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63366 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63370 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:63372 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65283 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65289 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:65466 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     123.112.168.40:61087 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:16754 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:28087 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:20084 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:5784 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:3368 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:34038 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:40578 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:30158 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:36894 - "POST /analysis/trend HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:22450 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:15637 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:30192 - "POST /analysis/trend HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:50628 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:10196 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:50659 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:55312 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:16012 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:11201 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:11207 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:44197 - "POST /analysis/time HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+INFO:     52.81.60.5:52302 - "GET / HTTP/1.1" 404 Not Found
+INFO:     52.81.60.5:52314 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     52.81.60.5:52326 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     52.81.60.5:52338 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:18905 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:50385 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:35237 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:33494 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:44908 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:1763 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:35959 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:29348 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:28602 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:36965 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:47367 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:47402 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:20079 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:47651 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:20093 - "POST /analysis/envelope HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.157.47:35424 - "POST /token HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     123.125.21.156:34316 - "GET / HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:34330 - "GET / HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:34332 - "GET /never_could_exists HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:60668 - "GET /adminer/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:60672 - "GET /arcgis/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:60682 - "GET /axis2/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:60684 - "GET /axis/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:53396 - "GET /druid/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:46462 - "GET /uis/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:46470 - "GET /imc/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:46484 - "GET /manager/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:46496 - "GET /minio/login HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:46500 - "GET /nacos/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:46510 - "GET /phpmyadmin/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:46520 - "GET /pma/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:58270 - "GET /swagger-ui.html HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:58284 - "GET /swagger/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:58288 - "GET /api/docs/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:58292 - "GET /console/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:58294 - "GET /webroot/decision/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:58298 - "GET /harbor/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:58310 - "GET /xxl-job/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:58314 - "GET /xxl-job-admin/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:37058 - "GET /xxl/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:37066 - "GET /wui/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:37076 - "GET /smartbi/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:49724 - "GET /webroot/decision/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:49738 - "GET /xxl-job/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:59420 - "GET /xxl-job-admin/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:59436 - "GET /xxl/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:39960 - "GET /admin/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:39962 - "GET /login/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:39974 - "GET /mail/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:39466 - "GET /client/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:39468 - "GET /blog/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:39472 - "GET /old/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:32842 - "GET /email/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:32848 - "GET /office/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:32860 - "GET /oa/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:32862 - "GET /crm/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:32864 - "GET /stack/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:32876 - "GET /dashboard/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:40424 - "GET /cms/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:40430 - "GET /news/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:40440 - "GET /user/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:40454 - "GET /member/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:53868 - "GET /forum/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:53880 - "GET /mobile/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:53886 - "GET /app/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:53898 - "GET /home/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:50586 - "GET /cas/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:50598 - "GET /portal/ HTTP/1.1" 404 Not Found
+INFO:     123.125.21.156:50604 - "GET /sys/ HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     123.160.223.75:22350 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     192.168.50.201:52519 - "GET / HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:52519 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:52774 - "GET /analysis/time HTTP/1.1" 405 Method Not Allowed
+INFO:     192.168.50.201:62189 - "GET /analysis/time/endTime%3A%20%222024-07-02%2000%3A00%3A00%22%2C%20mesureNameList%3A%20%5B%22gearbox_input_end_radial_vibration%22%5D%2C%20startTime%3A%20%222024-07-01%2000%3A00%3A00%22%2C%20windCode%3A%20%22SKF001%22%2C%20windTurbineNumberList%3A%20%5B%22F004%22%5D%2C HTTP/1.1" 404 Not Found
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:12086 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     192.168.50.201:62763 - "GET /analysis/time?id=237 HTTP/1.1" 405 Method Not Allowed
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:42737 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     192.168.50.201:54764 - "GET /analysis/time HTTP/1.1" 405 Method Not Allowed
+INFO:     192.168.50.201:56162 - "GET / HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:56810 - "POST / HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:52154 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:52154 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:52167 - "POST /waveData/getMesureData/ HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:52167 - "POST /waveData/getMesureData/ HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:52167 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:52175 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:58037 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
+INFO:     111.203.200.206:53398 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:63344 - "POST / HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:58453 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:63418 - "GET /waveData/getMesureData HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     223.113.128.164:36260 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     52.80.13.3:47604 - "GET / HTTP/1.1" 404 Not Found
+INFO:     52.80.13.3:47610 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     52.80.13.3:47618 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     52.80.13.3:47616 - "GET /robots.txt HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.157.47:56180 - "POST /token HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:55344 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     192.168.50.235:60090 - "GET /analysis/time HTTP/1.0" 405 Method Not Allowed
+INFO:     192.168.50.235:60092 - "GET /analysis/time HTTP/1.0" 405 Method Not Allowed
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.235:60214 - "POST /analysis/time HTTP/1.0" 200 OK
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     152.32.234.97:59780 - "GET / HTTP/1.1" 404 Not Found
+INFO:     152.32.234.97:44042 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     152.32.234.97:44054 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     152.32.234.97:44070 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     123.160.223.74:18517 - "GET / HTTP/1.1" 404 Not Found
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:49323 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:3338 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:15824 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:15846 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:41994 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:55201 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:55215 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:50269 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:49286 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:49294 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:24308 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:31400 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:49317 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:32031 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:31416 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:49330 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:28801 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:33523 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:42965 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:19058 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:23317 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:43878 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:43900 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:20335 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:32186 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:32841 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:23731 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:22861 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:14082 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:1614 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:21360 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:3449 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:20810 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:46449 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:3452 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:16727 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:44213 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:34842 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:9025 - "POST /analysis/envelope HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:4094 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:51460 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:51060 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:51113 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:42953 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:39330 - "POST /analysis/frequency HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     111.203.200.206:14666 - "POST /analysis/trend HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:14697 - "POST /analysis/envelope HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     80.66.83.114:59414 - "CONNECT hotmail-com.olc.protection.outlook.com%3A25 HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     80.66.83.114:36274 - "CONNECT hotmail-com.olc.protection.outlook.com%3A25 HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     80.66.83.114:36734 - "CONNECT 85.206.160.115%3A80 HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     101.36.106.135:44882 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.65.166:50916 - "GET / HTTP/1.1" 404 Not Found
+INFO:     106.75.65.166:50928 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     106.75.65.166:50934 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     106.75.65.166:50932 - "GET /robots.txt HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     106.75.190.150:48444 - "POST /token HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:10058 - "POST /analysis/time HTTP/1.1" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     111.203.200.206:32849 - "POST /analysis/frequency HTTP/1.1" 200 OK
+WARNING:  Invalid HTTP request received.
+INFO:     87.236.176.43:43253 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     87.236.176.184:38871 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     101.36.97.187:60348 - "GET / HTTP/1.1" 404 Not Found
+INFO:     101.36.97.187:36562 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     101.36.97.187:36570 - "GET /robots.txt HTTP/1.1" 404 Not Found
+INFO:     101.36.97.187:36586 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
+INFO:     113.141.85.182:47958 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     185.247.137.60:46887 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     192.168.50.201:54782 - "GET /home/performance/assetssMag?id=195 HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:52580 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:52245 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:4451 - "GET /login HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     192.168.50.201:56055 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:56058 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:56521 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:65374 - "GET /home/cockpitManage HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:65374 - "GET /favicon.ico HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:64869 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:3643 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:3643 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:64874 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:3303 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:64900 - "GET / HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:65088 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:5111 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:5111 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:65113 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:65113 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:65120 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:65122 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:65122 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:5716 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:5716 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:65157 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:9291 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:65347 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:65347 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:65427 - "GET /login HTTP/1.1" 404 Not Found
+INFO:     192.168.50.201:10507 - "GET /login HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+INFO:     87.236.176.170:54439 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     185.247.137.218:56495 - "GET / HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     80.66.83.114:40114 - "CONNECT hotmail-com.olc.protection.outlook.com%3A25 HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     80.66.83.114:45622 - "CONNECT hotmail-com.olc.protection.outlook.com%3A25 HTTP/1.1" 404 Not Found
+WARNING:  Invalid HTTP request received.
+WARNING:  Invalid HTTP request received.
+INFO:     80.66.83.114:58112 - "CONNECT 85.206.160.115%3A80 HTTP/1.1" 404 Not Found
+INFO:     111.203.200.198:25880 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:37690 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.198:41393 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:45347 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:50957 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:30823 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.198:42127 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:14868 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:8639 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:19267 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.198:41006 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:35682 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:38506 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:25898 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.198:13691 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.198:32525 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:40221 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:23427 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:54099 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.198:5032 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.198:37463 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.198:37498 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.198:22746 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:22695 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.198:17841 - "POST /analysis/time HTTP/1.1" 200 OK
+INFO:     111.203.200.198:2680 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.198:21944 - "POST /analysis/frequency HTTP/1.1" 200 OK
+INFO:     111.203.200.198:22136 - "POST /analysis/envelope HTTP/1.1" 200 OK
+INFO:     111.203.200.198:11194 - "POST /analysis/trend HTTP/1.1" 200 OK
+INFO:     192.168.50.201:15975 - "GET /analysis/time HTTP/1.1" 405 Method Not Allowed
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.235:51038 - "POST /analysis/time HTTP/1.0" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.235:51062 - "POST /analysis/frequency HTTP/1.0" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+/data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+2024-07-01 00:00:14
+2024-07-01 00:00:27
+2024-07-01 02:00:12
+2024-07-01 02:00:24
+2024-07-01 07:14:15
+2024-07-01 07:14:28
+2024-07-01 08:01:29
+2024-07-01 08:03:27
+2024-07-01 10:48:04
+2024-07-01 10:48:16
+2024-07-01 12:00:24
+2024-07-01 12:01:40
+2024-07-01 14:00:04
+2024-07-01 14:01:06
+2024-07-01 14:59:38
+2024-07-01 15:31:49
+2024-07-01 16:02:33
+2024-07-01 16:05:14
+2024-07-01 18:47:32
+2024-07-01 18:47:45
+2024-07-01 20:00:10
+2024-07-01 20:01:11
+2024-07-01 22:03:33
+2024-07-01 22:04:59
+INFO:     192.168.50.235:51066 - "POST /analysis/trend HTTP/1.0" 200 OK
+/data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
+  self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
+INFO:     192.168.50.235:51070 - "POST /analysis/envelope HTTP/1.0" 200 OK

+ 15 - 0
test.py

@@ -0,0 +1,15 @@
+import numpy as np
+from scipy.signal import hilbert
+from scipy.fft import ifft
+import plotly.graph_objs as go
+import pandas as pd
+
+fs = 8
+_1X = 3
+
+result = {
+        "fs":fs,
+         "Fr":{"Yaxis":[_1X, _1X*2, _1X*3], "_6X":["1X", "2X", "3X"]}
+        }
+
+print(result)

Alguns arquivos não foram mostrados porque muitos arquivos mudaram nesse diff