logdetective 0.5.0__tar.gz → 0.5.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {logdetective-0.5.0 → logdetective-0.5.2}/PKG-INFO +7 -1
- {logdetective-0.5.0 → logdetective-0.5.2}/README.md +6 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/server/server.py +1 -1
- {logdetective-0.5.0 → logdetective-0.5.2}/pyproject.toml +1 -1
- {logdetective-0.5.0 → logdetective-0.5.2}/LICENSE +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/__init__.py +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/constants.py +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/drain3.ini +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/extractors.py +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/logdetective.py +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/server/__init__.py +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/server/database/__init__.py +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/server/database/base.py +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/server/database/models.py +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/server/metric.py +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/server/models.py +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/server/templates/gitlab_comment.md.j2 +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/server/utils.py +0 -0
- {logdetective-0.5.0 → logdetective-0.5.2}/logdetective/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: logdetective
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: Log using LLM AI to search for build/test failures and provide ideas for fixing these.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Author: Jiri Podivin
|
|
@@ -325,6 +325,12 @@ Fore some reason, we need to manually run this command after every reboot:
|
|
|
325
325
|
nvidia-ctk cdi generate --output=/etc/cdi/nvidia.yaml
|
|
326
326
|
```
|
|
327
327
|
|
|
328
|
+
HTTPS certificate generated through:
|
|
329
|
+
|
|
330
|
+
```
|
|
331
|
+
certbot certonly --standalone -d logdetective01.fedorainfracloud.org
|
|
332
|
+
```
|
|
333
|
+
|
|
328
334
|
|
|
329
335
|
License
|
|
330
336
|
-------
|
|
@@ -288,6 +288,12 @@ Fore some reason, we need to manually run this command after every reboot:
|
|
|
288
288
|
nvidia-ctk cdi generate --output=/etc/cdi/nvidia.yaml
|
|
289
289
|
```
|
|
290
290
|
|
|
291
|
+
HTTPS certificate generated through:
|
|
292
|
+
|
|
293
|
+
```
|
|
294
|
+
certbot certonly --standalone -d logdetective01.fedorainfracloud.org
|
|
295
|
+
```
|
|
296
|
+
|
|
291
297
|
|
|
292
298
|
License
|
|
293
299
|
-------
|
|
@@ -48,7 +48,7 @@ SERVER_CONFIG_PATH = os.environ.get("LOGDETECTIVE_SERVER_CONF", None)
|
|
|
48
48
|
|
|
49
49
|
SERVER_CONFIG = load_server_config(SERVER_CONFIG_PATH)
|
|
50
50
|
|
|
51
|
-
MR_REGEX = re.compile(r"refs/merge-requests/(\d+)
|
|
51
|
+
MR_REGEX = re.compile(r"refs/merge-requests/(\d+)/.*$")
|
|
52
52
|
FAILURE_LOG_REGEX = re.compile(r"(\w*\.log)")
|
|
53
53
|
|
|
54
54
|
LOG = get_log(SERVER_CONFIG)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{logdetective-0.5.0 → logdetective-0.5.2}/logdetective/server/templates/gitlab_comment.md.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|