logdetective 2.12.0__tar.gz → 2.13.0__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-2.12.0 → logdetective-2.13.0}/PKG-INFO +2 -2
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/database/base.py +1 -1
- {logdetective-2.12.0 → logdetective-2.13.0}/pyproject.toml +2 -1
- {logdetective-2.12.0 → logdetective-2.13.0}/LICENSE +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/README.md +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/__init__.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/constants.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/drain3.ini +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/extractors.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/logdetective.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/models.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/prompts-summary-first.yml +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/prompts-summary-only.yml +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/prompts.yml +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/remote_log.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/__init__.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/compressors.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/config.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/database/__init__.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/database/models/__init__.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/database/models/exceptions.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/database/models/koji.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/database/models/merge_request_jobs.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/database/models/metrics.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/emoji.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/exceptions.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/gitlab.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/koji.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/llm.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/metric.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/models.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/plot.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/server.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/templates/base_response.html.j2 +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/templates/gitlab_full_comment.md.j2 +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/templates/gitlab_short_comment.md.j2 +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/utils.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/skip_snippets.yml +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective/utils.py +0 -0
- {logdetective-2.12.0 → logdetective-2.13.0}/logdetective.1.asciidoc +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: logdetective
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.13.0
|
|
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
|
License-File: LICENSE
|
|
@@ -24,7 +24,7 @@ Provides-Extra: server
|
|
|
24
24
|
Provides-Extra: server-testing
|
|
25
25
|
Provides-Extra: testing
|
|
26
26
|
Requires-Dist: aiohttp (>=3.7.4,<4.0.0)
|
|
27
|
-
Requires-Dist: aiolimiter (>=1.0.0,<2.0.0) ; extra == "server"
|
|
27
|
+
Requires-Dist: aiolimiter (>=1.0.0,<2.0.0) ; extra == "server" or extra == "server-testing"
|
|
28
28
|
Requires-Dist: aioresponses (>=0.7.8,<0.8.0) ; extra == "testing"
|
|
29
29
|
Requires-Dist: alembic (>=1.13.3,<2.0.0) ; extra == "server" or extra == "server-testing"
|
|
30
30
|
Requires-Dist: asciidoc[testing] (>=10.2.1,<11.0.0) ; extra == "testing"
|
|
@@ -22,7 +22,7 @@ sqlalchemy_echo = getenv("SQLALCHEMY_ECHO", "False").lower() in (
|
|
|
22
22
|
"y",
|
|
23
23
|
"1",
|
|
24
24
|
)
|
|
25
|
-
engine = create_async_engine(get_pg_url(), echo=sqlalchemy_echo)
|
|
25
|
+
engine = create_async_engine(get_pg_url(), echo=sqlalchemy_echo, pool_pre_ping=True)
|
|
26
26
|
SessionFactory = async_sessionmaker(autoflush=True, bind=engine) # pylint: disable=invalid-name
|
|
27
27
|
|
|
28
28
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "logdetective"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.13.0"
|
|
4
4
|
description = "Log using LLM AI to search for build/test failures and provide ideas for fixing these."
|
|
5
5
|
authors = ["Jiri Podivin <jpodivin@gmail.com>"]
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -81,6 +81,7 @@ server-testing = [
|
|
|
81
81
|
"alembic",
|
|
82
82
|
"matplotlib",
|
|
83
83
|
"backoff",
|
|
84
|
+
"aiolimiter",
|
|
84
85
|
"sentry-sdk",
|
|
85
86
|
"openai",
|
|
86
87
|
"koji",
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/database/models/exceptions.py
RENAMED
|
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
|
|
File without changes
|
{logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/templates/base_response.html.j2
RENAMED
|
File without changes
|
{logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/templates/gitlab_full_comment.md.j2
RENAMED
|
File without changes
|
{logdetective-2.12.0 → logdetective-2.13.0}/logdetective/server/templates/gitlab_short_comment.md.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|